
    .about-hero {
      position: relative;
      overflow: hidden;
      padding: 78px 0 68px;
      background:
        radial-gradient(circle at top left, rgba(214, 161, 43, 0.16), transparent 34%),
        linear-gradient(135deg, #fffafa 0%, #ffffff 48%, #fff4f4 100%);
    }

    .about-hero::before {
      content: "";
      position: absolute;
      right: -120px;
      top: 25px;
      width: 320px;
      height: 320px;
      border-radius: 50%;
      background: rgba(123, 0, 0, 0.08);
    }

    .about-hero-content {
      position: relative;
      z-index: 2;
    }

    .about-kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--cqa-maroon);
      background: rgba(123, 0, 0, 0.08);
      border: 1px solid rgba(123, 0, 0, 0.12);
      border-radius: 50px;
      padding: 8px 16px;
      font-size: 13px;
      font-weight: 700;
      margin-bottom: 22px;
    }

    .about-title {
      color: var(--cqa-maroon);
      font-size: clamp(34px, 5vw, 54px);
      font-weight: 700;
      line-height: 1.15;
      margin-bottom: 20px;
      letter-spacing: -0.8px;
    }

    .about-text {
      max-width: 760px;
      color: var(--cqa-muted);
      font-size: 16px;
      line-height: 1.9;
      margin-bottom: 0;
    }

    .about-highlight-card {
      background: #ffffff;
      border: 1px solid rgba(123, 0, 0, 0.12);
      border-radius: 26px;
      padding: 28px;
      box-shadow: var(--cqa-shadow);
      position: relative;
      z-index: 2;
    }

    .about-highlight-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 16px 0;
      border-bottom: 1px solid var(--cqa-border);
    }

    .about-highlight-item:last-child {
      border-bottom: 0;
      padding-bottom: 0;
    }

    .about-highlight-icon {
      width: 44px;
      height: 44px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: var(--cqa-maroon);
      background: var(--cqa-maroon-light);
      border-radius: 15px;
      font-size: 20px;
      flex-shrink: 0;
    }

    .about-highlight-item strong {
      display: block;
      color: var(--cqa-dark);
      font-size: 14px;
      margin-bottom: 4px;
    }

    .about-highlight-item span {
      display: block;
      color: var(--cqa-muted);
      font-size: 13px;
      line-height: 1.6;
    }

    .about-content-card {
      height: 100%;
      background: #ffffff;
      border: 1px solid var(--cqa-border);
      border-radius: 24px;
      padding: 30px;
      box-shadow: var(--cqa-shadow);
    }

    .about-content-card h3 {
      color: var(--cqa-maroon);
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 15px;
    }

    .about-content-card p {
      color: var(--cqa-muted);
      font-size: 14px;
      line-height: 1.9;
      margin-bottom: 0;
      text-align: justify;
    }

    .about-value-card {
      position: relative;
      height: 100%;
      overflow: hidden;
      background: #ffffff;
      border: 1px solid var(--cqa-border);
      border-radius: 22px;
      padding: 28px;
      box-shadow: var(--cqa-shadow);
      transition: all 0.3s ease;
    }

    .about-value-card::before {
      content: "";
      position: absolute;
      inset: 0 auto auto 0;
      width: 100%;
      height: 5px;
      background: var(--cqa-maroon);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.3s ease;
    }

    .about-value-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--cqa-shadow-hover);
    }

    .about-value-card:hover::before {
      transform: scaleX(1);
    }

    .about-value-icon {
      width: 60px;
      height: 60px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: var(--cqa-maroon);
      background: var(--cqa-maroon-light);
      border-radius: 18px;
      font-size: 27px;
      margin-bottom: 18px;
    }

    .about-value-card h3 {
      color: var(--cqa-dark);
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 10px;
      line-height: 1.45;
    }

    .about-value-card p {
      color: var(--cqa-muted);
      font-size: 13px;
      line-height: 1.75;
      margin-bottom: 0;
    }

    .about-timeline {
      max-width: 980px;
      margin: 0 auto;
      display: grid;
      gap: 18px;
    }

    .about-timeline-item {
      display: grid;
      grid-template-columns: 120px 1fr;
      gap: 18px;
      align-items: stretch;
    }

    .about-timeline-year {
      display: flex;
      align-items: center;
      justify-content: center;
      color: #ffffff;
      background: var(--cqa-maroon);
      border-radius: 20px;
      font-size: 18px;
      font-weight: 700;
      min-height: 100px;
      box-shadow: var(--cqa-shadow);
    }

    .about-timeline-content {
      background: #ffffff;
      border: 1px solid var(--cqa-border);
      border-radius: 20px;
      padding: 24px;
      box-shadow: var(--cqa-shadow);
    }

    .about-timeline-content h3 {
      color: var(--cqa-dark);
      font-size: 17px;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .about-timeline-content p {
      color: var(--cqa-muted);
      font-size: 14px;
      line-height: 1.8;
      margin-bottom: 0;
    }

    .about-list-card {
      background: #ffffff;
      border: 1px solid var(--cqa-border);
      border-radius: 24px;
      padding: 30px;
      box-shadow: var(--cqa-shadow);
    }

    .about-list {
      display: grid;
      gap: 14px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .about-list li {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      color: var(--cqa-muted);
      font-size: 14px;
      line-height: 1.75;
    }

    .about-list i {
      color: var(--cqa-maroon);
      font-size: 18px;
      margin-top: 3px;
      flex-shrink: 0;
    }

    .about-cta {
      background:
        radial-gradient(circle at top right, rgba(214, 161, 43, 0.16), transparent 30%),
        linear-gradient(135deg, #7b0000 0%, #5f0000 100%);
      color: #ffffff;
      border-radius: 28px;
      padding: 42px;
      box-shadow: var(--cqa-shadow-hover);
      overflow: hidden;
      position: relative;
    }

    .about-cta h2 {
      font-size: clamp(24px, 3vw, 34px);
      font-weight: 700;
      margin-bottom: 12px;
    }

    .about-cta p {
      color: rgba(255, 255, 255, 0.86);
      font-size: 15px;
      line-height: 1.8;
      margin-bottom: 0;
    }

    .about-cta .cqa-outline-btn {
      background: #ffffff;
      color: var(--cqa-maroon);
      border-color: #ffffff;
    }

    .about-cta .cqa-outline-btn:hover {
      background: var(--cqa-maroon-light);
      color: var(--cqa-maroon);
    }

    @media (max-width: 991px) {
      .about-highlight-card {
        margin-top: 32px;
      }

      .about-timeline-item {
        grid-template-columns: 1fr;
      }

      .about-timeline-year {
        min-height: auto;
        padding: 14px;
      }
    }

    @media (max-width: 767px) {
      .about-hero {
        padding: 52px 0;
      }

      .about-content-card,
      .about-list-card,
      .about-value-card {
        padding: 24px;
      }

      .about-content-card p {
        text-align: left;
      }

      .about-cta {
        padding: 28px 22px;
        text-align: center;
      }

      .about-cta .cqa-outline-btn {
        width: 100%;
        margin-top: 22px;
      }
    }
 