.faq-accordion-wrapper {
    margin: 20px 0;
    border-top: 1px solid #eee;
}
.faq-accordion-wrapper details {
    border-bottom: 1px solid #eee;
    transition: all 0.3s ease;
}
/* Subtle hover effect */
.faq-accordion-wrapper details:hover {
    background-color: #fcfcfc;
}
.faq-accordion-wrapper summary {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 5px;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    color: #444;
}
.faq-accordion-wrapper summary::-webkit-details-marker {
    display: none;
}
/* Change color when open to keep focus */
details[open] summary {
    color: #27963c; /* Matches your green button */
}
.summary-title {
    display: flex;
    align-items: center;
    gap: 12px;
}
.chevron {
    transition: transform 0.3s ease;
    opacity: 0.5;
}
details[open] .chevron {
    transform: rotate(180deg);
    opacity: 1;
}
.faq-content {
    padding: 0 10px 15px 30px;
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

/* Layout Horizontal Langkah Pemesanan */
.steps-horizontal {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
    padding-top: 8px;
}

.step-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

/* Bulatan Angka */
.step-badge {
    background-color: #0073aa;
    color: #ffffff;
    font-weight: 700;
    font-size: 12px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
    z-index: 2;
}

/* Teks Keterangan */
.step-card p {
    margin: 0 !important;
    font-size: 11px;
    color: #4b5563;
    line-height: 1.3;
}

/* Responsif untuk Layar HP Kecil */
@media (max-width: 480px) {
    .step-card p {
        font-size: 10px;
    }
}