.village-profile h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 15px;
}

.village-profile p {
  max-width: 800px;
  margin: 0 auto 40px;
  color: #4b5563;
  line-height: 1.7;
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  justify-content: center;
}

.profile-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 25px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.profile-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}


.profile-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
}

.profile-card:hover::before {
  transform: scaleX(1);
}

.profile-card i {
  font-size: 28px;
  color: #2563eb;
  margin-bottom: 10px;
}

.profile-card h4 {
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 5px;
}

.profile-card p {
  color: #4b5563;
  font-size: 15px;
}