body {
  margin:0;
  font-family: 'Segoe UI', sans-serif;
  background:#f5f7fa;
  color:#222;
}

.container {
  width:90%;
  max-width:1100px;
  margin:auto;
}

header {
  position:fixed;
  width:100%;
  background:rgba(0,0,0,0.8);
  color:white;
  padding:15px 0;
  z-index:1000;
}

.nav {
  display:flex;
  justify-content:space-between;
  align-items:center;
}

nav a {
  color:white;
  margin-left:20px;
  text-decoration:none;
}

.hero {
  height:100vh;
  background:url('hero.jpg') center/cover no-repeat;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}

.overlay {
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.6);
}

.hero-content {
  position:relative;
  color:white;
  max-width:700px;
}

.hero h1 {
  font-size:48px;
}

.btn {
  display:inline-block;
  margin-top:20px;
  padding:12px 25px;
  background:#d4af37;
  color:black;
  text-decoration:none;
}

.section {
  padding:80px 0;
}

.grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:20px;
}

.card {
  background:white;
  padding:30px;
  border-radius:8px;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.about-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
}

.about img {
  width:100%;
  border-radius:8px;
}

.cta {
  background:#1a2a44;
  color:white;
  text-align:center;
  padding:60px;
}

footer {
  text-align:center;
  padding:20px;
  background:#111;
  color:#ccc;
}