    .testimoni-wrapper {
        display: flex;
        flex-direction: column;
        gap: 20px; /* Jarak antar kotak testimoni */
        padding: 10px;
    }
    .testimoni-wrapper blockquote {
        background: linear-gradient(135deg, #1a0b2e 0%, #000000 100%);
        border-left: 6px solid #FFD700;
        border-top: 1px solid #333;
        border-right: 1px solid #333;
        border-bottom: 1px solid #333;
        margin: 0; /* Reset margin bawaan browser */
        padding: 25px 30px;
        border-radius: 0 15px 15px 0; /* Sudut melengkung di kanan */
        box-shadow: 0 5px 15px rgba(0,0,0,0.5); /* Bayangan kedalaman */
        position: relative;
        transition: transform 0.3s ease; /* Animasi halus */
    }
    .testimoni-wrapper blockquote:hover {
        transform: translateX(5px);
        background: linear-gradient(135deg, #2a003b 0%, #050505 100%);
        border-left-color: #bd00ff; /* Berubah jadi Ungu saat hover */
    }
    .testimoni-wrapper p {
        margin: 0 0 15px 0;
        line-height: 1.6;
    }

    .testimoni-wrapper blockquote a {
        color: #ffffff !important; /* WAJIB PUTIH (Timpa inline style lama) */
        font-family: 'Segoe UI', sans-serif;
        font-size: 1.1rem; /* Ukuran font sedang */
        font-weight: 600; /* Tebal (Bold) */
        font-style: italic; /* Miring khas kutipan */
        text-decoration: none;
        text-shadow: 1px 1px 2px rgba(0,0,0,1); /* Bayangan teks agar tajam */
        display: block; /* Agar full width */
    }
    .testimoni-wrapper cite {
        display: flex;
        align-items: center;
        font-style: normal;
        font-weight: 800; /* Super Tebal */
        color: #FFD700; /* Warna Emas */
        text-transform: uppercase; /* Huruf Kapital Semua */
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
    .avatar {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 35px;
        height: 35px;
        background: #bd00ff; /* Ungu Neon */
        color: white;
        border-radius: 50%;
        margin-right: 10px;
        font-weight: bold;
        box-shadow: 0 0 10px rgba(189, 0, 255, 0.5);
    }

    /* Ikon Kutip Besar (Dekorasi Background) */
    .testimoni-wrapper blockquote::after {
        content: '“';
        position: absolute;
        top: -10px;
        right: 20px;
        font-size: 5rem;
        color: rgba(255, 255, 255, 0.05); /* Transparan */
        font-family: serif;
    }

    .main-article {
        background: linear-gradient(160deg, #000000 0%, #0a0a0a 100%);
        border: 2px solid #FFD700;
        box-shadow: 0 0 25px rgba(120, 0, 255, 0.3), inset 0 0 10px rgba(0,0,0,0.8);
        border-radius: 15px;
        padding: 40px;
        font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        line-height: 1.8; /* Jarak antar baris sedikit renggang agar lega */
    }
    .main-article h1 {
        text-align: center;
        text-transform: uppercase;
        font-size: 2rem;
        font-weight: 800; /* Super Tebal */
        color: #ffffff;
        border-bottom: 3px solid #FFD700;
        display: inline-block; /* Agar garis bawah mengikuti panjang teks */
        padding-bottom: 10px;
        margin-bottom: 30px;
        width: 100%; /* Memastikan rata tengah sempurna */
    }
    .main-article h2 {
        color: #FFD700; /* Kuning Emas */
        margin-top: 35px;
        margin-bottom: 15px;
        font-size: 1.6rem;
        font-weight: 700;
        border-left: 6px solid #bd00ff; /* Aksen Ungu di kiri */
        padding-left: 15px;
        text-shadow: 1px 1px 2px black;
    }
    .main-article p {
        font-size: 1.05rem;
        color: #ffffff; /* Putih Mutlak */
        font-weight: 500; /* Medium Bold (Tebal tapi enak dibaca) */
        margin-top: 15px;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.9); /* Bayangan hitam agar teks tajam */
        text-align: justify; /* Rata kanan-kiri agar rapi */
    }
    .main-article strong {
        color: #FFD700; /* Kuning Emas */
        font-weight: 900;
    }
    .main-article em {
        color: #d946ef; /* Ungu Muda Neon */
        font-style: italic;
        font-weight: 600;
    }
    @media (max-width: 600px) {
        .main-article {
            padding: 25px;
        }
        .main-article h1 {
            font-size: 1.5rem;
        }
    }
