
    .about-hero {
      margin-top: 120px;
      padding: 80px 0 60px;
      text-align: center;
    }
    .about-hero .hero-badge {
      display: inline-block;
      font-family: 'Quicksand', sans-serif;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--accent, #c9a84c);
      border: 1px solid var(--accent, #c9a84c);
      border-radius: 50px;
      padding: 5px 18px;
      margin-bottom: 20px;
    }

    /* ── Stats row ── */
    .stats-row {
      padding: 48px 0;
      border-top: 1px solid rgba(128,128,128,.15);
      border-bottom: 1px solid rgba(128,128,128,.15);
    }
    .stat-box { text-align: center; }
    .stat-box .stat-num {
      font-family: 'Quintessential', cursive;
      font-size: 2.6rem;
      line-height: 1;
    }
    .stat-box .stat-label {
      font-family: 'Quicksand', sans-serif;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: .12em;
      text-transform: uppercase;
      opacity: .55;
      margin-top: 6px;
    }

    /* ── Story section ── */
    .story-section { padding: 80px 0; }
    .story-section img {
      width: 100%;
      border-radius: 8px;
      object-fit: cover;
      aspect-ratio: 4/5;
    }

    /* ── Value cards — reuse service-card style ── */
    .values-section { padding: 80px 0; }

    /* ── Team section ── */
    .team-section { padding: 80px 0; }
    .team-card-wrap {
      position: relative;
      overflow: hidden;
      border-radius: 8px;
    }
    .team-card-wrap img {
      width: 100%;
      aspect-ratio: 3/4;
      object-fit: cover;
      display: block;
      transition: transform .5s ease;
      filter: grayscale(20%);
    }
    .team-card-wrap:hover img {
      transform: scale(1.05);
      filter: grayscale(0%);
    }
    .team-overlay {
      position: absolute; bottom: 0; left: 0; right: 0;
      padding: 24px 20px;
      background: linear-gradient(transparent, rgba(0,0,0,.82));
      color: #fff;
    }
    .team-overlay h5 {
      font-family: 'Quintessential', cursive;
      font-size: 1.3rem;
      margin: 0;
    }
    .team-overlay span {
      font-family: 'Quicksand', sans-serif;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: .12em;
      text-transform: uppercase;
      opacity: .7;
    }

    /* ── Policy accordion ── */
    .policy-section { padding: 80px 0; }
    .policy-accordion { display: flex; flex-direction: column; gap: 14px; }

    details.policy-item {
      border: 1px solid rgba(128,128,128,.2);
      border-radius: 8px;
      overflow: hidden;
      transition: border-color .25s;
    }
    details.policy-item[open] {
      border-color: var(--accent, #c9a84c);
    }
    details.policy-item summary {
      list-style: none;
      cursor: pointer;
      padding: 22px 26px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      font-family: 'Quicksand', sans-serif;
      font-weight: 600;
      font-size: 1rem;
      user-select: none;
    }
    details.policy-item summary::-webkit-details-marker { display: none; }

    .policy-summary-left {
      display: flex; align-items: center; gap: 16px;
    }
    .policy-summary-icon {
      width: 42px; height: 42px;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: .95rem;
      flex-shrink: 0;
      transition: background .25s;
    }
    .policy-summary-icon.blue  { background: rgba(59,130,246,.12); color: #3b82f6; }
    .policy-summary-icon.green { background: rgba(34,197,94,.12);  color: #22c55e; }
    details.policy-item[open] .policy-summary-icon.blue  { background: rgba(59,130,246,.22); }
    details.policy-item[open] .policy-summary-icon.green { background: rgba(34,197,94,.22); }

    .policy-chevron {
      font-size: .8rem;
      opacity: .5;
      transition: transform .3s ease;
      flex-shrink: 0;
    }
    details.policy-item[open] .policy-chevron { transform: rotate(180deg); opacity: 1; }

    .policy-body {
      padding: 0 26px 26px;
      border-top: 1px solid rgba(128,128,128,.12);
    }
    .policy-intro {
      font-family: 'Quicksand', sans-serif;
      font-size: .92rem;
      line-height: 1.85;
      opacity: .7;
      padding: 18px 0 20px;
    }
    .policy-toc {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 8px 20px;
      margin-bottom: 24px;
    }
    .policy-toc-item {
      font-family: 'Quicksand', sans-serif;
      font-size: .82rem;
      font-weight: 600;
      opacity: .6;
      display: flex; align-items: center; gap: 8px;
    }
    .policy-toc-item i { font-size: .65rem; opacity: .6; }

    /* Refund table */
    .refund-table {
      width: 100%; border-collapse: collapse;
      font-family: 'Quicksand', sans-serif;
      font-size: .85rem;
      margin-bottom: 24px;
    }
    .refund-table th {
      padding: 10px 14px;
      text-align: left;
      font-weight: 600;
      font-size: .78rem;
      letter-spacing: .08em;
      text-transform: uppercase;
      opacity: .6;
      border-bottom: 1px solid rgba(128,128,128,.2);
    }
    .refund-table td {
      padding: 10px 14px;
      border-bottom: 1px solid rgba(128,128,128,.1);
      opacity: .75;
    }
    .refund-table td.refund-ok  { color: #16a34a; font-weight: 600; opacity: 1; }
    .refund-table td.refund-no  { color: #dc2626; font-weight: 600; opacity: 1; }
    .refund-table td.refund-partial { color: #d97706; font-weight: 600; opacity: 1; }

    .policy-actions {
      display: flex; gap: 12px; flex-wrap: wrap;
    }

    /* ── Notice box ── */
    .notice-box {
      border: 1px solid rgba(128,128,128,.2);
      border-radius: 8px;
      padding: 18px 22px;
      display: flex; align-items: flex-start; gap: 14px;
      margin-top: 16px;
    }
    .notice-box i { opacity: .5; margin-top: 2px; flex-shrink: 0; }
    .notice-box p {
      font-family: 'Quicksand', sans-serif;
      font-size: .85rem;
      line-height: 1.8;
      opacity: .65;
      margin: 0;
    }