   *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    body {
      font-family: 'Nunito', sans-serif;
      background: #f0f4f9;
    }

    /* ── Section ── */
    .ach-section {
      padding: 70px 5%;
      background: #f0f4f9;
    }

    /* ── Heading ── */
    .ach-heading {
      text-align: center;
      margin-bottom: 50px;
    }
    .ach-heading .tag {
      display: inline-block;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: #ff691b;
      border-left: 3px solid #ff691b;
      padding-left: 10px;
      margin-bottom: 12px;
    }
    .ach-heading h2 {
      font-family: 'Oswald', sans-serif;
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      font-weight: 700;
      color: #1a1a2e;
    }
    .ach-heading p {
      font-size: 0.96rem;
      color: #777;
      margin-top: 10px;
      max-width: 500px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.7;
    }

    /* ── Grid ── */
    .ach-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 26px;
      max-width: 1200px;
      margin: 0 auto;
    }

    /* ── Card ── */
    .ach-card {
      background: #fff;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 4px 20px rgba(0,0,0,0.08);
      display: flex;
      flex-direction: column;
      transition: transform 0.35s ease, box-shadow 0.35s ease;
      cursor: default;
    }
    .ach-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 22px 48px rgba(0,0,0,0.15);
    }

    /* ── Image Box ── */
    .ach-img-box {
      position: relative;
      height: 200px;
      overflow: hidden;
    }
    .ach-img-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.5s ease;
    }
    .ach-card:hover .ach-img-box img {
      transform: scale(1.07);
    }
    .ach-img-box .badge-tag {
      position: absolute;
      top: 14px;
      left: 14px;
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #fff;
      padding: 4px 12px;
      border-radius: 20px;
      font-family: 'Nunito', sans-serif;
    }
    .ach-img-box .badge-year {
      position: absolute;
      top: 14px;
      right: 14px;
      background: rgba(0,0,0,0.5);
      color: #fff;
      font-size: 0.7rem;
      font-weight: 600;
      padding: 4px 10px;
      border-radius: 20px;
      backdrop-filter: blur(4px);
      font-family: 'Nunito', sans-serif;
    }
    .ach-img-overlay {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 60px;
      background: linear-gradient(transparent, rgba(0,0,0,0.28));
    }

    /* ── Content ── */
    .ach-content {
      padding: 22px 20px 24px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }
    .ach-title-row {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 12px;
    }
    .ach-icon-wrap {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.95rem;
      flex-shrink: 0;
      transition: background 0.3s;
    }
    .ach-content h3 {
      font-family: 'Oswald', sans-serif;
      font-size: 15px;
      font-weight: 600;
      color: #1a1a2e;
      line-height: 1.3;
    }
    .ach-content p {
      font-size: 14px;
      color: #666;
      line-height: 1.75;
      flex: 1;
      margin-bottom: 18px;
      align-items:justify-content;
    }
    .ach-stat {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 10px 14px;
      border-radius: 8px;
      border-left: 3px solid;
    }
    .ach-stat i {
      font-size: 0.85rem;
    }
    .ach-stat span {
      font-family: 'Oswald', sans-serif;
      font-size: 0.95rem;
      font-weight: 600;
      letter-spacing: 0.03em;
    }

    /* ── Responsive ── */
    @media (max-width: 1024px) {
      .ach-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 580px) {
      .ach-grid { grid-template-columns: 1fr; gap: 18px; }
      .ach-img-box { height: 180px; }
    }