/* General Section Styling */
.section-title {
  font-size: 2.5rem;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 20px;
}

.section-description {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.8;
}

/* About Us Intro Section */
.about-intro {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 50px 0;
  background-color: #f9f9f9;
}

.intro-image img {
  width: 100%;
  max-width: 600px;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Our Commitment Section */
.our-commitment {
  padding: 50px 0;
  background: #f9f9f9;
}

.commitment-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.commitment-text {
  flex: 1;
  font-size: 1.2rem;
  line-height: 1.8;
}

.commitment-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Why Choose Us Section */
.why-choose-us {
  padding: 50px 0;
  background-color: #ffffff;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  font-size: 1.2rem;
  line-height: 1.8;
}

.benefits-list li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.benefits-list li i {
  margin-right: 10px;
  color: var(--accent-color);
  font-size: 1.5rem;
}

.btn-primary {
  display: inline-block;
  padding: 10px 20px;
  color: #ffffff;
  background-color: var(--secondary-color);
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
  text-align: center;
}

.btn-primary:hover {
  background-color: var(--accent-color);
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-intro {
    flex-direction: column;
  }

  .commitment-content {
    flex-direction: column;
  }

  .benefits-list {
    text-align: left;
  }
}
