.info-section {
    width: 100%;
    background-color: #fffae6;
    padding: 0 0 60px 0;
    font-family: Arial, sans-serif;
    color: #584a40;
}

.info-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 15px;
}

.benefits-row {
    display: flex;
    justify-content: space-between;
    text-align: center;
    margin-bottom: 40px;
    gap: 20px;
    flex-wrap: wrap;
}

.benefit-item {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;

    cursor: pointer;
    padding: 15px;
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

.benefit-icon {
    margin-bottom: 10px;
}

.benefit-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block;
}

.benefit-item h3 {
    font-size: 14px;
    font-weight: bold;
    margin: 0;
    line-height: 1.4;
}

.accordion-wrapper {
    border-top: 1px solid #e0d8c3;
}

.accordion-item {
    border-bottom: 1px solid #e0d8c3;
}

.accordion-header {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: inherit;
    font-size: 16px;
    font-weight: bold;
    color: #584a40;
    transition: 0.3s;
}

.accordion-header:hover {
    color: #333;
}

.header-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-icon {
    width: 24px;
    height: 24px;
}

.chevron {
    transition: transform 0.3s ease;
}

.accordion-item.active .chevron {
    transform: rotate(180deg);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.body-content {
    padding-bottom: 20px;
    padding-left: 40px;
    font-size: 14px;
    line-height: 1.6;
    color: #6b5e54;
}

.body-content p {
    margin: 0 0 10px;
}

.body-content ul {
    margin: 0;
    padding-left: 20px;
}

.accordion-header:hover {
    background-color: rgba(0, 0, 0, 0.06);
    text-decoration: underline;
    color: #584a40 !important;
}

@media (max-width: 768px) {
    .benefits-row {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        gap: 5px;
        padding: 20px 10px;
    }

    .benefit-item {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        min-width: 0;
    }

    .benefit-icon svg {
        width: 42px;
        height: 42px;
        margin-bottom: 5px;
    }

    .benefit-item h3 {
        font-size: 10px;
        line-height: 1.3;
        margin: 0;
        font-weight: bold;
    }
}