/* body {
    font-family: inherit;
    line-height: 1.6;
    margin: 0;
    padding: 20px;
    background-color: #f9f9f9;
} */

.accordion {
    width: 100%;
    margin: 0 auto;
}

.accordion-item {
    border: 1px solid #ddd;
    margin-bottom: 10px;
    border-radius: 5px;
    overflow: hidden;
}

.accordion-header {
    background-color: #f1f1f1;
    padding: 15px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header:hover {
    background-color: #e0e0e0;
}

.accordion-content {
    display: none;
    padding: 15px;
    background-color: #fff;
}

.accordion-content.active {
    display: block;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.feature-list .icon {
    width: 24px;
    height: 24px;
    margin-left: 10px;
}

.feature-list .active .icon {
    fill: #ff6318;
}

.feature-list .inactive .icon {
    fill: #ccc;
}

.feature-list .active span {
    font-weight: bold;
    color: #333;
}

.feature-list .inactive span {
    color: #999;
}

.coupon-code {
    background-color: #f1f1f1;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    margin-right: 10px;
}

.coupon-code:hover {
    background-color: #e0e0e0;
}

.description {
    margin-top: 15px;
    font-size: 16px;
    color: #555;
}

.description strong {
    color: #333;
}

@media (max-width: 600px) {
    .accordion-header {
        font-size: 16px;
        padding: 10px;
    }

    .accordion-content {
        padding: 10px;
    }

    .feature-list li {
        font-size: 14px;
    }
}