    .category-hero {
        background: #f7f7f7;
        padding: 60px 20px;
        text-align: center;
        margin-bottom: 30px;
        border-bottom: 1px solid #e4e5e7;
    }

    .category-hero h1 {
        font-size: 36px;
        font-weight: 800;
        margin-bottom: 10px;
        color: #404145;
    }

    .category-hero p {
        font-size: 18px;
        color: #62646a;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .back-link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: #3b82f6;
        text-decoration: none;
        font-weight: 600;
        margin-bottom: 20px;
        transition: color 0.3s ease;
    }

    .back-link:hover {
        color: #1e3a8a;
    }

    .services-grid {
        display: grid;
        gap: 20px;
        grid-template-columns: repeat(3, 1fr);
        margin-bottom: 60px;
    }

    .service-card {
        background: white;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        border: 1px solid #e4e5e7;
        cursor: pointer;
        position: relative;
    }

    .service-card:hover {
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    }

    .service-image {
        position: relative;
        height: 180px;
        overflow: hidden;
        background: #f7f7f7;
    }

    .service-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .service-card:hover .service-image img {
        transform: scale(1.05);
    }

    .service-placeholder {
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #1e3a8a, #3b82f6);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 48px;
        color: white;
    }

    .rating-badge {
        position: absolute;
        top: 12px;
        right: 12px;
        background: white;
        padding: 6px 12px;
        border-radius: 20px;
        display: flex;
        align-items: center;
        gap: 4px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        z-index: 10;
        font-weight: 700;
        font-size: 14px;
    }

    .rating-badge .star-icon {
        color: #ffb33e;
        font-size: 16px;
    }

    .rating-badge-value {
        color: #404145;
    }

    .top-rated-badge {
        position: absolute;
        top: 12px;
        left: 12px;
        background: #ffc107;
        color: #404145;
        padding: 4px 12px;
        border-radius: 4px;
        font-size: 12px;
        font-weight: 700;
        display: flex;
        align-items: center;
        gap: 4px;
        z-index: 10;
    }

    .service-body {
        padding: 16px;
    }

    .provider-info {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 10px;
    }

    .provider-avatar {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        object-fit: cover;
        border: 2px solid #e4e5e7;
    }

    .provider-avatar-placeholder {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        background: #f7f7f7;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        color: #62646a;
        border: 2px solid #e4e5e7;
    }

    .provider-name {
        font-size: 14px;
        font-weight: 600;
        color: #62646a;
    }

    .service-title {
        font-size: 15px;
        font-weight: 400;
        color: #404145;
        margin-bottom: 10px;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        min-height: 42px;
    }

    .service-rating {
        display: flex;
        align-items: center;
        gap: 4px;
        margin-bottom: 12px;
    }

    .star-icon {
        color: #ffb33e;
        font-size: 14px;
    }

    .rating-text {
        font-size: 14px;
        font-weight: 700;
        color: #ffb33e;
    }

    .rating-count {
        font-size: 14px;
        color: #95979d;
    }

    .service-footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-top: 12px;
        border-top: 1px solid #e4e5e7;
        gap: 12px;
    }

    .service-actions {
        display: flex;
        gap: 8px;
        flex: 1;
    }

    .action-link {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        padding: 6px 12px;
        border-radius: 4px;
        font-size: 13px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .book-link {
        background: #3b82f6;
        color: white;
    }

    .book-link:hover {
        background: #2563eb;
    }

    .profile-link {
        background: #f7f7f7;
        color: #404145;
        border: 1px solid #e4e5e7;
    }

    .profile-link:hover {
        background: #e4e5e7;
    }

    .action-link i {
        font-size: 16px;
    }

    .service-price {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
    }

    .price-label {
        font-size: 12px;
        color: #95979d;
        margin-bottom: 2px;
    }

    .price-amount {
        font-size: 16px;
        font-weight: 700;
        color: #404145;
    }

    .no-services {
        grid-column: 1/-1;
        text-align: center;
        padding: 80px 20px;
        color: #62646a;
    }

    .no-services i {
        font-size: 64px;
        margin-bottom: 20px;
        color: #dadbdd;
    }

    .no-services h3 {
        font-size: 24px;
        color: #404145;
        margin-bottom: 8px;
    }

    @media (max-width: 1024px) {
        .services-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    @media (max-width: 1000px) {
        .services-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 600px) {
        .container {
            padding: 0 16px;
        }

        .category-hero {
            padding: 40px 16px;
        }

        .category-hero h1 {
            font-size: 28px;
        }

        .services-grid {
            grid-template-columns: 1fr;
            gap: 16px;
        }

        .service-image {
            height: 200px;
        }

        .service-footer {
            flex-direction: column-reverse;
            align-items: stretch;
            gap: 10px;
        }

        .service-actions {
            width: 100%;
        }

        .action-link {
            flex: 1;
            justify-content: center;
        }

        .service-price {
            align-items: flex-start;
        }
    }