.pricing-cards{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 1140px;
    padding-bottom: 20px;
}

.plan-card {
    border-bottom: 16px solid var(--orange);
    width: 360px;
    min-height: 687px;
    background-color: white;
    filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.25));
}

.plan-card .card-content {
    padding: 36px 20px;
}

.plan-card .card-content .card-header {
    margin-bottom: 48px;
}

.plan-card .card-content .signup-link {
    background-color: var(--blue);
    color: white;
    font-family: 'Raleway-Medium';
    font-size: 21px;
    padding: 9px 0;
    display: block;
    width: 100%;
    text-align: center;
    margin: 32px 0;
    text-decoration: none;
    transition: 0.3s ease;
    border: 1.5px solid var(--blue);
}

.plan-card .card-content .signup-link:hover{
    background-color: transparent;
    color: var(--orange);
    border: 1.5px solid var(--orange);
}
.plan-card .card-content .signup-link:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(253, 145, 75, 0.5);
}

#highlighted-plan-card {
    min-height: 749px;
    margin: -180px 32px 0 32px;
}

#highlighted-plan-card #popular-banner {
    background-color: var(--orange);
    padding: 15px 0;
    text-align: center;
}

.plan-card h2 {
    font-family: 'Raleway-Bold';
    font-size: 32px;
}

.plan-card h4 {
    font-family: 'Raleway-Bold';
    font-size: 24px;
    margin-bottom: 0;
}

.plan-card .monthly-rate {
    font-family: 'Raleway-Bold';
    font-size: 45px;
    margin-bottom: 32px;
}

.plan-card .monthly-rate span {
    font-family: 'Raleway-Bold';
    color: var(--blue);
    font-size: 24px;
}

.plan-card p {
    font-family: 'Raleway-Regular';
    font-size: 16px;
    margin-bottom: 12px;
}

.plan-card .feature-list .feature-list-header {
    font-family: 'Raleway-Bold';
    margin-bottom: 16px;
}

.plan-card .form-floating {
    font-family: 'Raleway-Medium';
    margin-bottom: 32px;
}

.plan-card .accordion-item, 
.plan-card .accordion-header, 
.plan-card .accordion-button, 
.plan-card .accordion-button::after, 
.plan-card .accordion-button:focus {
    padding: 0;
    border: none;
    outline: none;
    background-color: transparent;
    box-shadow: none;
}

.plan-card .accordion-body {
    padding: 0;
}

.plan-card .accordion-button::after {
    display: none;
}

.tooltip .tooltip-inner {
    background-color: var(--blue) !important; 
    color: white !important; 
}

@media (max-width: 1140px) {
    #highlighted-plan-card {
        min-height: 749px;
        margin: -60px 32px 0 32px;
    }
}

@media (max-width: 900px) {
    .pricing-cards{
        padding-bottom: 0;
    }
}

@media (max-width: 600px) {
    .pricing-cards{
        width: 100%;
        flex-direction: column;
        min-height: 1631px;
        margin: 0;
        padding: 32px 0;
        justify-content: center;
        align-items: center;
    }

    #highlighted-plan-card {
        margin: 0;
    }

    .plan-card {
        margin: 32px 16px;
        min-height: 400px!important;
    }

    .accordion-button::after {
        display: block!important;
    }
}

.signup-link.disabled{
    cursor: not-allowed;
    pointer-events: none;
}

@media (min-width: 1140px) {
    #highlighted-plan-card.logged-in {
        margin: -60px 32px 0 32px!important;
    }
}