.agent-selection-step .plan-card {
    margin: auto;
    border: 1px solid #DCDCDC;
    border-radius: 12px;
    background: white;
    overflow: hidden;
}

.agent-selection-step .plan-header {
    padding: 20px 10px 0px 10px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.agent-selection-step .plan-title {
    display: flex;
    align-items: center;
}

.agent-selection-step .plan-icon {
    width: 24px;
    height: 24px;
}

.agent-selection-step .recommended-badge {
    background: linear-gradient(#F857A6, #FF5858);
    color: white;
    padding: 3.5px 4px;
    border-radius: 20px;
    font-size: 10px;
    line-height: 8.5px;
    font-weight: 700;
}

.agent-selection-step .checkmark-badge {
    width: 28px;
    height: 28px;
    background: #2AABEE;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.agent-selection-step .checkmark-badge i {
    color: white;
    font-size: 16px;
}

.agent-selection-step .price {
    font-size: 16px;
    font-weight: 700;
    color: black;
}

.agent-selection-step .price-period {
    font-size: 12px;
    color: black;
    font-weight: 500;
}

.agent-selection-step .features-list {
    padding: 0px 10px 0px 10px;
    list-style: none;
    margin-bottom: 20px;
}

.agent-selection-step .features-list li {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 6px;
    font-size: 12px;
    font-weight: 500;
    color: #16242C;
    line-height: 18px;
}

.agent-selection-step .address-text {
    font-size: 12px;
    font-weight: 600;
    color: #16242C;
    margin: 0;
}

.agent-selection-step .services-section {
    margin: 0;
    padding: 0;
}

.agent-selection-step .services-title {
    font-size: 18px;
    font-weight: 700;
    color: #16242C;
    text-align: left;
    margin-bottom: 20px;
}

.agent-selection-step .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 2fr);
    gap: 4px 10px;
}

.agent-selection-step .service-item {
    text-align: left;
    padding: 7px 7px 10px 7px;
    border-radius: 8px;
    border: none;
    min-height: 88px;
}

.agent-selection-step .service-icon {
    border-radius: 8px;
    margin: 0px 0px 9px 0px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.agent-selection-step .service-icon img {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
}

.agent-selection-step .service-icon-text {
    font-size: 9px;
    font-weight: 700;
    color: #16242C;
}

.agent-selection-step .privacy {
    background: #F9F5FF;
}

.agent-selection-step .presence {
    background: #EDFCF2;
    color: white;
}

.agent-selection-step .location {
    background: #FEF6EE;
}

.agent-selection-step .mail {
    background: #FEF3F2;
;
}

.agent-selection-step .service-text {
    font-size: 8px;
    color: #1A1919;
    font-weight: 400;
}

.agent-selection-step .decline-link {
    text-align: center;
    margin-top: 16px;
}

.agent-selection-step .decline-link a, .agent-selection-step .decline-link button {
    color: #2AABEE;
    font-size: 12px;
    font-weight: 400;
}

.agent-selection-step .decline-link button {
    border: unset;
    font-size: 12px;
    font-weight: 400;
    background: transparent;
    text-decoration: underline;
}

.agent-selection-step .decline-link a:hover {
    text-decoration: underline;
}

@media (max-width: 767.98px) {
    .agent-selection-step .services-grid {
        grid-template-columns: repeat(1, 4fr);
        gap: 4px;
    }

    .agent-selection-step .service-item {
        min-height: auto;
    }

    .agent-selection-step .decline-link {
        padding-top: 0px;
    }

    .agent-selection-step .services-title {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .agent-selection-step .features-list {
        margin-bottom: 15px;
    }
}