/* Existing styles for body, h2, and conservation-sections are assumed to be in your main stylesheet */

/* This is used on the Wildlife Conservation page */

/* Feature Boxes Section */
.feature-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 30px;
  padding: 20px;
  margin: 0 auto;
}

.feature-box {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 20px;
  transition: transform 0.3s ease-in-out;
}

.feature-box:hover {
  transform: scale(1.05);
}

.feature-box img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.feature-box h3 {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 10px;
}

.feature-box p {
  font-size: 1rem;
  color: #7f8c8d;
  margin-bottom: 15px;
}

.read-more {
  text-decoration: none;
  color: #27ae60;
  font-weight: bold;
}

.read-more:hover {
  text-decoration: underline;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .feature-boxes {
    grid-template-columns: 1fr 1fr;
  }
}

