.about-us {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.about-content {
  display: flex;
  flex: 1 1 100%;
  margin-bottom: 2rem;
  align-items: center;
}

.about-content.image-left .image-container {
  order: 1;
}

.about-content.image-left .text-container {
  order: 2;
  padding-left: 2rem;
  display: block;
  text-align: left;
}

.about-content.image-right .image-container {
  order: 2;
}

.about-content.image-right .text-container {
  order: 1;
  padding-right: 2rem;
  text-align: right;
  display: block;
}

.image-container {
  flex: 1;
  max-width: 50%;
  margin: 1rem;
}

.text-container {
  flex: 1;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
  }

  .about-content.image-left .text-container,
  .about-content.image-right .text-container {
    padding: 1rem;
    text-align: center;
  }

  .image-container,
  .text-container {
    max-width: 100%;
    padding: 0;
  }

  .about-content.image-left .image-container,
  .about-content.image-right .image-container {
    order: 1;
  }

  .about-content.image-left .text-container,
  .about-content.image-right .text-container {
    order: 2;
  }
}

/* Additional styles for the enhanced about page */
.stats-container {
  width: 100%;
  max-width: 100%;
  text-align: center;
}

.stats-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin: 30px 0;
}

.stat-item {
  padding: 20px;
  margin: 10px;
  flex: 1;
  min-width: 200px;
  text-align: center;
}

.stat-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.stat-label {
  font-size: 1rem;
  color: var(--text-color-secondary);
  line-height: 1.4;
}

.full-width {
  width: 100%;
}

.full-width .text-container {
  max-width: 100%;
}

.contact-section {
  text-align: center;
}

.contact-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin: 30px 0;
}

.contact-item {
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 15px;
}

.contact-icon {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.contact-info h6 {
  margin-bottom: 10px;
  color: var(--secondary-color);
  font-size: 1.1rem;
}

.contact-info p {
  color: var(--text-color-secondary);
  margin-bottom: 5px;
  font-size: 0.95rem;
}

.online-section {
  text-align: center;
}

.online-platforms {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 20px;
}

.platform-link {
  display: inline-block;
  padding: 10px 25px;
  background-color: var(--primary-color);
  color: white !important;
  border-radius: 28px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.platform-link:hover {
  background-color: var(--secondary-color);
}

@media (max-width: 768px) {
  .stats-grid {
    flex-direction: column;
    align-items: center;
  }

  .stat-item {
    width: 100%;
    max-width: none;
  }

  .contact-grid {
    gap: 15px;
  }

  .contact-item {
    flex: 0 0 100%;
  }

  .online-platforms {
    flex-direction: column;
    gap: 15px;
  }
}