.info-feature {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  margin-bottom: 30px;
  background: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.info-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.info-image {
  position: relative;
  overflow: hidden;
  border-radius: 15px 15px 0 0;
}

.info-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  /* Nudge focal point slightly up (90%) so the image is shown a bit higher but still near the bottom) */
  object-position: center 90%;
  transition: transform 0.5s ease;
}

.info-feature:hover .info-image img {
  transform: scale(1.05);
}

.info-content {
  padding: 30px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.95), #fff);
}

.info-content h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #2b2b2b;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

.info-content h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: #006400;
}

.info-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.info-highlight {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
  border-left: 4px solid #006400;
  /* Increase vertical spacing so Misión/Visión are visually separated a bit more */
  margin: 32px 0;
}

.info-stats {
  display: flex;
  justify-content: space-around;
  margin-top: 30px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  padding: 20px;
  flex: 1;
  min-width: 200px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #006400;
  margin-bottom: 10px;
}

.stat-label {
  font-size: 1rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .info-image img {
    height: 300px;
    /* Keep focal point slightly up on small screens as well */
    object-position: center 90%;
  }
  
  .info-content {
    padding: 20px;
  }
  
  .info-content h3 {
    font-size: 1.5rem;
  }
  
  .info-content p {
    font-size: 1rem;
  }
  
  /* Slightly reduce spacing on small screens so layout stays compact */
  .info-highlight {
    margin: 24px 0;
  }

  .stat-item {
    min-width: 150px;
  }
}