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

body{

background:#080808;

color:#ffffff;

font-family:Arial,Helvetica,sans-serif;

line-height:1.7;

}

.hero{

text-align:center;

padding:90px 20px;

background:linear-gradient(180deg,#151515,#080808);

}

.logo{

width:180px;

margin-bottom:30px;

}

h1{

font-size:58px;

color:#d4af37;

letter-spacing:2px;

}

.tagline{

margin-top:15px;

font-size:22px;

color:#dddddd;

font-weight:300;

}

.subtitle{

margin:35px auto;

max-width:800px;

font-size:20px;

color:#a8a8a8;

}

.buttons{

display:flex;

justify-content:center;

gap:18px;

flex-wrap:wrap;

margin-top:45px;

}

.buttons a{

background:#d4af37;

color:#111111;

padding:16px 34px;

text-decoration:none;

border-radius:10px;

font-weight:bold;

transition:.3s;

}

.buttons a:hover{

background:white;

transform:translateY(-3px);

}

section{

max-width:1100px;

margin:auto;

padding:70px 20px;

}

.card{

background:#141414;

border:1px solid #2b2b2b;

border-radius:18px;

padding:35px;

margin-bottom:30px;

box-shadow:0 0 25px rgba(212,175,55,.08);

}

.card h2{

color:#d4af37;

margin-bottom:20px;

font-size:30px;

}

.card p{

color:#d0d0d0;

font-size:18px;

}

.contract{

margin-top:25px;

font-weight:bold;

font-size:17px;

word-break:break-all;

color:#f5d76b;

}

footer{

text-align:center;

padding:50px;

color:#8c8c8c;

border-top:1px solid #222;

margin-top:60px;

}

@media(max-width:768px){

.logo{

width:140px;

}

h1{

font-size:40px;

}

.tagline{

font-size:18px;

}

.subtitle{

font-size:17px;

}

.buttons{

flex-direction:column;

}

.buttons a{

width:100%;

}

.card{

padding:25px;

}

}
