/* About Hero */
        .about-hero-section {
          background: linear-gradient(180deg, #16251b 0%, #070a08 100%);
          padding: 80px 0;
          text-align: center;
          border-bottom: 1px solid var(--border-dark);
          position: relative;
        }

        .about-hero-title {
          font-size: 3rem;
          font-weight: 800;
          letter-spacing: 0.1em;
          margin-top: 12px;
          margin-bottom: 4px;
          color: #ffffff !important;
        }

        .about-hero-subtitle {
          font-family: var(--font-headings);
          font-size: 0.95rem;
          color: #c4a46c !important;
          letter-spacing: 0.2em;
          font-weight: 600;
        }

        /* Mission Section */
        .mission-section {
          padding: 80px 24px;
        }

        .mission-grid {
          display: grid;
          grid-template-columns: 1.1fr 0.9fr;
          gap: 60px;
          align-items: center;
        }

        .mission-text {
          text-align: left;
        }

        .mission-text h2 {
          font-size: 2rem;
          margin: 12px 0 20px 0;
          line-height: 1.25;
        }

        .mission-text p {
          color: var(--text-gray);
          margin-bottom: 20px;
          font-size: 0.95rem;
        }

        .mission-video-placeholder {
          background: linear-gradient(135deg, var(--brand-green-dark) 0%, #0c120f 100%);
          border: 1px solid var(--brand-gold);
          border-radius: 8px;
          padding: 40px;
          position: relative;
          box-shadow: 0 10px 30px rgba(0,0,0,0.15);
          text-align: left;
        }

        .placeholder-inner h3 {
          font-size: 1.4rem;
          margin: 12px 0;
          font-weight: 700;
          color: #ffffff !important;
        }

        .placeholder-inner p {
          color: #d1d5db !important;
          font-size: 0.85rem;
          margin-bottom: 24px;
        }

        .qa-stat-row {
          display: flex;
          gap: 24px;
          align-items: center;
        }

        .qa-stat {
          display: flex;
          flex-direction: column;
        }

        .qa-val {
          font-family: var(--font-headings);
          font-size: 1.8rem;
          font-weight: 800;
          color: var(--brand-gold);
          line-height: 1;
        }

        .qa-lbl {
          font-size: 0.75rem;
          color: #d1d5db !important;
          margin-top: 4px;
        }

        .qa-stat-divider {
          width: 1px;
          height: 40px;
          background-color: rgba(255, 255, 255, 0.1) !important;
        }

        /* Values Section */
        .values-section {
          background-color: var(--bg-secondary);
          border-top: 1px solid var(--border-dark);
          border-bottom: 1px solid var(--border-dark);
          padding: 80px 0;
        }

        .values-grid {
          display: grid;
          grid-template-columns: repeat(3, 1fr);
          gap: 32px;
          margin-top: 48px;
        }

        .value-card {
          text-align: center;
          display: flex;
          flex-direction: column;
          align-items: center;
        }

        .value-icon-box {
          width: 48px;
          height: 48px;
          border-radius: 50%;
          border: 1px solid var(--brand-gold);
          display: flex;
          align-items: center;
          justify-content: center;
          background-color: rgba(196, 164, 108, 0.05);
          margin-bottom: 20px;
        }

        .value-card h3 {
          font-size: 1.3rem;
          margin-bottom: 12px;
        }

        .value-card p {
          color: var(--text-gray);
          font-size: 0.85rem;
          line-height: 1.6;
        }

        /* Timeline section */
        .timeline-section {
          padding: 80px 24px;
        }

        .timeline-interactive-container {
          max-width: 800px;
          margin: 48px auto 0;
        }

        .timeline-years-bar {
          display: flex;
          justify-content: space-between;
          position: relative;
          margin-bottom: 40px;
        }

        .timeline-years-bar::before {
          content: '';
          position: absolute;
          left: 0;
          right: 0;
          top: 50%;
          transform: translateY(-50%);
          height: 2px;
          background-color: var(--border-dark);
          z-index: 1;
        }

        .timeline-year-btn {
          position: relative;
          z-index: 2;
          background-color: var(--bg-primary);
          border: 2px solid var(--border-dark);
          color: var(--text-gray);
          width: 64px;
          height: 64px;
          border-radius: 50%;
          font-family: var(--font-headings);
          font-weight: 700;
          font-size: 0.95rem;
          cursor: pointer;
          transition: var(--transition-fast);
          display: flex;
          align-items: center;
          justify-content: center;
        }

        .timeline-year-btn:hover {
          border-color: var(--brand-gold);
          color: var(--text-white);
        }

        .timeline-year-btn.active {
          border-color: var(--brand-gold);
          color: var(--brand-gold);
          background-color: var(--brand-green);
          box-shadow: 0 0 15px rgba(196, 164, 108, 0.3);
          transform: scale(1.15);
        }

        .timeline-milestone-card {
          text-align: left;
          animation-duration: 0.4s;
        }

        .milestone-year-indicator {
          font-family: var(--font-headings);
          font-size: 0.8rem;
          font-weight: 700;
          color: var(--brand-gold);
          margin-bottom: 8px;
          display: flex;
          align-items: center;
          gap: 6px;
        }

        .milestone-title {
          font-size: 1.6rem;
          font-weight: 700;
          margin-bottom: 12px;
        }

        .milestone-desc {
          color: var(--text-gray);
          line-height: 1.6;
          font-size: 0.95rem;
        }

        /* Responsive timeline */
        @media (max-width: 900px) {
          .mission-grid {
            grid-template-columns: 1fr;
            gap: 40px;
          }
          .values-grid {
            grid-template-columns: 1fr;
          }
          .timeline-years-bar {
            flex-wrap: wrap;
            gap: 16px;
            justify-content: center;
          }
          .timeline-years-bar::before {
            display: none;
          }
        }