/* Main Container */
.ravi-accordion-offers {
    margin: auto !important;
    width: 100%;
    max-width: 700px;
    /* Ograniczenie szerokości */
    margin-bottom: 40px;
}

/* Offer Item (Details) */
.ravi-offer-item {
    border-bottom: 1px solid #1e1e1e;
    /* Kolor separatora #1e1e1e */
    margin-bottom: 0px;
}

.ravi-offer-item:first-child {
    border-top: 1px solid #1e1e1e;
    /* Kolor linii górnej #1e1e1e */
}

/* Summary (Header) */
.ravi-offer-summary {
    list-style: none;
    /* Ukryj domyślny trójkąt */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    background: transparent;
    transition: background-color 0.2s;
}

/* Remove default marker for Webkit */
.ravi-offer-summary::-webkit-details-marker {
    display: none;
}

.ravi-offer-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    color: #1e1e1e;
    /* Ciemny kolor tekstu */
}

/* Icon Container */
.ravi-offer-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    margin-left: 10px;
}

/* Rotate icon when open */
.ravi-offer-item[open] .ravi-offer-icon {
    transform: rotate(-90deg);
    /* Obrót strzałki */
}

/* Content */
.ravi-offer-content {
    padding: 10px 0 30px 0;
    color: #333;
    line-height: 1.6;
    font-size: 16px;
}