*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#0f172a;
    color:#ffffff;
    line-height:1.6;
}

.container{
    width:90%;
    max-width:1100px;
    margin:auto;
}

.hero{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    background:linear-gradient(135deg,#0f172a,#1e3a8a,#2563eb);
    padding:40px 20px;
}

.hero h1{
    font-size:64px;
    letter-spacing:3px;
    margin-bottom:20px;
}

.subtitle{
    font-size:22px;
    color:#dbeafe;
    margin-bottom:35px;
}

.btn{
    display:inline-block;
    text-decoration:none;
    background:#3b82f6;
    color:#fff;
    padding:15px 40px;
    border-radius:10px;
    font-size:18px;
    font-weight:bold;
    transition:.3s;
}

.btn:hover{
    background:#2563eb;
    transform:translateY(-3px);
}

section{
    padding:80px 0;
}

h2{
    text-align:center;
    margin-bottom:40px;
    font-size:36px;
}

form{
    max-width:700px;
    margin:auto;
    background:#1e293b;
    padding:35px;
    border-radius:15px;
}

input,
textarea{
    width:100%;
    padding:16px;
    margin-bottom:20px;
    border:none;
    border-radius:8px;
    font-size:16px;
}

textarea{
    resize:vertical;
}

button{
    width:100%;
    background:#2563eb;
    color:#fff;
    border:none;
    padding:18px;
    border-radius:8px;
    cursor:pointer;
    font-size:18px;
    font-weight:bold;
    transition:.3s;
}

button:hover{
    background:#1d4ed8;
}

.contact-details{
    background:#111827;
}

.contact-details p{
    text-align:center;
    margin-bottom:20px;
    font-size:18px;
}

.faq{
    background:#0f172a;
}

.faq-item{
    background:#1e293b;
    margin-bottom:20px;
    padding:25px;
    border-radius:10px;
}

.faq-item h3{
    margin-bottom:10px;
    color:#60a5fa;
}

footer{
    background:#020617;
    text-align:center;
    padding:35px 20px;
    color:#94a3b8;
}

footer p{
    margin:8px 0;
}

@media(max-width:768px){

.hero h1{
    font-size:42px;
}

.subtitle{
    font-size:18px;
}

h2{
    font-size:28px;
}

form{
    padding:25px;
}

}