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

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

header{
    min-height:100vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:40px;
    background:linear-gradient(to bottom,#000,#06152b);
}

.logo{
    width:300px;
    max-width:90%;
    margin-bottom:25px;
}

h1{
    color:#d4af37;
    font-size:3rem;
    margin-bottom:20px;
}

h2{
    color:#d4af37;
    text-align:center;
    margin-bottom:30px;
}

header p{
    max-width:700px;
    font-size:1.2rem;
    margin-bottom:30px;
}

.btn{
    background:#d4af37;
    color:#000;
    text-decoration:none;
    padding:15px 35px;
    border-radius:8px;
    font-weight:bold;
}

.btn:hover{
    opacity:.9;
}

section{
    padding:80px 20px;
}

.cards{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:25px;
}

.card{
    background:#0a1931;
    padding:30px;
    width:300px;
    border:1px solid #d4af37;
    border-radius:12px;
}

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

form{
    max-width:700px;
    margin:auto;
    display:flex;
    flex-direction:column;
    gap:15px;
}

input,
textarea{
    padding:15px;
    border:none;
    border-radius:8px;
}

textarea{
    min-height:150px;
}

button{
    background:#d4af37;
    color:#000;
    border:none;
    padding:15px;
    font-weight:bold;
    border-radius:8px;
    cursor:pointer;
}

footer{
    text-align:center;
    padding:40px;
    background:#06152b;
}
