/* ============================================
     * ABOUT PAGE SPECIFIC STYLES
     * ============================================ */

    .page-header {
      padding: 150px 40px 70px;
      background: var(--color-bg-warm);
      border-bottom: 1px solid var(--color-border);
      text-align: center;
    }

    .page-header h1 {
      font-size: 2.8rem;
      margin-bottom: 12px;
    }

    .page-header p {
      color: var(--color-text-muted);
      font-size: 1.1rem;
      max-width: 650px;
      margin: 0 auto;
    }

    .section {
      max-width: 1100px;
      margin: 0 auto;
      padding: 70px 40px;
    }

    .section-header {
      text-align: center;
      margin-bottom: 40px;
    }

    .section-header h2 {
      font-size: 2rem;
      margin-bottom: 12px;
    }

    .section-header p {
      color: var(--color-text-muted);
    }

    .content-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 40px;
    }

    .content-card {
      border: 1px solid var(--color-border);
      border-radius: 6px;
      padding: 28px;
      background: var(--color-bg-white);
    }

    .content-card h3 {
      font-size: 1.1rem;
      margin-bottom: 10px;
      font-weight: 600;
    }

    .content-card p {
      color: var(--color-text-muted);
      font-size: 0.95rem;
    }

    .roles-strip {
      background: var(--color-bg-warm);
      padding: 40px;
      border-radius: 6px;
      border-left: 3px solid var(--color-gold);
      margin-top: 40px;
    }

    .roles-strip p {
      color: var(--color-text-muted);
    }

    .cta-section {
      text-align: center;
      padding: 70px 40px 90px;
      border-top: 1px solid var(--color-border);
    }

    .cta-section h2 {
      font-size: 2rem;
      margin-bottom: 12px;
    }

    .cta-section p {
      color: var(--color-text-muted);
      margin-bottom: 26px;
    }

    .cta-button {
      display: inline-block;
      padding: 14px 32px;
      background: var(--color-gold);
      color: var(--color-text-primary);
      text-decoration: none;
      font-weight: 600;
      font-size: 0.95rem;
      border-radius: 4px;
      transition: all 0.3s ease;
    }

    .cta-button:hover {
      background: var(--color-text-primary);
      color: var(--color-bg-white);
      transform: translateY(-2px);
    }

    @media (max-width: 900px) {
      .content-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 768px) {
      .page-header {
        padding: 120px 20px 50px;
      }

      .section,
      .cta-section {
        padding: 60px 20px;
      }
    }
