/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f9fbfd;
  color: #0a1d37;
  line-height: 1.6;
  padding: 2rem;
}

/* Container */
.container {
  max-width: 1000px;
  margin: 0 auto;
}

/* Page Heading */
h1 {
  font-size: 2.5rem;
  color: #041e42;
  margin-bottom: 1rem;
  text-align: center;
}

/* Pest Image */
.pest-image {
  display: block;
  max-width: 300px;
  margin: 0 auto 2rem;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

/* Section Titles (🚨 🛡️ 🤝) */
.section-titles {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
  text-align: center;
}

.section-title {
  flex: 1;
  font-size: 1.2rem;
  padding: 0.75rem;
  border-radius: 8px;
  color: white;
}

.section-title.red {
  background-color: #d43f3f;
}

.section-title.gold {
  background-color: #ffc107;
  color: #0a1d37;
}

.section-title.green {
  background-color: #28a745;
}

/* Growth Grid 3x2 */
.growth-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.growth-box {
  background-color: #fff;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.growth-box:hover {
  transform: translateY(-5px);
}

.growth-box h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #041e42;
}

.growth-box p {
  font-size: 0.9rem;
  color: #333;
}

/* Detail Grid */
.detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.detail-box {
  background-color: #eaf1f8;
  border-left: 5px solid #041e42;
  border-radius: 8px;
  padding: 1rem;
}

.detail-box h3 {
  font-size: 1.1rem;
  color: #041e42;
  margin-bottom: 0.4rem;
}

.detail-box p {
  font-size: 0.95rem;
  color: #333;
}

/* Book Button */
.btn.book {
  display: block;
  width: fit-content;
  margin: 2rem auto;
  padding: 0.75rem 1.5rem;
  background-color: #041e42;
  color: #fff;
  font-weight: bold;
  border-radius: 6px;
  text-align: center;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn.book:hover {
  background-color: #2d3e68;
}

/* Responsive */
@media (max-width: 768px) {
  .growth-grid, .detail-grid {
    grid-template-columns: 1fr;
  }

  .section-titles {
    flex-direction: column;
  }

  .section-title {
    font-size: 1rem;
  }
}
