/* TERMS PAGE */

/* --- 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;
}
.terms {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    text-align: left;
}

.terms h1 {
    font-size: 2rem;
    color: #004466;
    margin-bottom: 20px;
    text-align: center;
}

.terms h2 {
    font-size: 1.4rem;
    color: #004466;
    margin-top: 20px;
    margin-bottom: 10px;
    position: relative;
}

.terms h2::after {
    content: "";
    display: block;
    width: 64px;
    height: 4px;
    background: #ffcc00;
    border-radius: 3px;
    margin-top: 6px;
}

.terms p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 12px;
    color: #222;
}

.terms a {
    color: #004466;
    text-decoration: underline;
    transition: 0.3s;
}

.terms a:hover {
    color: #ffcc00;
}
/* --- 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; }
}