*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial,sans-serif;
    line-height:1.7;
    color:#222;
    background:#f8fafc;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* Navbar */

.navbar{
    background:#fff;
    border-bottom:1px solid #e5e7eb;
    padding:18px 0;
}

.navbar .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    text-decoration:none;
    font-size:22px;
    font-weight:700;
    color:#111;
}

.nav-links{
    display:flex;
    gap:20px;
}

.nav-links a{
    text-decoration:none;
    color:#444;
    font-weight:500;
}

.nav-links a:hover{
    color:#2563eb;
}

/* Hero */

.hero{
    background:#fff;
    text-align:center;
    padding:80px 20px;
}

.hero h1{
    font-size:48px;
    margin-bottom:20px;
}

.hero p{
    max-width:800px;
    margin:auto;
    color:#666;
}

.last-updated{
    margin-top:25px;
    display:inline-block;
    background:#eff6ff;
    color:#2563eb;
    padding:10px 18px;
    border-radius:999px;
    font-weight:600;
}

/* Terms */

.terms-section{
    padding:80px 0;
}

.terms-card{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.terms-item{
    margin-bottom:40px;
}

.terms-item:last-child{
    margin-bottom:0;
}

.terms-item h2{
    margin-bottom:12px;
    font-size:24px;
    color:#111827;
}

.terms-item p{
    color:#555;
}

/* Footer */

.footer{
    background:#111827;
    color:#fff;
    padding:60px 0 20px;
}

.footer-content{
    width:90%;
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.footer a{
    display:block;
    color:#d1d5db;
    text-decoration:none;
    margin-top:8px;
}

.footer a:hover{
    color:#fff;
}

.footer-bottom{
    text-align:center;
    margin-top:40px;
    padding-top:20px;
    border-top:1px solid #374151;
    color:#9ca3af;
}

/* Mobile */

@media(max-width:768px){

    .nav-links{
        display:none;
    }

    .hero{
        padding:60px 20px;
    }

    .hero h1{
        font-size:34px;
    }

    .terms-card{
        padding:25px;
    }

    .terms-item h2{
        font-size:22px;
    }

    .footer-content{
        grid-template-columns:1fr;
    }

}
.about-section,
.mission-section,
.why-section,
.stats-section,
.cta-section{
    padding:80px 0;
}

.about-card,
.mission-card,
.feature-card,
.stat-card{
    background:#fff;
    border-radius:20px;
    padding:30px;
    box-shadow:0 5px 20px rgba(0,0,0,.05);
}

.about-card h2{
    margin-bottom:20px;
}

.about-card p{
    margin-bottom:16px;
    color:#555;
}

.mission-grid,
.features-grid,
.stats-grid{
    display:grid;
    gap:25px;
}

.mission-grid{
    grid-template-columns:repeat(3,1fr);
}

.features-grid{
    grid-template-columns:repeat(3,1fr);
}

.stats-grid{
    grid-template-columns:repeat(4,1fr);
}

.section-title{
    text-align:center;
    margin-bottom:40px;
    font-size:36px;
}

.feature-card h3,
.mission-card h3{
    margin-bottom:12px;
}

.feature-card p,
.mission-card p,
.stat-card p{
    color:#555;
}

.stat-card{
    text-align:center;
}

.stat-card h3{
    font-size:36px;
    margin-bottom:10px;
    color:#2563eb;
}

.cta-section{
    text-align:center;
    background:#fff;
}

.cta-section h2{
    font-size:40px;
    margin-bottom:20px;
}

.cta-section p{
    color:#666;
    margin-bottom:30px;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.btn{
    display:inline-block;
    padding:14px 28px;
    border-radius:10px;
    text-decoration:none;
    font-weight:600;
}

.btn-primary{
    background:#2563eb;
    color:#fff;
}

.btn-secondary{
    background:#16a34a;
    color:#fff;
}

@media(max-width:768px){

    .mission-grid,
    .features-grid,
    .stats-grid{
        grid-template-columns:1fr;
    }

    .section-title{
        font-size:30px;
    }

    .cta-section h2{
        font-size:30px;
    }
}