/* Pricing Card Styles */
.pricing-section .pricing-card {
    border: 2px solid #0a102f;
    border-radius: 10px;
    padding: 30px;
    transition: all 0.4s;
}

.pricing-section .pricing-card__plan {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #0a102f;
}

.pricing-section .pricing-card__price-block {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    font-size: 1.7rem;
    font-weight: 900;
    color: #0a102f;
    margin: 0 0 8px 0;
    line-height: 1;
}

.pricing-section .pricing-card__price-block .price-currency,
.pricing-section .pricing-card__price-block .price-value {
    font-size: 1.7rem;
    font-weight: 900;
    color: #0a102f;
    line-height: 1;
}

.pricing-section .pricing-card__price-block .price-value {
    margin: 0 2px 0 2px;
}

.pricing-section .pricing-card__price-block .price-period {
    font-size: 1rem;
    font-weight: 400;
    color: #0a102f;
    margin-left: 2px;
    line-height: 1.2;
}

.pricing-section .pricing-card__head {
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.pricing-section .pricing-card__body {
    margin-top: 0;
    padding-top: 0;
    row-gap: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.pricing-section .pricing-card__list {
    font-size: 0.89rem;
    margin: 8px 0 10px 0;
    padding: 0;
    list-style: none;
    color: #0a102f;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 10px;
    padding-bottom: 10px;
}

.pricing-section .pricing-card__list li {
    margin-bottom: 0;
    font-weight: 400;
    color: #0a102f;
    padding: 0 0 0 14px;
    background: none;
    text-align: left;
    font-size: 0.89rem;
}

.pricing-section .pricing-card__list li::before {
    font-size: 0.95em;
    color: #0a102f;
}

.pricing-section .pricing-card__button {
    margin-top: 4px;
}

/* Pricing Cards gap */
.pricing-section .pricing-cards-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 50px;
    justify-content: center;
}

.pricing-section .pricing-card {
    flex: 0 0 320px;
    /* Each card will be 320px wide */
    width: 250px;
    max-width: 100%;
    min-width: 220px;
    margin-bottom: 0;
}

@media (max-width: 1200px) {
    .pricing-section .pricing-cards-row {
        flex-wrap: wrap;
    }

    .pricing-section .pricing-card {
        max-width: 100%;
        min-width: 0;
        margin-bottom: 16px;
    }
}

/* Remove Bootstrap grid classes from pricing cards for consistency */
.pricing-section .col-lg-3,
.pricing-section .col-md-6,
.pricing-section .col-sm-12 {
    flex: unset;
    max-width: unset;
    width: unset;
    padding: 0;
}

@media (max-width: 1100px) {
    .pricing-section .pricing-card {
        width: 130px;
    }
}

@media (max-width: 992px) {
    .pricing-2_main_pricing-section .row {
        flex-wrap: wrap;
    }

    .pricing-section .pricing-card {
        width: 45%;
        min-width: 120px;
        margin-bottom: 12px;
    }
}

@media (max-width: 700px) {
    .pricing-section .pricing-card {
        width: 100%;
        min-width: 0;
    }

    .pricing-2_main_pricing-section .row {
        flex-direction: column;
        align-items: center;
    }
}