 /* --- PAGE HEADER / BREADCRUMB --- */
    .page-header {
      background: linear-gradient(rgba(18, 54, 30, 0.85), rgba(30, 86, 49, 0.85)),
                  url('https://images.unsplash.com/photo-1544367567-0f2fcb009e0b?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
      padding: 100px 0 60px;
      color: #ffffff;
      text-align: center;
    }
    .page-title {
      font-size: 3rem;
      font-weight: 700;
      margin-bottom: 10px;
    }
    .breadcrumb-item a {
      color: #d1e7d4;
      text-decoration: none;
    }
    .breadcrumb-item.active {
      color: var(--accent-gold);
    }
    /* --- SECTION STYLES --- */
    .section-title-wrapper {
      text-align: center;
      margin-bottom: 50px;
    }
    .section-subtitle {
      color: var(--primary-light);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 2px;
      font-size: 0.85rem;
    }
    .section-title {
      color: var(--primary-color);
      font-size: 2.3rem;
      font-weight: 700;
      margin-top: 5px;
    }
    .title-line {
      width: 60px;
      height: 3px;
      background: var(--primary-gradient);
      margin: 15px auto 0;
      border-radius: 2px;
      transition: width 0.4s ease;
    }
    .section-title-wrapper:hover .title-line {
      width: 100px;
    }

    /* --- ABOUT OVERVIEW --- */
    .about-overview-section {
      padding: 90px 0;
    }
    .img-stack {
      position: relative;
    }
    .img-stack-main {
      width: 85%;
      border-radius: 15px;
      box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    }
    .img-stack-sub {
      position: absolute;
      bottom: -30px;
      right: 0;
      width: 50%;
      border-radius: 15px;
      border: 5px solid #ffffff;
      box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    }

    /* --- STATS COUNTER BAR --- */
    .stats-section {
      background: var(--primary-gradient);
      color: #ffffff;
      padding: 60px 0;
    }
    .stat-card {
      text-align: center;
    }
    .stat-number {
      font-size: 3rem;
      font-weight: 700;
      font-family: 'Playfair Display', serif;
      color: #ffffff;
    }
    .stat-label {
      font-size: 0.95rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: #d1e7d4;
    }

    /* --- MISSION & VISION CARDS --- */
    .mission-section {
      padding: 90px 0;
      background-color: var(--bg-light);
    }
    .mv-card {
      background: #ffffff;
      padding: 40px 30px;
      border-radius: 15px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.03);
      border-top: 4px solid var(--primary-light);
      height: 100%;
      transition: transform 0.4s ease, box-shadow 0.4s ease;
    }
    .mv-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 15px 35px rgba(30, 86, 49, 0.12);
    }
    .mv-icon {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      background: rgba(76, 154, 42, 0.1);
      color: var(--primary-color);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      margin-bottom: 25px;
      transition: all 0.3s ease;
    }
    .mv-card:hover .mv-icon {
      background: var(--primary-gradient);
      color: #ffffff;
    }

    /* --- TIMELINE / OUR JOURNEY --- */
    .timeline-section {
      padding: 90px 0;
    }
    .timeline {
      position: relative;
      max-width: 800px;
      margin: 0 auto;
    }
    .timeline::after {
      content: '';
      position: absolute;
      width: 3px;
      background-color: var(--primary-light);
      top: 0;
      bottom: 0;
      left: 50%;
      margin-left: -1.5px;
      opacity: 0.3;
    }
    .timeline-container {
      padding: 10px 40px;
      position: relative;
      background-color: inherit;
      width: 50%;
    }
    .timeline-container::after {
      content: '';
      position: absolute;
      width: 20px;
      height: 20px;
      right: -10px;
      background-color: #ffffff;
      border: 4px solid var(--primary-color);
      top: 15px;
      border-radius: 50%;
      z-index: 1;
    }
    .left { left: 0; }
    .right { left: 50%; }
    .right::after { left: -10px; }
    .timeline-content {
      padding: 20px 25px;
      background-color: #ffffff;
      position: relative;
      border-radius: 12px;
      border: 1px solid #eef3ee;
      box-shadow: 0 5px 20px rgba(0,0,0,0.04);
    }
    .timeline-year {
      font-weight: 700;
      color: var(--primary-color);
      font-size: 1.2rem;
    }

    /* --- CORE VALUES --- */
    .values-section {
      padding: 90px 0;
      background-color: var(--bg-light);
    }
    .value-box {
      text-align: center;
      padding: 30px 20px;
      background: #ffffff;
      border-radius: 12px;
      border: 1px solid #e8f0e9;
      transition: all 0.3s ease;
    }
    .value-box:hover {
      background: var(--primary-color);
      color: #ffffff;
      transform: translateY(-5px);
    }
    .value-box:hover .value-icon, .value-box:hover p {
      color: #ffffff !important;
    }
    .value-icon {
      font-size: 2.2rem;
      color: var(--primary-light);
      margin-bottom: 15px;
      transition: color 0.3s ease;
    }