     .testimoni-section {
        margin: 48px 0;
        padding: 32px;
        background: #1a1a1a;
        border-radius: 16px;
        border: 1px solid rgba(255,255,255,0.1);
    }

    .testimoni-section h2 {
        font-size: 28px;
        font-weight: 600;
        text-align: center;
        margin-bottom: 32px;
        color: #ffffff;
    }

    .testimoni-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 24px;
        margin-bottom: 32px;
    }

    .testimoni-card {
        background: #0a0a0a;
        border-radius: 12px;
        padding: 20px;
        transition: all 0.2s;
    }

    .testimoni-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 24px rgba(0,0,0,0.3);
    }

    .rating-stars {
        color: #ffffff;
        font-size: 16px;
        margin-bottom: 12px;
    }

    .testimoni-card blockquote {
        color: #e0e0e0;
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 16px;
        font-style: italic;
    }

    .testimoni-author {
        display: flex;
        justify-content: space-between;
        font-size: 12px;
        color: #888;
        padding-top: 12px;
        border-top: 1px solid rgba(255,255,255,0.1);
    }

    .testimoni-author span {
        color: #ffffff;
        font-weight: 500;
    }

    .testimoni-closing {
        text-align: center;
        padding: 20px;
        background: #0a0a0a;
        border-radius: 12px;
        color: #e0e0e0;
        font-size: 14px;
    }