/* ===========================
   RESET
=========================== */

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    color:#222;
    background:#f5f7fb;
    line-height:1.6;
}

/* ===========================
   CONTAINER
=========================== */

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* ===========================
   HERO
=========================== */

.hero{
    background:linear-gradient(135deg,#114b8b,#1b74d1);
    color:#fff;
    text-align:center;
    padding:90px 20px;
}

.hero h1{
    font-size:48px;
    margin-bottom:20px;
    font-weight:700;
}

.subtitle{
    font-size:22px;
    max-width:750px;
    margin:0 auto 35px;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

/* ===========================
   BUTTONS
=========================== */

.btn{
    display:inline-block;
    background:#ff9800;
    color:#fff;
    padding:15px 35px;
    text-decoration:none;
    border:none;
    border-radius:8px;
    cursor:pointer;
    font-size:17px;
    transition:.3s;
    font-weight:600;
}

.btn:hover{
    background:#f57c00;
    transform:translateY(-2px);
}

.btn-outline{
    background:transparent;
    border:2px solid #fff;
}

.btn-outline:hover{
    background:#fff;
    color:#114b8b;
}

/* ===========================
   STATS
=========================== */

.stats{
    background:#fff;
    padding:50px 0;
}

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.stat{
    background:#f7f9fc;
    border-radius:12px;
    padding:30px;
    text-align:center;
}

.stat h2{
    color:#1565c0;
    font-size:34px;
    margin-bottom:10px;
}

/* ===========================
   SECTIONS
=========================== */

section{
    padding:80px 0;
}

section h2{
    text-align:center;
    margin-bottom:40px;
    font-size:34px;
    color:#1b3f6b;
}

/* ===========================
   CARDS
=========================== */

.cards{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.card{
    background:#fff;
    border-radius:12px;
    padding:35px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.card:hover{
    transform:translateY(-5px);
}

.card h3{
    margin-bottom:15px;
    color:#1565c0;
}

/* ===========================
   ABOUT
=========================== */

.about{
    background:#eef4fb;
}

.check-list{
    max-width:700px;
    margin:auto;
    list-style:none;
}

.check-list li{
    background:#fff;
    margin-bottom:15px;
    padding:18px 20px;
    border-left:5px solid #1565c0;
    border-radius:8px;
}

/* ===========================
   FORM
=========================== */

.form-section{
    background:#fff;
}

form{
    max-width:700px;
    margin:auto;
}

input,
select,
textarea{
    width:100%;
    padding:15px;
    margin-bottom:20px;
    border:1px solid #d0d7e2;
    border-radius:8px;
    font-size:16px;
    outline:none;
    transition:.3s;
    background:#fff;
}

input:focus,
select:focus,
textarea:focus{
    border-color:#1565c0;
    box-shadow:0 0 0 3px rgba(21,101,192,.12);
}

textarea{
    resize:vertical;
}

button{
    width:100%;
}

.privacy{
    text-align:center;
    margin-top:20px;
    font-size:14px;
    color:#666;
}

.privacy a{
    color:#1565c0;
    text-decoration:none;
}

.privacy a:hover{
    text-decoration:underline;
}

/* ===========================
   ALERTS
=========================== */

.success{
    background:#dff5df;
    color:#1b5e20;
    border:1px solid #9ad49a;
    padding:18px;
    border-radius:8px;
    margin-bottom:25px;
}

.error{
    background:#ffe4e4;
    color:#b71c1c;
    border:1px solid #ef9a9a;
    padding:18px;
    border-radius:8px;
    margin-bottom:25px;
}

/* ===========================
   FAQ
=========================== */

.faq{
    background:#eef4fb;
}

.faq-item{
    background:#fff;
    margin-bottom:20px;
    padding:25px;
    border-radius:10px;
    box-shadow:0 4px 15px rgba(0,0,0,.06);
}

.faq-item h3{
    color:#1565c0;
    margin-bottom:10px;
}

/* ===========================
   FOOTER
=========================== */

footer{
    background:#102b4a;
    color:#fff;
    padding:40px 0;
    text-align:center;
}

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

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

footer p{
    margin:10px 0;
}

/* ===========================
   RESPONSIVE
=========================== */

@media(max-width:992px){

    .stats-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .cards{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .hero{
        padding:70px 20px;
    }

    .hero h1{
        font-size:34px;
    }

    .subtitle{
        font-size:18px;
    }

    section{
        padding:60px 0;
    }

    section h2{
        font-size:28px;
    }

    .stats-grid{
        grid-template-columns:1fr;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .btn{
        width:100%;
    }

}
