/* ===== HERO SECTION ===== */
.about-hero {
  position: relative;
  padding: 40px 0;
  /* 🔽 reduced from 90px */
  background: linear-gradient(
    135deg,
    rgba(45, 212, 191, 0.08) 0%,
    rgba(251, 191, 36, 0.08) 100%
  );
  overflow: hidden;
}

/* Decorative soft shapes */
.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(45, 212, 191, 0.08) 0%,
    rgba(251, 191, 36, 0.08) 100%
  );
  pointer-events: none;
}

.about-hero .container {
  max-width: 1200px;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: var(--heading-1-size);
  font-weight: var(--heading-1-weight);
  color: var(--text-dark);
}

.hero-text {
  max-width: 420px;
  font-size: var(--paragraph-large-size);
  font-weight: var(--paragraph-large-weight);
  color: var(--text-muted);
  line-height: 1.6;
}

/* Illustration */
.hero-illustration {
  position: relative;
  z-index: 2;
  text-align: right;
}

.hero-illustration img {
  width: 100%;
  height: 100%;
}

/* Responsive */
@media (max-width: 991px) {
  .hero-illustration {
    margin-top: 40px;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
  }
}

.about-correct-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #fffaf2 0%, #f2f9f8 100%);
}

.about-title {
  font-size: var(--heading-1-size);
  font-weight: var(--heading-1-weight);
  color: var(--text-dark);
  margin-bottom: 25px;
}

.about-title::after {
  content: "";
  display: block;
  width: 90px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  margin: 5px 0px;
  border-radius: 2px;
}

.about-text {
  font-size: var(--paragraph-large-size);
  font-weight: var(--paragraph-large-weight);
  color: var(--text-muted);
  margin-bottom: 15px;
  line-height: 1.6;
}

.about-text strong {
  color: #0b2e33;
  font-weight: 600;
}

/* Right Section */

.about_right_content {
  display: flex;
  flex-direction: column;
  gap: 35px;
  align-items: center;
  justify-content: center;
}

.info-block {
  background-color: var(--background-white);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 4px 12px rgba(11, 46, 51, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  /* gap: 30px; */
}

.info-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(11, 46, 51, 0.15);
  border-color: var(--primary-color);
}

.info-head {
  font-size: var(--paragraph-medium-size);
  font-weight: var(--paragraph-medium-weight);
  color: var(--text-dark);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-card {
  font-size: var(--paragraph-normal-size);
  font-weight: var(--paragraph-small-weight);
  color: var(--text-dark);
  margin: 0;
}

.info-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--background-white);
  font-size: 18px;
}

@media (max-width: 992px) {
  .Struggling_main_headline {
    font-size: 36px;
  }

  .about_right_content {
    height: 400px;
    margin-top: 50px;
  }
}

.mission-highlight {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    rgba(251, 191, 36, 0.08) 0%,
    rgba(45, 212, 191, 0.08) 100%
  );
  overflow: hidden;
}

/* Soft abstract clouds */
.mission-highlight::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(251, 191, 36, 0.08) 0%,
    rgba(45, 212, 191, 0.08) 100%
  );
  pointer-events: none;
}

.mission-card-wrapper {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

/* Floating badge */
.mission-badge {
  width: 84px;
  height: 84px;
  margin: 0 auto -40px;
  background: linear-gradient(
    135deg,
    var(--secondary-color),
    var(--primary-color)
  );
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(201, 162, 77, 0.35);
  z-index: 2;
  position: relative;
}

.mission-badge i {
  font-size: 36px;
  color: white;
}

/* Card */
.mission-card {
  background: linear-gradient(135deg, #fffaf0, #f7f1df);
  border: 1.5px solid rgba(201, 162, 77, 0.35);
  border-radius: 18px;
  padding: 64px 48px 48px;
  box-shadow: 0 16px 40px rgba(31, 111, 120, 0.12);
}

.mission-title {
  font-size: var(--heading-2-size);
  font-weight: var(--paragraph-medium-weight);
  color: var(--text-dark);
  margin-bottom: 15px;
}

.mission-text {
  font-size: var(--paragraph-medium-size);
  font-weight: var(--paragraph-normal-size);
  line-height: 1.8;
  color: var(--text-muted);
}

/* ================================
   RESPONSIVE FIXES (ALL BREAKPOINTS)
   ================================ */

/* ---------- Large Tablets (≤ 1200px) ---------- */
@media (max-width: 1200px) {
  .about-hero {
    padding: 50px 0;
  }

  .hero-illustration img {
    max-width: 420px;
  }

  .about-correct-section {
    padding: 70px 0;
  }
}

/* ---------- Tablets (≤ 991px) ---------- */
@media (max-width: 991px) {
  /* Hero */
  .hero-content {
    text-align: center;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-text {
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-illustration {
    margin-top: 32px;
    text-align: center;
  }

  .hero-illustration img {
    max-width: 360px;
  }

  /* About section */
  .about-correct-section {
    padding: 60px 0;
  }

  .about-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .about-text {
    text-align: center;
  }

  .info-block {
    margin-top: 28px;
  }
}

/* ---------- Mobile (≤ 768px) ---------- */
@media (max-width: 768px) {
  /* Hero */
  .about-hero {
    padding: 40px 0;
  }

  .hero-title {
    font-size: 24px;
  }

  .hero-text {
    font-size: 14px;
  }

  .hero-illustration img {
    max-width: 300px;
  }

  /* About */
  .about-title {
    font-size: 26px;
  }

  .about-text {
    font-size: 14px;
  }

  .info-card {
    padding: 20px;
  }

  /* Mission highlight */
  .mission-highlight {
    padding: 70px 0;
  }

  .mission-card {
    padding: 56px 32px 40px;
  }

  .mission-title {
    font-size: 20px;
  }
}

/* ---------- Small Mobile (≤ 576px) ---------- */
@media (max-width: 576px) {
  /* Hero */
  .hero-title {
    font-size: 22px;
  }

  .hero-illustration img {
    max-width: 260px;
  }

  /* Mission badge */
  .mission-badge {
    width: 72px;
    height: 72px;
    border-radius: 18px;
  }

  .mission-badge i {
    font-size: 30px;
  }

  .mission-card {
    padding: 52px 24px 36px;
  }

  .mission-text {
    font-size: 14px;
  }
}