* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Quicksand', sans-serif;
  background-color: #f5f5f5;
  color: #333;
}

.hero {
  background: url('https://images.unsplash.com/photo-1526401485004-efecff6a500d?auto=format&fit=crop&w=1500&q=80') no-repeat center center/cover;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  background: rgba(0, 0, 0, 0.5);
  padding: 40px;
  border-radius: 16px;
  text-align: center;
  color: #fff;
  max-width: 500px;
}

.icon {
  width: 60px;
  margin-bottom: 20px;
}

.content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.content p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.btn {
  background-color: #ffd700;
  color: #000;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s ease;
}

.btn:hover {
  background-color: #fff;
  color: #333;
}

footer {
  background-color: #222;
  color: #fff;
  padding: 15px 0;
  text-align: center;
  font-size: 0.9rem;
}
