/* --- GLOBAL STYLES --- */
body {
    font-family: 'Inter', sans-serif;
    color: #222;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background: #fff;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
}

h1 { font-weight: 700; font-size: 2rem; margin-bottom: 10px; }
h2 { font-weight: 600; font-size: 1.4rem; margin-bottom: 8px; }
p { margin-bottom: 16px; font-size: 0.95rem; }

/* --- NAVIGATION --- */
.main-nav {
    width: 100%;
    padding: 15px 20px;
    display: flex;
    justify-content: center;
    background: none;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 50px;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    text-decoration: none;
    color: #004466;
    font-weight: 600;
    transition: 0.3s;
}

.nav-links li a:hover {
    color: #ffcc00;
}

/* Ensure nav stays the same on mobile (no hamburger) */
@media (max-width: 768px) {
    .nav-links { gap: 25px; flex-wrap: wrap; justify-content: center; }
}

/* --- PAGE HEADER --- */
.page-header {
    text-align: center;
    padding: 60px 20px 40px 20px;
    background: linear-gradient(135deg, #004466 0%, #006699 100%);
    color: #fff;
    margin-left: 30px;
    margin-right: 30px;
    border-radius: 12px;
}

.page-header h1 {
    font-size: 2.2rem;
}

.page-header p {
    font-size: 1rem;
    max-width: 650px;
    margin: 12px auto 0 auto;
}

/* --- PRIVACY CONTENT --- */
.privacy-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: left;
}

.privacy-content h2 {
    color: #004466;
    margin-top: 24px;
    position: relative;
}

.privacy-content h2::after {
    content: "";
    display: block;
    width: 64px;
    height: 4px;
    background: #ffcc00;
    border-radius: 3px;
    margin-top: 6px;
}

.privacy-content a {
    color: #004466;
    text-decoration: underline;
}

/* --- READY TO EXPLORE CTA --- */
.ready-cta {
    text-align: center;
    background: #f5f8fa;
    padding: 50px 20px;
    margin: 50px 0;
    border-radius: 12px;
}

.ready-cta h2 {
    font-size: 1.8rem;
    color: #004466;
    margin-bottom: 15px;
}

.ready-cta p {
    margin-bottom: 25px;
    font-size: 1rem;
}

.ready-cta .cta-button {
    background: linear-gradient(90deg, #004466, #ffcc00);
    color: #fff;
    padding: 14px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,68,102,0.2);
}

.ready-cta .cta-button:hover {
    background: linear-gradient(90deg, #00334d, #e6b800);
    box-shadow: 0 8px 20px rgba(0,68,102,0.3);
}

/* --- FOOTER --- */
.site-footer {
    background-color: #004466;
    color: #fff;
    text-align: center;
    padding: 25px 20px;
    margin-top: 50px;
    border-radius: 12px 12px 0 0;
    font-size: 0.95rem;
}

.site-footer .footer-links {
    margin-bottom: 12px;
}

.site-footer .footer-links a {
    color: #ffcc00;
    margin: 0 12px;
    text-decoration: none;
    transition: 0.3s;
}

.site-footer .footer-links a:hover {
    color: #e6b800;
    text-decoration: underline;
}

.site-footer p { margin: 4px 0; }

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .page-header h1 { font-size: 1.8rem; }
    .ready-cta h2 { font-size: 1.5rem; }
    .privacy-content { padding: 30px 15px; }
}
/* Prevent horizontal scroll */
html, body {
    overflow-x: hidden;
    width: 100%;
    box-sizing: border-box;
}

*, *::before, *::after {
    box-sizing: inherit;
}

