*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial,sans-serif;
}

body{
  background:#fff8f0;
  color:#333;
  line-height:1.6;
}

.container{
  width:90%;
  max-width:1100px;
  margin:auto;
}

header{
  background:#b22222;
  color:white;
  padding:20px 0;
}

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

nav a{
  color:white;
  text-decoration:none;
  margin-left:20px;
  font-weight:bold;
}

.hero{
  height:450px;
  background:url('https://images.unsplash.com/photo-1604908176997-125f25cc6f3d?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
}

.overlay{
  background:rgba(0,0,0,0.5);
  padding:40px;
  border-radius:12px;
  color:white;
}

.hero h2{
  font-size:52px;
}

.hero p{
  margin-top:10px;
  font-size:20px;
}

.hero button{
  margin-top:20px;
  padding:12px 28px;
  border:none;
  background:#ff9800;
  color:white;
  border-radius:6px;
  cursor:pointer;
  font-size:16px;
}

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

.card{
  background:white;
  padding:25px;
  border-radius:12px;
  box-shadow:0 4px 10px rgba(0,0,0,0.1);
}

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

.card a{
  display:inline-block;
  margin-top:15px;
  color:#b22222;
  text-decoration:none;
  font-weight:bold;
}

.page{
  padding:60px 0;
}

.page h2{
  margin-bottom:20px;
  color:#b22222;
}

.page p{
  margin-bottom:15px;
}

footer{
  background:#222;
  color:white;
  text-align:center;
  padding:20px;
  margin-top:40px;
}

@media(max-width:768px){
  .nav{
    flex-direction:column;
    gap:15px;
  }

  .hero h2{
    font-size:34px;
  }
}
