/* ABOUT SECTION */
.about-section {
  background-color: #f8f9fa;
  padding: 4rem 0;
  color: #333;
  position: relative;
  z-index: 1;
}

.about-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* FEATURES GRID */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.feature-card {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-icon {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.feature-card p {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
}

/* CONSULTANTS SECTION */
.consultants-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.consultants-image {
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.consultants-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.consultants-content {
  padding: 1rem 0;
}

.consultants-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #e85107;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.consultants-description {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 2rem;
}

.btn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  color: #000;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e0e0;
}

.btn-more:hover {
  background-color: #e85107;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 86, 0, 0.3);
}

.btn-more .btn-icon {
  transition: transform 0.3s ease;
}

.btn-more:hover .btn-icon {
  transform: translateX(3px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .about-section {
    padding: 3rem 0;
  }
  
  .about-section .container {
    padding: 0 1rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }
  
  .feature-card {
    padding: 1.5rem;
  }
  
  .feature-card h3 {
    font-size: 1.3rem;
  }
  
  .consultants-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .consultants-image img {
    height: 300px;
  }
  
  .consultants-title {
    font-size: 1.5rem;
  }
  
  .consultants-description {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .feature-card {
    padding: 1rem;
  }
  
  .consultants-image img {
    height: 250px;
  }
  
  .consultants-title {
    font-size: 1.3rem;
  }
}
