        /* Main Services Section */
        .main-services {
            padding: var(--space-3xl) 0;
            background-color: var(--off-white);
        }

        .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto var(--space-3xl);
        }

        .subheading {
            display: inline-block;
            font-size: var(--text-sm);
            font-weight: 600;
            color: var(--emerald);
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: var(--space-md);
            padding-bottom: var(--space-xs);
            position: relative;
        }

        .subheading::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 2px;
            background-color: var(--emerald);
        }

        .section-header h2 {
            margin-bottom: var(--space-lg);
            color: var(--deep-blue);
        }

        .section-header p {
            font-size: var(--text-xl);
            color: var(--gray-dark);
            line-height: 1.8;
        }

        /* Services Tabs System */
        .services-tabs {
            background: white;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-soft);
            overflow: hidden;
            border: 1px solid rgba(15, 61, 46, 0.1);
        }

        .tab-header {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            border-bottom: 1px solid var(--gray-light);
            background: var(--beige);
        }

        .tab-button {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: var(--space-sm);
            padding: var(--space-lg) var(--space-xl);
            background: transparent;
            border: none;
            color: var(--gray-dark);
            font-weight: 600;
            font-size: var(--text-base);
            cursor: pointer;
            transition: var(--transition-base);
            position: relative;
        }

        .tab-button:hover {
            background: rgba(63, 167, 150, 0.05);
            color: var(--primary-teal);
        }

        .tab-button.active {
            color: var(--primary-teal);
            background: white;
        }

        .tab-button.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--emerald);
        }

        .tab-button i {
            font-size: var(--text-lg);
            transition: var(--transition-base);
        }

        .tab-button.active i,
        .tab-button:hover i {
            color: var(--emerald);
        }

        .tab-content {
            padding: var(--space-3xl);
        }

        .tab-pane {
            display: none;
            animation: fadeIn 0.5s ease;
        }

        .tab-pane.active {
            display: block;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        /* Service Detail Content */
        .service-detail-header {
            display: grid;
            grid-template-columns: auto 1fr;
            gap: var(--space-xl);
            align-items: center;
            margin-bottom: var(--space-2xl);
        }

        .service-icon-large {
            width: 100px;
            height: 100px;
            background: rgba(63, 167, 150, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--emerald);
            font-size: var(--text-3xl);
        }

        .service-detail-header h3 {
            font-size: var(--text-3xl);
            margin-bottom: var(--space-md);
            color: var(--deep-blue);
        }

        .service-description {
            font-size: var(--text-lg);
            color: var(--gray-dark);
            line-height: 1.8;
            max-width: 600px;
        }

        .service-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: var(--space-xl);
        }

        .service-feature {
            padding: var(--space-xl);
            background: var(--beige);
            border-radius: var(--border-radius-sm);
            border: 1px solid rgba(15, 61, 46, 0.05);
            transition: var(--transition-base);
        }

        .service-feature:hover {
            transform: translateY(-5px);
            background: white;
            box-shadow: var(--shadow-soft);
            border-color: rgba(63, 167, 150, 0.1);
        }

        .service-feature h4 {
            display: flex;
            align-items: center;
            gap: var(--space-sm);
            font-size: var(--text-lg);
            margin-bottom: var(--space-md);
            color: var(--primary-teal);
        }

        .service-feature h4 i {
            color: var(--emerald);
            font-size: var(--text-xl);
        }

        .service-feature p {
            color: var(--gray-dark);
            line-height: 1.8;
            margin: 0;
        }

        /* CTA Section */
        .service-cta {
            padding: var(--space-3xl) 0;
            background: linear-gradient(135deg, var(--primary-teal) 0%, var(--teal-light) 100%);
            color: white;
        }

        .cta-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .cta-text h2 {
            color: white;
            margin-bottom: var(--space-lg);
        }

        .cta-text p {
            font-size: var(--text-xl);
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: var(--space-2xl);
            line-height: 1.8;
        }

        .cta-buttons {
            display: flex;
            gap: var(--space-lg);
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta-button {
            display: inline-flex;
            align-items: center;
            gap: var(--space-sm);
            padding: var(--space-md) var(--space-xl);
            border-radius: var(--border-radius-sm);
            font-weight: 600;
            font-size: var(--text-lg);
            text-decoration: none;
            transition: var(--transition-base);
        }

        .cta-button.primary {
            background: white;
            color: var(--primary-teal);
        }

        .cta-button.primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .cta-button.secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .cta-button.secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px);
        }

        /* Regulatory Note */
        .regulatory-note {
            text-align: center;
            margin-top: var(--space-3xl);
            padding-top: var(--space-xl);
            border-top: 1px solid rgba(15, 61, 46, 0.1);
            color: var(--gray-mid);
            font-size: var(--text-sm);
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            opacity: 0;
            animation: fadeInUp 0.8s ease-out forwards;
        }

        .fade-in-delay-1 {
            animation-delay: 0.2s;
        }

        .fade-in-delay-2 {
            animation-delay: 0.4s;
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            :root {
                --text-5xl: 2.5rem;
                --text-4xl: 2rem;
                --space-3xl: 4rem;
            }
            
            .service-detail-header {
                grid-template-columns: 1fr;
                text-align: center;
            }
            
            .service-icon-large {
                margin: 0 auto;
            }
        }

        @media (max-width: 992px) {
            .services-hero {
                min-height: auto;
                padding: var(--space-2xl) 0;
            }
            
            .services-hero h1 {
                font-size: var(--text-4xl);
            }
            
            .hero-content {
                grid-template-columns: 1fr;
            }
            
            .hero-glass-card {
                order: -1;
                margin-bottom: var(--space-xl);
            }
            
            .tab-header {
                grid-template-columns: 1fr;
            }
            
            .service-features {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            :root {
                --text-5xl: 2rem;
                --text-4xl: 1.75rem;
                --space-3xl: 3rem;
                --space-2xl: 2.5rem;
            }
            
            h1 {
                font-size: 2rem;
            }
            
            h2 {
                font-size: 1.75rem;
            }
            
            .tab-content {
                padding: var(--space-xl);
            }
            
            .service-features {
                grid-template-columns: 1fr;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .cta-button {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }
        }

        @media (max-width: 576px) {
            :root {
                --text-lg: 1rem;
                --text-xl: 1.125rem;
                --space-lg: 1.5rem;
            }
            
            .services-hero h1 {
                font-size: var(--text-3xl);
            }
            
            .hero-description {
                font-size: var(--text-lg);
            }
            
            .hero-cta-buttons {
                flex-direction: column;
            }
            
            .hero-cta-primary, .hero-cta-secondary {
                width: 100%;
                justify-content: center;
            }
            
            .trust-indicators {
                grid-template-columns: 1fr;
            }
        }