*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins', sans-serif;
}

body{
    background:#0b0f1a;
    color:white;
    line-height:1.6;
}

header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 10%;
    background:#000;
}

header h1{
    color:#D4AF37;
    font-size:20px;
}

nav a{
    color:white;
    text-decoration:none;
    margin-left:25px;
    font-weight:500;
}

nav a:hover{
    color:#D4AF37;
}

section{
    padding:80px 10%;
}

.hero{
    height:80vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    background:linear-gradient(to right,#0b0f1a,#111a2e);
}

.hero h2{
    font-size:42px;
}

.hero span{
    color:#D4AF37;
}

.btn{
    margin-top:25px;
    padding:12px 30px;
    background:#D4AF37;
    color:black;
    text-decoration:none;
    font-weight:600;
    border-radius:30px;
}

.section-title{
    text-align:center;
    margin-bottom:40px;
    color:#D4AF37;
}

.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.card{
    background:#111a2e;
    padding:30px;
    border-radius:10px;
}

.card h3{
    margin-bottom:15px;
    color:#D4AF37;
}

form input, form textarea{
    width:100%;
    padding:12px;
    margin-bottom:15px;
    border:none;
    border-radius:5px;
}

form button{
    padding:12px 25px;
    background:#D4AF37;
    border:none;
    font-weight:600;
    cursor:pointer;
}

footer{
    text-align:center;
    padding:25px;
    background:black;
    opacity:0.6;
}