/* ===== ABOUT US PAGE STYLES ===== */
.about-us-container {
  width: 100%;
}

/* Hero Section */
.about-hero {
  background: linear-gradient(135deg, var(--bs-primary) 0%, rgba(18, 115, 132, 0.85) 100%);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.about-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.about-hero .hero-subtitle {
  font-size: 1.5rem;
  font-weight: 300;
  opacity: 0.95;
  margin: 0;
}

/* About Sections */
.about-section {
  padding: 80px 20px;
}

.about-section.bg-light {
  background-color: #f9f9f9;
}

.section-content h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--bs-primary);
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 20px;
}

.section-content h2::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 4px;
  background: #FCB215;
  border-radius: 2px;
}

.section-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.section-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  margin-bottom: 30px;
}

.section-image:hover {
  transform: translateY(-5px);
}

/* Highlight Box */
.highlight-box {
  background: linear-gradient(135deg, rgba(18, 115, 132, 0.1) 0%, rgba(252, 178, 21, 0.05) 100%);
  border-left: 4px solid var(--bs-primary);
  padding: 30px;
  border-radius: 8px;
  margin: 40px 0;
}

.highlight-box p {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--bs-primary);
}

.highlight-number {
  display: inline-block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #FCB215;
  margin-right: 15px;
}

/* Feature Lists */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
}

.feature-list li {
  padding: 12px 0;
  padding-left: 30px;
  position: relative;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #555;
}

.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #FCB215;
  font-weight: bold;
  font-size: 1.3rem;
}

/* Partner Grid */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.partner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 25px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
}

.partner-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(18, 115, 132, 0.15);
}

.partner-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.partner-item span {
  font-size: 0.95rem;
  font-weight: 600;
  color: #333;
  line-height: 1.4;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 15px;
  margin: 30px 0;
}

.feature-badge {
  background: linear-gradient(135deg, var(--bs-primary) 0%, rgba(18, 115, 132, 0.8) 100%);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 25px;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(18, 115, 132, 0.2);
  transition: all 0.3s ease;
}

.feature-badge:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(18, 115, 132, 0.3);
}

/* CTA Section */
.about-section.about-cta {
  background: linear-gradient(135deg, #f0f4f8 0%, #e8f0f6 100%);
  text-align: center;
}

.about-cta h2 {
  color: var(--bs-primary);
  font-size: 2.5rem;
  margin-top: 30px;
}

.cta-image {
  max-width: 300px;
  height: auto;
  margin: 0 auto 40px;
}

/* Highlight Text */
.highlight-text {
  font-size: 1.1rem;
  color: var(--bs-primary);
  font-weight: 600;
  margin-top: 20px !important;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-hero h1 {
    font-size: 2rem;
  }

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

  .about-section {
    padding: 50px 20px;
  }

  .section-content h2 {
    font-size: 1.8rem;
  }

  .partner-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-cta h2 {
    font-size: 1.8rem;
  }

  .cta-image {
    max-width: 200px;
  }
}

@media (max-width: 576px) {
  .about-hero h1 {
    font-size: 1.5rem;
  }

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

  .about-section {
    padding: 40px 15px;
  }

  .section-content h2 {
    font-size: 1.5rem;
  }

  .section-content p {
    font-size: 1rem;
  }

  .partner-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .partner-item {
    padding: 15px;
  }

  .partner-icon {
    font-size: 2rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-badge {
    font-size: 0.9rem;
    padding: 10px 15px;
  }
}
