.features-three-column {
  padding: 4rem 2rem;
}

.features-three-column .container {
  max-width: 1200px;
  margin: 0 auto;
}

.features-three-column .section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
}

.features-three-column .section-subtitle {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 3rem;
  color: #666;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-column {
  text-align: center;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-image {
  width: 100%;
  max-width: 120px;
  height: 120px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  object-fit: cover;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  width: 100%;
  max-width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-column h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.feature-column p {
  color: #666;
  line-height: 1.6;
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .feature-column {
    padding: 1.5rem;
  }
  
  .feature-image,
  .feature-icon {
    max-width: 100px;
    height: 100px;
  }
  
  .feature-column h3 {
    font-size: 1.25rem;
  }
  
  .feature-column p {
    font-size: 0.9375rem;
  }
}
