    .keunggulan-wrapper {
        max-width: 600px;
        margin: 20px auto;
        padding: 25px;
        background: #050505;
        border-radius: 15px;
        border: 1px solid #333;
    }

    .section-title {
        text-align: center;
        color: #bf953f;
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-size: 1.3rem;
        margin-bottom: 20px;
        text-transform: uppercase;
        letter-spacing: 2px;
    }

    .row-container {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .keunggulan-row {
        display: flex;
        align-items: center;
        background: #111;
        padding: 12px 18px;
        border-radius: 30px;
        border: 1px solid #222;
        transition: 0.3s;
    }

    .keunggulan-row:hover {
        border-color: #bf953f;
        background: #1a1a1a;
    }

    .number-badge {
        font-size: 0.9rem;
        font-weight: 700;
        color: #000;
        background: #bf953f;
        width: 30px;
        height: 30px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        margin-right: 15px;
        flex-shrink: 0;
    }

    .content-box h3 {
        color: #fcf6ba;
        font-family: sans-serif;
        margin: 0;
        font-size: 0.9rem;
        font-weight: 600;
    }

    .content-box p {
        color: #888;
        margin: 0;
        font-size: 0.8rem;
        line-height: 1.3;
    }
