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

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

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

header {
  background: #d97706;
  color: white;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

header nav a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
  font-weight: 500;
}

header nav a:hover {
  text-decoration: underline;
}

.hero {
  position: relative;
  height: 80vh;
  background: url('https://images.unsplash.com/photo-1549887534-5b0c6c42f9a6') no-repeat center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.hero .overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.4);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.btn {
  display: inline-block;
  background: #d97706;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  margin-top: 1rem;
  text-decoration: none;
  transition: background 0.3s;
}

.btn:hover {
  background: #b45309;
}

.section {
  padding: 4rem 0;
}

.bg-light {
  background: #f9f9f9;
}

h3 {
  color: #d97706;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

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

.card {
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.grid-gallery {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.grid-gallery img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 15px;
  transition: transform 0.3s;
}

.grid-gallery img:hover {
  transform: scale(1.05);
}

footer {
  background: #d97706;
  color: white;
  text-align: center;
  padding: 1rem 0;
  margin-top: 2rem;
}
