* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.8;
    color: #333;
    background: linear-gradient(135deg, #eef3eb 0%, #e5ebe2 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
main { flex: 1; }

nav {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 999;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    font-size: 1.5em;
    color: #2c5f4f;
    font-weight: 300;
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: #2c5f4f;
    text-decoration: none;
    font-size: 1em;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #7a9485;
}

.nav-links .book-now-nav {
    background: #2c5f4f;
    color: white;
    padding: 8px 20px;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.nav-links .book-now-nav:hover {
    background: #234538;
    color: white;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5em;
    color: #2c5f4f;
    cursor: pointer;
}

.container {
    max-width: 860px;
    margin: 0 auto;
    padding: 40px 20px;
}

h1 {
    font-size: 2.5em;
    color: #2c5f4f;
    margin-bottom: 10px;
    font-weight: 300;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: #3d6454;
    font-size: 0.9em;
    margin-bottom: 40px;
}

.policy-box {
    background: white;
    padding: 50px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.policy-box h2 {
    font-size: 1.4em;
    color: #2c5f4f;
    font-weight: 400;
    margin: 36px 0 12px;
    text-align: left;
}

.policy-box h2:first-child {
    margin-top: 0;
}

.policy-box p {
    color: #555;
    font-size: 1.05em;
    margin-bottom: 14px;
}

.policy-box ul {
    margin-left: 24px;
    color: #555;
    font-size: 1.05em;
    margin-bottom: 14px;
}

.policy-box li {
    margin-bottom: 8px;
}

.policy-box a {
    color: #2c5f4f;
    text-decoration: underline;
}

.policy-box a:hover {
    text-decoration: underline;
}

.highlight-box {
    background: #f0f8f5;
    border-left: 4px solid #2c5f4f;
    border-radius: 6px;
    padding: 16px 20px;
    margin: 20px 0;
}

.highlight-box p {
    margin: 0;
    color: #2c5f4f;
    font-size: 1em;
}

footer {
    text-align: center;
    padding: 40px 20px 20px;
    color: #3d6454;
    font-size: 0.9em;
    line-height: 1.6;
}

footer a {
    color: #3d6454;
    text-decoration: none;
}

footer a:visited {
    color: #3d6454;
}

footer a:hover {
    text-decoration: underline;
}

@media (max-width: 900px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        gap: 15px;
    }

    .nav-links.active {
        display: flex;
    }

    .policy-box {
        padding: 30px 22px;
    }

    h1 {
        font-size: 2em;
    }
}
