* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #f5f5f5;
  color: #222;
}

/* HEADER */
.header {
  background: #222;
  color: white;
  text-align: center;
  padding: 25px 15px;
}

.header p {
  margin-top: 5px;
  font-size: 14px;
}

/* HERO */
.hero {
  background: #ff9800;
  text-align: center;
  padding: 40px 20px;
}

.hero h2 {
  font-size: 26px;
}

.hero p {
  margin: 10px 0 20px;
}

.btn {
  background: #222;
  color: white;
  padding: 12px 22px;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
}

/* SECTIONS */
.section {
  background: white;
  margin: 15px;
  padding: 25px;
  border-radius: 8px;
}

.section h2 {
  margin-bottom: 15px;
}

.section ul li {
  margin-bottom: 8px;
}

.light {
  background: #ffffff;
}

/* FOOTER */
.footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 12px;
  font-size: 14px;
}

/* IMAGE GALLERY */
.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.image-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.image-grid img:hover {
  transform: scale(1.05);
}




