/* About Us Page Specific Styles */

/* Ensure consistent font family */
body {
  font-family: 'Poppins', sans-serif;
}

/* Hero section styling */
.hero-section {
  background: linear-gradient(to right, #e6f7ff, #cceeff);
}

/* Section spacing */
.section {
  padding: 4rem 0;
}

/* Card styling */
.card {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

/* Value card styling */
.value-card {
  background: linear-gradient(to bottom right, #e6f7ff, #ffffff);
  border: 1px solid #cceeff;
  border-radius: 1rem;
  padding: 1.75rem;
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

/* Team member card */
.team-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

/* CTA section */
.cta-section {
  background: linear-gradient(to right, #019cdc, #0077d1);
  color: white;
  padding: 4rem 0;
}

/* Button styling */
.primary-button {
  background-color: white;
  color: #019cdc;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.primary-button:hover {
  background-color: #f0f9ff;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.secondary-button {
  background-color: transparent;
  color: white;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  border: 2px solid white;
  cursor: pointer;
  transition: all 0.3s ease;
}

.secondary-button:hover {
  background-color: #0077d1;
  transform: translateY(-2px);
}

/* Icon styling */
.feature-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background-color: #e6f7ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #019cdc;
  margin-bottom: 1.5rem;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .section {
    padding: 3rem 0;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-buttons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 2rem 0;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }
  
  .cta-buttons a {
    width: 100%;
    text-align: center;
  }
}

/* Focus states for accessibility */
.primary-button:focus, .secondary-button:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}