/* Pricing Section Styles */
.pricing-area {
    position: relative;
    z-index: 1;
}

.pricing-item {
    background: #ffc224;
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    transition: all 0.3s ease-out;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.pricing-item-classic {
    background: #5751e1;
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    transition: all 0.3s ease-out;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.pricing-item:hover,
.pricing-item.active {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pricing-badge span {
    background: var(--tg-theme-primary);
    color: #fff;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
}

.pricing-badge .popular {
    background: #FF6B6B;
}

.pricing-header {
    text-align: center;
    margin-bottom: 25px;
}

.pricing-header .pricing-title {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--tg-heading-color);
}

.pricing-header p {
    color: var(--tg-body-color);
    margin: 0;
}

.pricing-price {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-price .price {
    font-size: 36px;
    color: var(--tg-theme-primary);
    margin: 0;
}

.pricing-price .price span {
    font-size: 16px;
    color: var(--tg-body-color);
    display: block;
    margin-top: 5px;
}

.pricing-content {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-content p {
    color: var(--tg-body-color);
    margin: 0;
    line-height: 1.6;
}

.pricing-bottom {
    text-align: center;
}

.total-price {
    margin-bottom: 25px;
}

.total-price span {
    display: block;
    color: var(--tg-body-color);
    font-size: 14px;
    margin-bottom: 5px;
}

.total-price .total {
    font-size: 28px;
    color: var(--tg-theme-primary);
    margin: 0;
}

.btn-two {
    display: inline-block;
    text-align: center;
    padding: 15px 35px;
    background: var(--tg-theme-primary);
    color: #fff;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--tg-theme-primary);
}

.btn-two:hover {
    background: transparent;
    color: var(--tg-theme-primary);
}

@media (max-width: 991px) {
    .pricing-item {
        margin-bottom: 30px;
    }
}

/* Benefits Section Styles */
.benefits-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 3rem;
    width: 100%;
}

.benefits-area {
    padding: 3rem 0;
}

.benefits-area .col-12 {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.benefit-icon {
    margin-bottom: 1.5rem;
    text-align: center;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.benefit-img {
    width: 120px;
    height: auto;
    transition: transform 0.3s ease;
    object-fit: contain;
}

.benefit-box:hover .benefit-img {
    transform: scale(1.1);
}

.benefit-box {
    text-align: center;
    padding: 2.5rem 2rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.benefit-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.benefit-box h4 {
    width: 100%;
    height: 60px;
    margin-bottom: 1.2rem;
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-box p {
    width: 100%;
    height: 80px;
    color: #666;
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
}

.benefits-area .row {
    display: flex;
    flex-wrap: wrap;
}

.benefits-area .col-md-3 {
    display: flex;
}

/* FAQ Section Styles */
.accordion-button:not(.collapsed) {
    background-color: #5751e1 !important;
    color: #fff !important;
}

.accordion-button:focus {
    border-color: #5751e1;
    box-shadow: 0 0 0 0.25rem rgba(87, 81, 225, 0.25);
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.accordion-button {
    font-weight: bold !important;
    font-size: 1.1rem !important;
}

.faq-area {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.accordion-body {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}
