.pricing-section {
    padding: 60px 0;
    font-family: inherit;
}

.prc-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.pricing-box .feature-list {
    height: 330px !important;
    overflow-y: scroll !important;
}

.tab-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 45px;
}

.tab-button {
    background: transparent;
    color: #000;
    border: 1px solid #555555;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-button.active {
    background-color: #b6e403;
    color: #000000;
    border-color: #b6e403;
}

.tab-panel {
    display: none;
    width: 100%;
    animation: fadeIn 0.4s ease-in-out;
}

.tab-panel.active {
    display: block;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}