    :root {
        --primary: #2a5ee8;
        --primary-dark: #1a4bc4;
        --secondary: #00c9a7;
        --light: #f8fafc;
        --dark: #1e293b;
        --gray: #64748b;
        --light-gray: #e2e8f0;
        --border-radius: 12px;
        --shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
        --transition: all 0.3s ease;
        --section-padding: 80px 0;
    }

    .hero {
        text-align: center;
        height: 50vh; 
        min-height: 600px;
    }

    .hero p {
        margin: 0 auto 30px;
    }

    .filters {
        background: white;
        padding: 25px;
        border-radius: var(--border-radius);
        box-shadow: var(--shadow);
        margin: -50px auto 40px;
        max-width: 1000px;
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }

    .filter-group {
        display: flex;
        flex-direction: column;
        gap: 8px;
        min-width: 200px;
    }

    .filter-group label {
        font-weight: 600;
        color: var(--dark);
    }

    .filter-group select {
        padding: 12px;
        border: 1px solid #ddd;
        border-radius: var(--border-radius);
        font-size: 1rem;
        background: white;
    }

    .featured-section {
        margin-bottom: 5px;
    }

    .section-title {
        text-align: center;
        margin-bottom: 30px;
        color: var(--dark);
        font-size: 2rem;
    }

    .featured-workers {
        display: flex;
        gap: 20px;
        overflow-x: auto;
        padding: 10px 0 20px !important;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .featured-workers::-webkit-scrollbar {
        display: none;
    }

    .featured-card {
        min-width: 280px;
        background: white;
        border-radius: var(--border-radius);
        box-shadow: var(--shadow);
        overflow: hidden;
        transition: var(--transition);
    }

    .featured-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }

    .featured-card img {
        width: 100%;
        height: 180px;
        object-fit: cover;
    }

    .featured-content {
        padding: 20px;
    }

    .featured-content h3 {
        margin-bottom: 10px;
        color: var(--dark);
    }

    .featured-content .specialty {
        color: var(--primary);
        font-weight: 600;
        margin-bottom: 10px;
        display: block;
    }

    .featured-content .location {
        display: flex;
        align-items: center;
        gap: 8px;
        color: #666;
        margin-bottom: 15px;
    }

    .featured-content .experience {
        background: #e8f4fc;
        color: var(--primary);
        padding: 5px 10px;
        border-radius: 20px;
        font-size: 0.9rem;
        display: inline-block;
    }

    .workers-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
        margin-bottom: 70px;
    }

    .worker-card {
        background: white;
        border-radius: var(--border-radius);
        box-shadow: var(--shadow);
        overflow: hidden;
        transition: var(--transition);
        display: flex;
        flex-direction: column;
    }

    .worker-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    }

    .worker-img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .worker-content {
        padding: 20px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }

    .worker-content h3 {
        margin-bottom: 8px;
        color: var(--dark);
    }

    .worker-specialty {
        color: var(--primary);
        font-weight: 600;
        margin-bottom: 15px;
        display: block;
    }

    .worker-details {
        display: none;
    }

    .worker-actions {
        margin-top: auto;
        display: flex;
        gap: 10px;
    }

    .btn {
        padding: 10px 20px;
        border-radius: var(--border-radius);
        font-weight: 600;
        cursor: pointer;
        transition: var(--transition);
        border: none;
    }

    .btn:hover {
        transform: translateY(-2px);
        box-shadow: var(--shadow);
    }

    .btn-workers {
        background: var(--accent);
        color: white;
        border: 2px solid var(--accent);
        padding: 11px 15px;
        font-size: 0.9rem;
    }

    .load-more-container {
        text-align: center;
        margin: 40px;
    }

    .load-more-btn {
        background: #2c3e50;
        color: white;
        font-size: 1rem;
        font-weight: 600;
        border: none;
        border-radius: 50px;
        padding: 16px 30px;
        margin-bottom: 30px;
        cursor: pointer;
        transition: var(--transition);
    }

    .load-more-btn:hover {
        background: #2980b9;
        transform: translateY(-2px);
        box-shadow: var(--shadow);
    }

    .load-more-btn:disabled {
        background: #95a5a6;
        cursor: not-allowed;
        transform: none;
    }

    .loading-spinner {
        display: none;
        text-align: center;
        padding: 20px;
    }

    .loading-spinner i {
        font-size: 2rem;
        color: var(--primary);
    }
    
    .initials-avatar {
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #3a86ff, #8338ec);
        color: white;
        font-weight: bold;
        overflow: hidden;
    }

    .worker-card .initials-avatar {
        width: 100%;
        height: 200px;
        font-size: 36px;
        border-radius: 8px 8px 0 0;
    }

    .featured-card .initials-avatar {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        font-size: 24px;
    }

    .modal-worker-img.initials-avatar {
        width: 150px;
        height: 150px;
        border-radius: 50%;
        font-size: 48px;
        margin: 0 auto;
    }

    .modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.8);
        z-index: 1000;
        align-items: center;
        justify-content: center;
        padding: 20px;
    }

    .modal-content {
        background: white;
        border-radius: var(--border-radius);
        max-width: 500px;
        width: 90%;
        max-height: 80vh;
        overflow-y: auto;
        position: relative;
    }

    .modal-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px;
        background: #2c3e50;
        color: white;
        border-radius: var(--border-radius) var(--border-radius) 0 0;
    }

    .close-modal {
        background: none;
        border: none;
        color: white;
        font-size: 1.5rem;
        cursor: pointer;
    }

    .modal-body {
        padding: 20px;
    }

    .modal-worker-profile {
        text-align: center;
        margin-bottom: 20px;
    }

    .modal-worker-img {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        object-fit: cover;
        margin: 0 auto 15px;
        border: 4px solid var(--primary);
    }

    .modal-worker-name {
        font-size: 1.5rem;
        margin-bottom: 5px;
        color: var(--dark);
    }

    .modal-worker-specialty {
        color: var(--primary);
        font-weight: 600;
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    .modal-details {
        text-align: left;
    }

    .modal-detail-group {
        margin-bottom: 15px;
    }

    .modal-detail-group h4 {
        color: var(--dark);
        margin-bottom: 8px;
        border-bottom: 1px solid #eee;
        padding-bottom: 5px;
    }

    .modal-detail {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 8px;
        color: #555;
    }

    .modal-detail i {
        color: var(--primary);
        width: 16px;
    }

    /* Mobile Styles */
    @media (max-width: 768px) {
        .hero {
            height: auto;
            padding: 60px 20px;
            margin-top: 10px;
        }

        .hero h1 {
            font-size: 2.2rem;
        }

        .filters {
            flex-direction: row;
            flex-wrap: nowrap;
            margin: -30px 0 40px 0;
            overflow-x: auto;
            gap: 5px;
            padding: 10px;
            justify-content: flex-start;
            width: 100%;
            border-radius: 10px;
            max-width: none;
            -ms-overflow-style: none;
            scrollbar-width: none;
        }

        .filters::-webkit-scrollbar {
            display: none;
        }

        .filter-group {
            min-width: 140px;
            flex: 1;
            max-width: 160px;
        }

        .filter-group label {
            font-size: 0.9rem;
            white-space: nowrap;
        }

        .filter-group select {
            padding: 10px 8px;
            font-size: 0.9rem;
        }

        .featured-card {
            min-width: 85vw;
        }

        .workers-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }

        .worker-img {
            height: 140px;
        }

        .worker-content {
            padding: 15px;
        }

        .worker-content h3 {
            font-size: 1rem;
            margin-bottom: 5px;
        }

        .worker-specialty {
            font-size: 0.85rem;
            margin-bottom: 10px;
        }

        .section-title {
            font-size: 1.2rem;
        }

        .worker-actions {
            margin-top: auto;
            gap: 0;
        }

        .btn-workers {
            padding: 8px 12px;
            font-size: 0.8rem;
            width: 100%;
        }

        .modal-content {
            width: 95%;
            max-height: 85vh;
        }
        
        .modal-body {
            padding: 15px;
        }
        
        .modal-worker-img {
            width: 100px;
            height: 100px;
        }
        
        .modal-worker-name {
            font-size: 1.3rem;
        }
    }

    @media (max-width: 480px) {
        .dashboard-filters {
            padding: 0 8px;
        }
        
        .workers-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
        }

        .worker-img {
            height: 120px;
        }

        .worker-content {
            padding: 12px;
        }

        .worker-content h3 {
            font-size: 0.95rem;
        }

        .worker-specialty {
            font-size: 0.8rem;
        }

        .hero h1 {
            font-size: 1.8rem;
        }

        .featured-section {
            padding: 40px 0;
        }
    }

    @media (max-width: 360px) {
        .filters {
            gap: 12px;
            padding: 15px;
        }

        .filter-group {
            min-width: 130px;
            max-width: 150px;
        }

        .filter-group label {
            font-size: 0.85rem;
        }

        .filter-group select {
            padding: 8px 6px;
            font-size: 0.85rem;
        }
    }