

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

body{
    font-family:'Inter',sans-serif;
    background:#f4f7fb;
    color:#1e293b;
}

header{
    background:linear-gradient(135deg,#0f172a,#1e3a8a);
    padding:45px 20px 100px 20px;
    text-align:center;
}

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

.top-nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:50px;
    flex-wrap:wrap;
    gap:20px;
}

.logo img{
    width:160px;
    max-width:100%;
}

.nav-links{
    display:flex;
    gap:25px;
    flex-wrap:wrap;
}

.nav-links a{
    color:#dbeafe;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.nav-links a:hover{
    color:white;
}

.hero{
    max-width:900px;
    margin:auto;
}

.hero h1{
    font-size:64px;
    line-height:1.1;
    color:white;
    margin-bottom:25px;
    font-weight:800;
}

.hero p{
    font-size:24px;
    color:#dbeafe;
    line-height:1.7;
}

.hero-buttons{
    margin-top:45px;
}

.main-btn{
    background:white;
    color:#1e3a8a;
    padding:18px 36px;
    border-radius:16px;
    text-decoration:none;
    font-weight:700;
    display:inline-block;
    transition:0.3s;
    box-shadow:0 10px 25px rgba(0,0,0,0.18);
}

.main-btn:hover{
    transform:translateY(-4px);
}

.section{
    margin-top:90px;
}

.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;
}

.card{
    background:white;
    border-radius:28px;
    padding:45px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
    text-align:center;
    transition:0.3s;
}

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

.card img{
    width:220px;
    height:220px;
    object-fit:contain;
    margin-bottom:30px;
}

.card h2{
    font-size:36px;
    margin-bottom:20px;
    color:#0f172a;
}

.card p{
    font-size:18px;
    line-height:1.8;
    color:#475569;
}

.info-box{
    margin-top:60px;
    background:#eff6ff;
    border-left:5px solid #2563eb;
    border-right:5px solid #2563eb;
    padding:35px;
    border-radius:20px;
    text-align:center;
}

.info-box h3{
    font-size:30px;
    margin-bottom:18px;
}

.info-box p{
    line-height:1.8;
    color:#334155;
}

.formbox{
    background:white;
    border-radius:28px;
    padding:50px;
    margin-top:80px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.formbox h2{
    margin-bottom:35px;
    font-size:42px;
}

input,
textarea{
    width:100%;
    padding:18px;
    margin-bottom:22px;
    border:1px solid #cbd5e1;
    border-radius:14px;
    font-size:16px;
    font-family:'Inter',sans-serif;
}

textarea{
    min-height:180px;
}

button{
    width:100%;
    padding:20px;
    border:none;
    border-radius:14px;
    background:linear-gradient(135deg,#10b981,#059669);
    color:white;
    font-size:18px;
    font-weight:700;
    cursor:pointer;
    transition:0.3s;
}

button:hover{
    transform:translateY(-3px);
}

.notice{
    margin-top:20px;
    color:#64748b;
    font-size:14px;
    line-height:1.6;
}

footer{
    margin-top:90px;
    background:#111827;
    color:white;
    padding:60px 20px;
}

.footer-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:35px;
}

footer h3{
    margin-bottom:15px;
}

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

footer p{
    color:#cbd5e1;
    line-height:1.8;
}

@media(max-width:768px){

    .top-nav{
        flex-direction:column;
        text-align:center;
    }

    .nav-links{
        justify-content:center;
    }

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

    .hero p{
        font-size:18px;
    }

    .card{
        padding:30px;
    }

    .card h2{
        font-size:30px;
    }

    .formbox{
        padding:30px;
    }

}
