body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #fff5f7;
    color: #333;
}

header {
    background: #ffffff;
    padding: 20px 40px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #2f6f4e;
}

nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #444;
    font-weight: 500;
}

nav a:hover {
    color: #ff6b81;
}

.container {
    max-width: 900px;
    margin: 40px auto;
    background: white;
    padding: 40px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

h1 {
    color: #2f6f4e;
    margin-bottom: 15px;
}

footer {
    text-align: center;
    padding: 30px;
    color: #777;
    font-size: 13px;
}