/* ===== About Us Section ===== */
.section-about-us {
  padding: 80px 20px;
  background-color: #f8f9fa;
  font-family: 'Tajawal', 'Poppins', sans-serif;
  direction: rtl;
}

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

.about-us-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* ===== Image ===== */
.about-us-image {
  flex: 1 1 45%;
  text-align: center;
}

.about-us-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* ===== Content ===== */
.about-us-content {
  flex: 1 1 50%;
  color: #2c3e50;
}

.about-us-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.about-us-heading-group h2 {
  font-size: 22px;
  margin-bottom: 10px;
  font-weight: 600;
  color: #007BFF;
}

.about-us-bullet-list p {
  font-size: 16px;
  margin: 8px 0;
  line-height: 1.6;
  color: #444;
}

/* ===== Responsive Design ===== */
@media (max-width: 991px) {
  .about-us-wrapper {
    flex-direction: column-reverse;
    text-align: center;
  }

  .about-us-content {
    flex: 1 1 100%;
  }

  .about-us-title {
    font-size: 28px;
  }

  .about-us-heading-group h2 {
    font-size: 20px;
  }

  .about-us-bullet-list p {
    font-size: 15px;
  }
}

@media (max-width: 600px) {
  .section-about-us {
    padding: 60px 15px;
  }

  .about-us-title {
    font-size: 24px;
  }

  .about-us-heading-group h2 {
    font-size: 18px;
  }

  .about-us-bullet-list p {
    font-size: 14px;
  }
}
