    body {
      background-color: #faf8f3;
      font-family: 'Poppins', sans-serif;
    }

    .section-title {
      text-align: center;
      margin-bottom: 2.5rem;
    }


    .section-title img {
      width: 150px;
      height: auto;
      margin-top: 10px;
    }

    .section-title h4 {
      color: #5c1a1a;
      font-weight: 600;
      text-transform: uppercase;
      margin-bottom: 0.3rem;
    }

    .section-title h2 {
      font-weight: 700;
      color: #8a1414;
      letter-spacing: 1px;
      text-transform: uppercase;
    }


    /* Grid layout */
    .capaian-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 25px;
      justify-content: center;
    }

    .capaian-item {
      position: relative;
      background: linear-gradient(180deg, #fff 0%, #fff7eb 100%);
      border: 2px solid rgba(202, 152, 50, 0.4);
      border-radius: 16px;
      padding: 30px 15px;
      text-align: center;
      box-shadow: 0 6px 20px rgba(0,0,0,0.1);
      transition: all 0.3s ease;
    }

    .capaian-item:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.2);
      border-color: #d4a017;
      background: linear-gradient(180deg, #fff8e7 0%, #fff1d4 100%);
    }

    .capaian-item h3 {
      font-size: 2.1rem;
      font-weight: 700;
      color: #2b2b2b;
      margin-bottom: 0.5rem;
    }

    .capaian-item p {
      font-size: 1rem;
      color: #5b4636;
      font-weight: 500;
      margin: 0;
    }

    .capaian-item i {
      font-size: 2rem;
      color: #a02222;
      margin-bottom: 12px;
      transition: color 0.3s;
    }

    .capaian-item:hover i {
      color: #d4a017;
    }

    /* Kartu kemiskinan & pengangguran lebih merah */
    .capaian-item.red {
      background: linear-gradient(180deg, #fff5f5 0%, #ffe0e0 100%);
      border-color: rgba(185, 0, 0, 0.4);
    }

    .capaian-item.red:hover {
      background: linear-gradient(180deg, #ffe8e8 0%, #ffdbdb 100%);
      border-color: #c81a1a;
    }

    @media (min-width: 992px) {
      .capaian-grid {
        grid-template-columns: repeat(4, 1fr);
      }
    }

    @media (max-width: 768px) {
      .capaian-item h3 {
        font-size: 1.7rem;
      }
     .section-title img {
      width: 90px;
      height: auto;
      margin-top: 10px;
    }
      .section-title h2 {
        font-size: 1.5rem;
      }
    }