.price-box {
    background: #f4f4f4;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.price-offer h4 {
    color: #e74c3c;
    font-size: 28px;
    font-weight: bold;
    display: inline-block;
}

.original-price {
    text-decoration: line-through;
    color: #888;
    font-size: 18px;
    font-weight: bold;
}

.discount-price {
    color: #1e3557;
    font-size: 30px;
    font-weight: bold;
}

.discount-badge {
    background-color: #1e3557;
    color: white;
    padding: 3px 10px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 14px;
    margin-left: 10px;
}

.cta-buttons {
    margin-top: 20px;
}

.cta-buttons .btn {
    background-color: #e74c3c;
    color: white;
    padding: 10px 30px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
}

.cta-buttons .btn:hover {
    background-color: #c0392b;
}

/* Custom styles for plus/minus icon using ::after */
.accordion-button::after {

    font-size: 20px;
    position: absolute;
    right: 10px;
}

/* To make sure the accordion has space for the icon */
.accordion-button {
    position: relative;
    padding-right: 30px;
    /* Add space for the icon */
}