 @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?q=80&w=1170&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }

        .gradient-text {
            background: linear-gradient(135deg, #2a7d7b 0%, #d97706 50%, #f59e0b 100%);
            /* mh-teal, mh-amber, mh-gold */
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .service-card {
            background: white;
            border-radius: 16px;
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
            transition: all 0.4s ease;
            overflow: hidden;
            border: 1px solid #e5e7eb;
            /* Neutral light gray */
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 25px -5px rgba(26, 75, 95, 0.15);
            /* mh-deep-teal with opacity */
        }

        .service-icon {
            width: 80px;
            height: 80px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            transition: all 0.4s ease;
        }

        .service-card:hover .service-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .value-service {
            background: white;
            border-radius: 16px;
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
            transition: all 0.4s ease;
            overflow: hidden;
            border-left: 4px solid transparent;
        }

        .value-service:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 25px -5px rgba(26, 75, 95, 0.15);
            /* mh-deep-teal with opacity */
            border-left-color: #2a7d7b;
            /* mh-teal */
        }

        .service-tag {
            display: inline-block;
            padding: 0.25rem 0.75rem;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 500;
        }

        .cta-btn {
            transition: all 0.3s ease;
        }

        .cta-btn:hover {
            transform: translateX(5px);
        }

        .pulse-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background-color: #d97706;
            /* mh-amber */
            animation: pulse-slow 2s infinite;
        }

        .floating {
            animation: float 6s ease-in-out infinite;
        }

        @keyframes pulse-slow {
            0% {
                transform: scale(1);
                opacity: 1;
            }

            50% {
                transform: scale(1.5);
                opacity: 0.7;
            }

            100% {
                transform: scale(1);
                opacity: 1;
            }
        }

        @keyframes float {
            0% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-10px);
            }

            100% {
                transform: translateY(0);
            }
        }

        @media (max-width: 768px) {
            .service-icon {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }
        }