*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#f8fafc;
    color:#333;
}

/* Navbar */

.navbar{

    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 8%;
    background:#fff;
    box-shadow:0 3px 12px rgba(0,0,0,.08);

}

.logo{

    text-decoration:none;
    font-size:32px;
    font-weight:700;
    color:#111827;

}

.logo span{

    color:#2563eb;

}

.navbar ul{

    display:flex;
    list-style:none;
    gap:30px;

}

.navbar ul li a{

    text-decoration:none;
    color:#333;
    font-weight:500;
    transition:.3s;

}

.navbar ul li a:hover{

    color:#2563eb;

}

/* Hero */

.hero{

    background:linear-gradient(135deg,#2563eb,#1d4ed8);
    color:white;
    text-align:center;
    padding:90px 10%;

}

.hero h1{

    font-size:48px;
    margin-bottom:20px;

}

.hero p{

    max-width:750px;
    margin:auto;
    line-height:1.8;

}

/* Partner Cards */

.partners{

    padding:80px 8%;
    text-align:center;

}

.partners h2{

    margin-bottom:50px;
    color:#1e3a8a;

}

.cards{

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;

}

.card{

    background:white;
    padding:35px;
    border-radius:15px;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.3s;

}

.card:hover{

    transform:translateY(-8px);

}

.card h3{

    margin-bottom:15px;
    color:#2563eb;

}

/* Benefits */

.benefits{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    padding:80px 8%;

}

.left h2,
.right h2{

    margin-bottom:25px;
    color:#1e3a8a;

}

.left ul{

    list-style:none;

}

.left li{

    background:white;
    padding:16px;
    margin-bottom:15px;
    border-radius:10px;
    box-shadow:0 5px 20px rgba(0,0,0,.05);

}

/* Form */

.right{

    background:white;
    padding:40px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);

}

.right form{

    display:flex;
    flex-direction:column;

}

.right input,
.right select,
.right textarea{

    margin-bottom:18px;
    padding:15px;
    border:1px solid #ddd;
    border-radius:8px;
    font-size:15px;

}

.right button{

    background:#2563eb;
    color:white;
    border:none;
    padding:15px;
    border-radius:8px;
    cursor:pointer;
    font-size:16px;
    font-weight:600;
    transition:.3s;

}

.right button:hover{

    background:#1d4ed8;

}

/* Footer */

footer{

    background:#111827;
    color:white;
    text-align:center;
    padding:25px;
    margin-top:60px;

}

/* Responsive */

@media(max-width:900px){

.benefits{

grid-template-columns:1fr;

}

.hero h1{

font-size:36px;

}

.navbar{

flex-direction:column;
gap:20px;

}

.navbar ul{

flex-wrap:wrap;
justify-content:center;

}

}