#plansModal .plan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

#plansModal .modal-header {
    background-color: #F4F5F9;
    padding: 20px;
}

#plansModal h2.modal-title {
    font-size: 24px;
    font-weight: 400;
    color: #001E54;
}

#plansModal p.subtitle {
    color: #979EAC;
    font-size: 15px;
    font-weight: 300;
}
#plansModal .modal-body {
    padding: 40px;
    padding-top: 20px !important;
}
#plansModal .plan-card {
    border: 1px solid #001E54;
    border-radius: 10px;
    padding: 40px;
    padding-top: 30px !important;
    text-align: left;
    background: #FFFFFF;
    transition: transform 0.2s ease;

    display: flex;
    flex-direction: column;
    height: 100%;
}

#plansModal .plan-card:hover {
    transform: translateY(-4px);
}

#plansModal .plan-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}
#plansModal .plan-icon img {
    width: 80px;
    height: 80px;
}

#plansModal .plan-name {
    font-size: 24px;
    font-weight: 600;
    color: #001E54;
}

#plansModal .plan-price {
    font-size: 20px;
    color: #F67C56;
    margin-bottom: 20px;
}
#plansModal .plan-price span {
    font-size: 10px;
}

#plansModal .plan-description p {
    font-size: 18px;
    font-weight: 300;
    line-height: 24px;
    color: #001E54;
}

#plansModal .plan-description p.subtitle {
    font-size: 14px;
    font-weight: 300;
}

#plansModal .plan-description ul,
#plansModal .plan-description ul li {
    font-size: 13px;
    font-weight: 300;
    color: #001E54;
    margin-bottom: 10px;
}

#plansModal .plan-description ul > li:last-child {
    margin-bottom: 20px;
}

#plansModal .plan-description ul li strong {
    font-weight: 600;
}
#plansModal .btn-primary {
    border: 0px;
    background: #00B0BA;
    font-size: 16px;
    padding: 8px 0px;
    margin-top: auto;
}

#plansModal .btn-close {
    margin-right: 20px;
}

#plansModal .legal-text {
    font-size: 12px;
    color: #979EAC;
    font-weight: 300;
}
#plansModal .legal-text strong {
    font-weight: 600;
}
