:root {
            --color-primary: #7357eb;
            --color-primary-light: #8f78f0;
            --color-primary-lighter: #f0ebff;
            --color-primary-dark: #5a41c9;
            --color-secondary: #4ade80;
            --color-background: #f9fafb;
            --color-card: #ffffff;
            --color-text: #374151;
            --color-text-light: #6b7280;
            --color-text-dark: #1f2937;
            --color-border: #e5e7eb;
            --color-muted: #f3f4f6;
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            --radius-sm: 0.25rem;
            --radius-md: 0.375rem;
            --radius-lg: 0.5rem;
            --radius-xl: 0.75rem;
            --radius-2xl: 1rem;
            --radius-full: 9999px;
            --transition: all 0.3s ease;
        }

        /* Reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.5;
            color: var(--color-text);
            background-color: var(--color-background);
        }

        /* Page Layout */
        .specialties-page {
            background-color: var(--color-background);
            min-height: 100vh;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }

        /* Hero Section */
        .hero {
            background-color: var(--color-primary);
            padding: 6rem 1.5rem 5rem;
            position: relative;
            overflow: hidden;
        }

        .hero__background {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 0;
        }

        .hero__shape {
            position: absolute;
            border-radius: var(--radius-full);
            opacity: 0.1;
            background-color: white;
        }

        .hero__shape--1 {
            width: 300px;
            height: 300px;
            top: -100px;
            right: -100px;
        }

        .hero__shape--2 {
            width: 200px;
            height: 200px;
            bottom: -50px;
            left: -50px;
        }

        .hero__shape--3 {
            width: 150px;
            height: 150px;
            top: 50%;
            left: 30%;
            transform: translateY(-50%);
        }

        .hero__container {
            max-width: 1280px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .hero__content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .hero__title {
            font-size: 3.5rem;
            font-weight: 800;
            color: white;
            margin-bottom: 1.5rem;
            letter-spacing: -0.025em;
            line-height: 1.2;
        }

        .hero__subtitle {
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 2.5rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Search Bar */
        .search {
            position: relative;
            max-width: 500px;
            margin: 0 auto;
        }

        .search__input {
            width: 100%;
            padding: 1.25rem 1.5rem;
            padding-right: 3rem;
            border-radius: var(--radius-full);
            border: none;
            background-color: rgba(255, 255, 255, 0.15);
            color: white;
            font-size: 1.125rem;
            backdrop-filter: blur(10px);
            transition: var(--transition);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        .search__input::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }

        .search__input:focus {
            outline: none;
            background-color: rgba(255, 255, 255, 0.25);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15), 0 0 0 3px rgba(255, 255, 255, 0.2);
        }

        .search__icon {
            position: absolute;
            right: 1.5rem;
            top: 50%;
            transform: translateY(-50%);
            color: white;
            opacity: 0.7;
        }

        /* Section Styles */
        .section-title {
            font-size: 2.25rem;
            font-weight: 800;
            color: var(--color-text-dark);
            margin-bottom: 1rem;
            text-align: center;
        }

        .section-description {
            font-size: 1.125rem;
            color: var(--color-text);
            line-height: 1.6;
            margin-bottom: 3rem;
            text-align: center;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Why Outsource Section */
        .why-outsource {
            padding: 5rem 0;
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
        }

        @media (min-width: 1024px) {
            .why-outsource {
                grid-template-columns: 3fr 2fr;
                align-items: center;
            }
        }

        .why-outsource__content {
            max-width: 100%;
        }

        .why-outsource__image {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .rounded-image {
            width: 100%;
            max-width: 400px;
            height: auto;
            border-radius: var(--radius-xl);
            box-shadow: var(--shadow-xl);
            object-fit: cover;
        }

        /* Benefits */
        .benefits {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 1.5rem;
            margin-top: 2rem;
        }

        @media (min-width: 640px) {
            .benefits {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .benefit {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 1.5rem;
            background-color: var(--color-card);
            border-radius: var(--radius-lg);
            transition: var(--transition);
        }

        .benefit:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .benefit__icon {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            border-radius: var(--radius-full);
            background-color: var(--color-primary-lighter);
            color: var(--color-primary);
            flex-shrink: 0;
        }

        .benefit__text h3 {
            font-size: 1.125rem;
            font-weight: 700;
            color: var(--color-text-dark);
            margin-bottom: 0.5rem;
        }

        .benefit__text p {
            font-size: 0.9375rem;
            color: var(--color-text);
            line-height: 1.5;
        }

        /* Specialties Section */
        .specialties-section {
            padding: 3rem 0 5rem;
        }

        /* No Results */
        .no-results {
            text-align: center;
            padding: 3rem 1rem;
            background-color: var(--color-muted);
            border-radius: var(--radius-xl);
            margin: 2rem 0;
            display: none;
        }

        .no-results__icon {
            color: var(--color-text-light);
            margin-bottom: 1rem;
        }

        .no-results__title {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--color-text-dark);
            margin-bottom: 0.5rem;
        }

        .no-results__text {
            color: var(--color-text-light);
        }

        /* Specialties Grid */
        .specialties-grid {
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 2rem;
            margin-bottom: 3rem;
        }

        @media (min-width: 640px) {
            .specialties-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .specialties-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        /* Specialty Card */
        .specialty-card {
            background-color: var(--color-card);
            border-radius: var(--radius-xl);
            overflow: hidden;
            transition: var(--transition);
            height: 100%;
            text-decoration: none;
            color: inherit;
            position: relative;
            z-index: 1;
        }

        .specialty-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--color-primary-lighter) 0%, transparent 100%);
            opacity: 0;
            transition: var(--transition);
            z-index: -1;
        }

        .specialty-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-xl);
        }

        .specialty-card:hover::before {
            opacity: 0.5;
        }

        .specialty-card__content {
            padding: 2rem;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .specialty-card__icon-wrapper {
            width: 64px;
            height: 64px;
            border-radius: var(--radius-full);
            background-color: var(--color-primary-lighter);
            color: var(--color-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            transition: var(--transition);
        }

        .specialty-card:hover .specialty-card__icon-wrapper {
            background-color: var(--color-primary);
            color: white;
            transform: scale(1.1);
        }

        .specialty-card__icon {
            font-size: 1.75rem;
        }

        .specialty-card__title {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--color-text-dark);
            margin-bottom: 0.75rem;
            line-height: 1.4;
        }

        .specialty-card__description {
            color: var(--color-text);
            font-size: 0.9375rem;
            line-height: 1.6;
            margin-bottom: 1.5rem;
            flex-grow: 1;
        }

        .specialty-card__button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.75rem 1.25rem;
            background-color: var(--color-primary);
            color: white;
            font-weight: 600;
            border-radius: var(--radius-lg);
            margin-top: auto;
            position: relative;
            overflow: hidden;
            transition: var(--transition);
        }

        .specialty-card:hover .specialty-card__button {
            background-color: var(--color-primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(115, 87, 235, 0.3);
        }

        /* Button Shine Effect */
        .specialty-card__button-shine,
        .button-shine {
            position: absolute;
            top: 0;
            left: -100%;
            width: 50%;
            height: 100%;
            background: linear-gradient(
                to right,
                rgba(255, 255, 255, 0) 0%,
                rgba(255, 255, 255, 0.3) 50%,
                rgba(255, 255, 255, 0) 100%
            );
            transform: skewX(-25deg);
            animation: shine 3s infinite;
        }

        @keyframes shine {
            0% {
                left: -100%;
            }
            20% {
                left: 100%;
            }
            100% {
                left: 100%;
            }
        }

        /* View More Button */
        .view-more-container {
            display: flex;
            justify-content: center;
            margin-top: 2rem;
        }

        .view-more-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 1rem 2rem;
            background-color: var(--color-primary);
            color: white;
            font-weight: 600;
            font-size: 1.125rem;
            border-radius: var(--radius-lg);
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: var(--transition);
            box-shadow: 0 4px 15px rgba(115, 87, 235, 0.3);
        }

        .view-more-button:hover {
            background-color: var(--color-primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(115, 87, 235, 0.4);
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #f8f9ff 0%, #f0ebff 100%);
            border-radius: var(--radius-2xl);
            padding: 4rem 2rem;
            margin: 3rem 0 5rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%237357eb' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
            opacity: 0.5;
        }

        .cta-section__content {
            position: relative;
            z-index: 1;
            max-width: 700px;
            margin: 0 auto;
        }

        .cta-section__title {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--color-text-dark);
            margin-bottom: 1.25rem;
            line-height: 1.2;
        }

        .cta-section__text {
            font-size: 1.25rem;
            color: var(--color-text);
            line-height: 1.6;
            margin-bottom: 2.5rem;
        }

        .cta-section__button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 1rem 2.5rem;
            background-color: var(--color-primary);
            color: white;
            font-weight: 600;
            font-size: 1.125rem;
            border-radius: var(--radius-lg);
            text-decoration: none;
            position: relative;
            overflow: hidden;
            transition: var(--transition);
            box-shadow: 0 4px 15px rgba(115, 87, 235, 0.3);
        }

        .cta-section__button:hover {
            background-color: var(--color-primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(115, 87, 235, 0.4);
        }

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .specialty-card {
            animation: fadeIn 0.6s ease-out forwards;
        }

        .specialty-card:nth-child(2) { animation-delay: 0.1s; }
        .specialty-card:nth-child(3) { animation-delay: 0.2s; }
        .specialty-card:nth-child(4) { animation-delay: 0.3s; }
        .specialty-card:nth-child(5) { animation-delay: 0.4s; }
        .specialty-card:nth-child(6) { animation-delay: 0.5s; }
