    .page-header {
      background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
      padding: 80px 0;
      position: relative;
      overflow: hidden;
    }

    .page-header::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%23da5104" stroke-width="0.5" opacity="0.1"/></svg>');
      background-size: 200px;
      opacity: 0.5;
    }

    .page-title {
      font-family: var(--font-display);
      font-size: clamp(32px, 5vw, 48px);
      font-weight: 700;
      color: #f0e8d8;
      margin: 0;
      position: relative;
      z-index: 1;
    }

    .page-title em { color: var(--gold); font-style: italic; }

    .breadcrumb-custom {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-top: 12px;
      position: relative;
      z-index: 1;
    }

    .breadcrumb-custom a { color: #888; text-decoration: none; transition: color .2s; }
    .breadcrumb-custom a:hover { color: var(--gold-light); }
    .breadcrumb-custom .active { color: var(--gold); }

    .about-section { padding: 80px 0; }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    @media (max-width: 991.98px) {
      .about-grid { grid-template-columns: 1fr; gap: 40px; }
    }

    .about-content h2 {
      font-family: var(--font-display);
      font-size: clamp(28px, 3vw, 36px);
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 24px;
      line-height: 1.2;
    }

    .about-content h2 em { color: var(--gold); font-style: italic; }

    .about-content p {
      font-size: 15px;
      color: var(--muted);
      line-height: 1.9;
      margin-bottom: 20px;
    }

    .about-image {
      position: relative;
      border-radius: 8px;
      overflow: hidden;
    }

    .about-image img {
      width: 100%;
      height: 500px;
      object-fit: cover;
      display: block;
    }

    .about-image::after {
      content: '';
      position: absolute;
      inset: 0;
      border: 2px solid var(--gold);
      border-radius: 8px;
      transform: translate(20px, 20px);
      z-index: -1;
    }

    .stats-section {
      background: var(--dark);
      padding: 80px 0;
    }

    .stat-item {
      text-align: center;
      color: #fff;
    }

    .stat-number {
      font-family: var(--font-display);
      font-size: clamp(48px, 6vw, 72px);
      font-weight: 700;
      color: var(--gold);
      line-height: 1;
      margin-bottom: 8px;
    }

    .stat-label {
      font-size: 13px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: #888;
    }

    .values-section {
      padding: 80px 0;
      background: var(--cream2);
    }

    .section-title {
      font-family: var(--font-display);
      font-size: clamp(28px, 3vw, 36px);
      font-weight: 700;
      color: var(--dark);
      text-align: center;
      margin-bottom: 48px;
    }

    .section-title em { color: var(--gold); font-style: italic; }

    .value-card {
      background: #fff;
      border-radius: 8px;
      padding: 40px 30px;
      text-align: center;
      border: 1px solid rgba(0,0,0,0.06);
      transition: transform .3s, box-shadow .3s;
    }

    .value-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 24px 56px rgba(0,0,0,.1);
    }

    .value-icon {
      width: 70px;
      height: 70px;
      background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 24px;
      color: #fff;
      font-size: 28px;
    }

    .value-card h4 {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 12px;
      color: var(--dark);
    }

    .value-card p {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.7;
      margin: 0;
    }

    .team-section { padding: 80px 0; }

    .team-card { text-align: center; }

    .team-img {
      width: 180px;
      height: 180px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 20px;
      border: 3px solid var(--gold);
      padding: 5px;
    }

    .team-card h5 {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 4px;
      color: var(--dark);
    }

    .team-card span {
      font-size: 13px;
      color: var(--gold);
      letter-spacing: 1px;
      text-transform: uppercase;
    }
