:root{
  --bg:#0b0e14;
  --text:#f2f2f2;
  --muted:#b7b7b7;
  --gold:#c8a86a;
  --radius:18px;
  --max:1100px;
}

*{box-sizing:border-box}

body{
  margin:0;
  font-family: Arial, Helvetica, sans-serif;
  background:linear-gradient(180deg,#05070c,#0b0e14);
  color:var(--text);
}

a{color:var(--gold); text-decoration:none}

.container{
  max-width:var(--max);
  margin:auto;
  padding:20px;
}

header{
  border-bottom:1px solid #222;
  background:#0b0e14;
}

.header-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.logo{
  display:flex;
  align-items:center;
  gap:10px;
}

.logo img{
  width:36px;
  height:36px;
}

nav a{
  margin-left:15px;
  font-weight:bold;
}

.hero{
  display:grid;
  grid-template-columns:1.2fr 0.8fr;
  gap:20px;
  margin-top:30px;
  background:#111522;
  padding:30px;
  border-radius:var(--radius);
}

.hero img{
  width:100%;
  border-radius:14px;
}

h1{font-size:36px;margin-top:0}
h2{margin-top:40px}

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

.card{
  background:#14192a;
  padding:20px;
  border-radius:16px;
}

.button{
  display:inline-block;
  padding:14px 20px;
  border-radius:14px;
  background:var(--gold);
  color:#000;
  font-weight:bold;
  margin-top:10px;
}

form input, form textarea{
  width:100%;
  padding:12px;
  border-radius:10px;
  border:none;
  margin-bottom:12px;
}

footer{
  margin-top:60px;
  border-top:1px solid #222;
  padding:20px;
  font-size:14px;
  color:var(--muted);
}

@media(max-width:900px){
  .hero{grid-template-columns:1fr}
}