/* Main Layout */
    .main-content {
        background: #f9fafc;
        min-height: 100vh;
        padding: 40px 0;
    }

    .content-wrapper {
        width: 1320px;
        margin: 0 auto;
        padding: 0;
    }

    .page-title {
        font-size: 32px;
        font-weight: 700;
        color: #353849;
        margin-bottom: 40px;
    }

    /* Progress Stepper */
    .progress-stepper {
        background: white;
        border-radius: 20px;
        padding: 30px 40px;
        margin-bottom: 40px;
        display: flex;
        justify-content: center;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    }

    .stepper-wrapper {
        display: flex;
        align-items: center;
        gap: 40px;
        width: 100%;
        max-width: 600px;
    }

    .step {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 0;
        position: relative;
        transition: all 0.3s ease;
    }

    .step-badge {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        font-weight: 700;
        position: relative;
        transition: all 0.3s ease;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    }

    .step.active .step-badge {
        background: linear-gradient(135deg, #00a196 0%, #00c9b8 100%);
        color: white;
        box-shadow: 0 4px 12px rgba(0, 161, 150, 0.3);
        transform: scale(1.1);
    }

    .step.inactive .step-badge {
        background: white;
        color: #b1b2bd;
        border: 2px solid #e6e6eb;
    }
    
    .step.completed .step-badge {
        background: #e1f1ea;
        color: #00a196;
        border: 2px solid #00a196;
    }

    .step-title {
        font-size: 15px;
        font-weight: 500;
        letter-spacing: -0.01em;
        white-space: nowrap;
    }

    .step.active .step-title {
        color: #00a196;
        font-weight: 600;
    }

    .step.inactive .step-title {
        color: #737586;
    }
    
    .step.completed .step-title {
        color: #00a196;
        font-weight: 500;
    }
    
    /* Hover effects for steps */
    .step:hover .step-badge {
        transform: scale(1.05);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    }
    
    .step.active:hover .step-badge {
        transform: scale(1.15);
    }

    .step-divider {
        flex: 1;
        height: 2px;
        background: #eaeaee;
        margin: 0 -20px;
        position: relative;
    }
    
    .step-divider::after {
        content: '';
        position: absolute;
        top: -4px;
        left: 0;
        right: 0;
        height: 10px;
        background: linear-gradient(to right, #00a196 0%, #eaeaee 50%);
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .step.active + .step-divider::after {
        opacity: 0.3;
    }

    /* Content Layout */
    .content-layout {
        display: flex;
        gap: 40px;
    }

    /* Sidebar */
    .sidebar {
        width: 300px;
        flex-shrink: 0;
        position: sticky;
        top: 20px;
        height: fit-content;
    }

    .sidebar-section {
        margin-bottom: 40px;
    }

    /* Filter Dropdown */
    .filter-group {
        margin-bottom: 20px;
    }

    .filter-label {
        font-size: 12px;
        color: #737586;
        margin-bottom: 5px;
    }

    .filter-select-wrapper {
        position: relative;
        background: white;
        border: 1px solid #e6e6eb;
        border-radius: 8px;
        padding: 12px 16px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .filter-select-wrapper:hover {
        border-color: #00a196;
    }

    .filter-select-text {
        font-size: 16px;
        color: #353849;
    }

    .filter-select-icon {
        width: 24px;
        height: 24px;
        color: #737586;
    }

    /* Category List */
    .category-list {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .category-item {
        background: white;
        border-radius: 12px;
        padding: 16px;
        font-size: 16px;
        color: #353849;
        cursor: pointer;
        transition: all 0.3s ease;
        border: 2px solid transparent;
    }

    .category-item:hover {
        border-color: #e1f1ea;
    }

    .category-item.active {
        background: #e1f1ea;
        color: #00a196;
        font-weight: 600;
    }

    /* Main Content Area */
    .consultants-area {
        flex: 1;
    }

    /* Consultants Grid */
    .consultants-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        margin-bottom: 40px;
    }

    .consultant-card {
        background: white;
        border-radius: 20px;
        padding: 4px;
        height: 360px;
        display: flex;
        flex-direction: column;
        transition: all 0.3s ease;
        cursor: pointer;
        position: relative;
    }

    .consultant-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    }

    .consultant-card.selected {
        background: #e1f1ea;
    }

    .consultant-image {
        width: 100%;
        height: 222px;
        background: #d9d9d9;
        border-radius: 20px;
        overflow: hidden;
        position: relative;
    }

    .consultant-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .consultant-selection {
        padding: 20px 8px 40px 8px;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .radio-button {
        width: 20px;
        height: 20px;
        border: 2px solid #e6e6eb;
        border-radius: 50%;
        position: relative;
        flex-shrink: 0;
        transition: all 0.3s ease;
    }

    .consultant-card.selected .radio-button {
        border-color: #00a196;
        background: #00a196;
    }

    .consultant-card.selected .radio-button::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 8px;
        height: 8px;
        background: white;
        border-radius: 50%;
    }

    .consultant-info {
        flex: 1;
    }

    .consultant-name {
        font-size: 16px;
        font-weight: 400;
        color: #353849;
        margin-bottom: 2px;
    }

    .consultant-title {
        font-size: 14px;
        color: #737586;
        margin-bottom: 4px;
    }

    .consultant-price {
        font-size: 16px;
        font-weight: 600;
        color: #353849;
        margin-bottom: 15px;
    }

    .consultant-rating {
        position: absolute;
        top: 8px;
        right: 8px;
        background: rgba(249, 250, 252, 0.6);
        border-radius: 8px;
        padding: 2px 8px;
        display: flex;
        align-items: center;
        gap: 4px;
        font-size: 12px;
    }

    .rating-star {
        color: #ffd87e;
    }

    .rating-value {
        color: #353849;
        font-weight: 500;
    }

    .rating-count {
        color: #5d6074;
    }

    /* Bottom Action */
    .bottom-action {
        background: white;
        padding: 20px 0;
        position: sticky;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 10;
    }

    .action-container {
        max-width: 1320px;
        margin: 0 auto;
        padding: 0 20px;
        display: flex;
        justify-content: flex-end;
    }

    .continue-btn {
        background: #00a196;
        color: white;
        padding: 8px 16px;
        border-radius: 8px;
        border: none;
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .continue-btn:hover {
        background: #00897b;
        transform: translateY(-2px);
    }

    /* Responsive Design */
    @media (max-width: 1200px) {
        .consultants-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    @media (max-width: 992px) {
        .content-layout {
            flex-direction: column;
        }

        .sidebar {
            width: 100%;
        }

        .category-list {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
        }

        .consultants-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 768px) {
        .page-title {
            font-size: 24px;
        }

        .progress-stepper {
            padding: 20px;
        }
        
        .stepper-wrapper {
            gap: 20px;
        }

        .step-title {
            display: none;
        }

        .step-divider {
            margin: 0 -10px;
        }

        .category-list {
            grid-template-columns: repeat(2, 1fr);
        }

        .consultants-grid {
            grid-template-columns: 1fr;
        }

        .consultant-card {
            max-width: 400px;
            margin: 0 auto;
        }
    }