/* ===== About Page Specific Styles ===== */

.about-hero {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(219, 234, 254, 0.3) 100%);
  padding: 4rem 2rem;
  text-align: center;
}

.about-hero-content {
  max-width: 1200px;
  margin: 0 auto;
}

.about-hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.about-hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.about-section {
  padding: 4rem 2rem;
}

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

.about-content {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.about-content:last-child {
  margin-bottom: 0;
}

/* Mission Section Styling */
.mission-intro {
  margin-bottom: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
}

.mission-list,
.services-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mission-list li,
.services-list li {
  margin-bottom: 1.25rem;
  padding-left: 1.75rem;
  position: relative;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.mission-list li::before,
.services-list li::before {
  content: "●";
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: bold;
}

.mission-list li strong,
.services-list li strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* Why Choose Us Section */
.why-choose-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.why-choose-item {
  display: flex;
  gap: 1.5rem;
}

.why-choose-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.1);
  color: var(--brand);
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.2rem;
}

.why-choose-text h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  margin-top: 0;
}

.why-choose-text p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Meet the GM Section */
.meet-gm-section {
  background: var(--bg-light);
}

.gm-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-top: 2rem;
}

.gm-image {
  display: flex;
  justify-content: center;
  padding-top: 15px;
}

.gm-photo {
  width: 100%;
  max-width: 336px;
  height: auto;
  border-radius: 1px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  object-fit: cover;
}

.gm-bio {
  display: flex;
  flex-direction: column;
}

.gm-name {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  margin-top: 0;
}

.gm-title {
  font-size: 1.1rem;
  color: var(--brand);
  font-weight: 600;
  margin-bottom: 1.5rem;
  margin-top: 0;
}

.gm-description {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.gm-description:last-child {
  margin-bottom: 0;
}

/* Let's Connect Section */
.lets-connect-section {
  text-align: center;
  background: var(--white);
}

.lets-connect-section .about-content {
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.lets-connect-section .btn {
  margin-top: 1.5rem;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
  .about-hero {
    padding: 3rem 1.5rem;
  }

  .about-hero-title {
    font-size: 2rem;
  }

  .about-hero-subtitle {
    font-size: 1rem;
  }

  .about-section {
    padding: 3rem 1.5rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .about-content {
    font-size: 0.95rem;
  }

  .mission-list li,
  .services-list li {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }

  .why-choose-list {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .why-choose-item {
    gap: 1rem;
  }

  .why-choose-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    font-size: 1rem;
  }

  .gm-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .gm-image {
    padding-top: 0px;
}

  .gm-name {
    font-size: 1.5rem;
  }

  .gm-title {
    font-size: 1rem;
  }

  .gm-photo {
    max-width: 280px;
    padding-top: 0;
  }
}

@media (max-width: 480px) {
  .about-hero {
    padding: 2rem 1rem;
  }

  .about-hero-title {
    font-size: 1.5rem;
  }

  .about-hero-subtitle {
    font-size: 0.9rem;
  }

  .about-section {
    padding: 2rem 1rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .about-content {
    font-size: 0.9rem;
    text-align: left;
  }

  .mission-intro {
    font-size: 0.9rem;
  }

  .mission-list li,
  .services-list li {
    font-size: 0.85rem;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
  }

  .why-choose-list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .why-choose-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    font-size: 0.9rem;
  }

  .why-choose-text h4 {
    font-size: 0.95rem;
  }

  .why-choose-text p {
    font-size: 0.85rem;
  }

  .gm-name {
    font-size: 1.25rem;
  }

  .gm-title {
    font-size: 0.95rem;
  }

  .gm-description {
    font-size: 0.85rem;
  }

  .gm-photo {
    max-width: 250px;
  }

  .lets-connect-section .btn {
    font-size: 0.9rem;
  }
}