/* Services Section Styles */

/* Services Header */
.services-header {
  background-color: rgba(0, 197, 215, 0.2);
  margin-bottom: 25px;
}

.services-header h2 {
  font-size: 28px;
  color: #333;
  text-align: center;
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  margin-bottom: 10px;
}

.services-header h2 span {
  color: #00c5d7;
}

.services-header p {
  font-size: 18px;
  color: #666;
  text-align: center;
  margin-bottom: 0;
}

/* Services Error State */
.services-error {
  display: none;
}

/* Services Cards Container */
.services-cards-container {
  display: none;
}

/* Additional Services Section */
.additional-services-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-bottom: 0;
  padding: 16px 16px;
  gap: 32px;
  flex-wrap: wrap;
}

.additional-services-flex > div {
  min-width: 220px;
  max-width: 600px;
  text-align: center;
}

.additional-services-flex .heading-title.small-heading > div {
  font-size: 18px;
  color: #666;
  font-family: 'Raleway', sans-serif;
  font-weight: 900;
  text-align: center;
  line-height: 1.5;
  display: block;
  margin-top: 8px;
}

/* Responsive Design */
@media (max-width: 700px) {
  .additional-services-flex {
    flex-direction: column !important;
    gap: 16px !important;
    padding: 16px 4px !important;
  }
}

@media (max-width: 768px) {
  .services-header h2 {
    font-size: 24px;
  }
  
  .services-header p {
    font-size: 16px;
  }
  
  .additional-services-flex .heading-title.small-heading > div {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .services-header h2 {
    font-size: 20px;
  }
  
  .services-header p {
    font-size: 14px;
  }
} 