* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Switzer', sans-serif;
    color: #0a0a1f;
    background: #ffffff;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 60px;
}

/* Navbar */
.navbar {
    background: #ffffff;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 32px;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0;
}

.nav-menu a {
    color: #0a0a1f;
    text-decoration: none;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #7BF0BB;
}

.btn-book {
    background: #7BF0BB;
    color: #0a0a1f;
    border: none;
    width: 130px;
    height: 38px;
    padding: 12px;
    gap: 10px;
    border-radius: 0;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    cursor: pointer;
    transition: background 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    text-decoration: none;
}

.btn-book:hover {
    background: #6ad9a8;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: #0a0a1f;
    transition: 0.3s;
}

/* Privacy Policy Section */
.privacy-policy {
    background: #ffffff;
    padding: 140px 0 100px;
    min-height: 100vh;
}

.privacy-policy h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.05em;
    color: #0a0a1f;
    margin-bottom: 16px;
}

.effective-date {
    font-family: 'Switzer', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
    color: #647287;
    margin-bottom: 60px;
}

.privacy-policy h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 500;
    line-height: 120%;
    letter-spacing: -0.03em;
    color: #0a0a1f;
    margin-top: 40px;
    margin-bottom: 16px;
}

.privacy-policy p {
    font-family: 'Switzer', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 160%;
    color: #3C3C3C;
    margin-bottom: 16px;
}

.privacy-policy ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.privacy-policy li {
    font-family: 'Switzer', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 160%;
    color: #3C3C3C;
    margin-bottom: 12px;
}

.privacy-policy strong {
    font-weight: 600;
    color: #0a0a1f;
}

.privacy-policy a {
    color: #7BF0BB;
    text-decoration: none;
    transition: color 0.3s;
}

.privacy-policy a:hover {
    color: #6ad9a8;
}

/* Footer */
.footer {
    background: #010027;
    color: #ffffff;
    padding: 60px 0 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo-img {
    height: 40px;
    width: auto;
    margin-bottom: 16px;
}

.footer-brand h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 24px;
}

.footer-copyright {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 24px;
}

.footer-copyright a {
    color: #F8FAFC;
    text-decoration: none;
}

.footer-copyright a:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: opacity 0.3s;
    position: relative;
}

.social-icon:hover {
    opacity: 0.8;
}

.social-icon-img {
    width: 24px;
    height: 23.85px;
    object-fit: contain;
}

.footer-links {
    display: flex;
    gap: 80px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #7BF0BB;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #7BF0BB;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 40px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .container {
        padding: 0 24px;
    }

    .privacy-policy {
        padding: 120px 0 80px;
    }

    .privacy-policy h1 {
        font-size: 36px;
    }

    .privacy-policy h2 {
        font-size: 24px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 600px) {
    .privacy-policy h1 {
        font-size: 32px;
    }

    .privacy-policy h2 {
        font-size: 20px;
    }

    .privacy-policy p,
    .privacy-policy li {
        font-size: 14px;
    }
}
