        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        @media (max-width: 480px) {
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            font-display: swap; 
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        /* Header */
        .m-header {
            background: linear-gradient(135deg, #2c5aa0 0%, #1e3f73 100%);
            color: white;
            padding: 1.5rem 1rem;
            text-align: center;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

        .m-header h1 {
            font-size: 1.75rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
        }

        .m-header p {
            font-size: 1rem;
            opacity: 0.9;
            max-width: 300px;
            margin: 0 auto;
        }

        /* Hero Section */
        .m-hero {
            background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
            color: white;
            padding: 2rem 1rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .m-hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            animation: pulse 4s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 0.5; }
            50% { transform: scale(1.1); opacity: 0.8; }
        }

        .m-hero-content {
            position: relative;
            z-index: 1;
        }

        .m-hero h2 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .m-hero p {
            font-size: 1rem;
            margin-bottom: 1.5rem;
            opacity: 0.95;
        }

        /* Services Grid */
        .m-services-section {
            padding: 2rem 1rem;
            background: white;
        }

        .m-section-title {
            text-align: center;
            font-size: 1.5rem;
            color: #2c5aa0;
            margin-bottom: .5rem;
            font-weight: 600;
        }
        .m-section-subtitle {
            text-align: center;
            font-size: 0.9rem;
            color: #2c5aa0;
            margin-bottom: 1.5rem;
            font-weight: 500;
        }
        .m-services-grid {
            display: grid;
            gap: 1.5rem;
            max-width: 400px;
            margin: 0 auto;
        }

        .m-service-card {
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            border: 2px solid #e9ecef;
            border-radius: 16px;
            padding: 1.5rem;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            position: relative;
            overflow: hidden;
        }

        .m-service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #2c5aa0, #ff6b35);
            transition: left 0.3s ease;
        }

        .m-service-card:hover::before {
            left: 0;
        }

        .m-service-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.1);
            border-color: #ff6b35;
        }

        .m-service-icon {
            width: 60px;
            height: 60px;
            background: transparent;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            font-size: 1.5rem;
            color: white;
        }

        .m-service-card h3 {
            font-size: 1.1rem;
            color: #2c5aa0;
            margin-bottom: 0.75rem;
            font-weight: 600;
        }

        .m-service-card p {
            font-size: 0.9rem;
            color: #666;
            line-height: 1.5;
        }

        /* Benefits Section */
        .m-benefits-section {
            padding: 2rem 1rem;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .m-benefits-list {
            max-width: 400px;
            margin: 0 auto;
        }

        .m-benefit-item {
            background: white;
            padding: 1.25rem;
            margin-bottom: 1rem;
            border-radius: 12px;
            border-left: 4px solid #ff6b35;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }

        .m-benefit-item:hover {
            transform: translateX(4px);
        }

        .m-benefit-item strong {
            color: #2c5aa0;
            font-weight: 600;
        }

        .m-benefit-item p {
            margin-top: 0.5rem;
            color: #666;
            font-size: 0.9rem;
        }

        /* Service Areas */
        .m-areas-section {
            padding: 2rem 1rem;
            background: white;
        }

        .m-areas-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            max-width: 400px;
            margin: 1.5rem auto;
        }

        .m-area-tag {
            background: linear-gradient(135deg, #2c5aa0 0%, #1e3f73 100%);
            color: white;
            padding: 0.75rem;
            border-radius: 8px;
            text-align: center;
            font-size: 0.85rem;
            font-weight: 500;
            box-shadow: 0 2px 8px rgba(44,90,160,0.3);
        }

        /* CTA Section */
        .m-cta-section {
            background: linear-gradient(135deg, #2c5aa0 0%, #1e3f73 100%);
            color: white;
            padding: 2rem 1rem;
            text-align: center;
        }

        .m-cta-section h2 {
            font-size: 1.4rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .m-cta-section p {
            margin-bottom: 1.5rem;
            opacity: 0.9;
        }

        .m-cta-buttons {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            max-width: 300px;
            margin: 0 auto;
        }

        .m-cta-btn {
            background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
            color: white;
            padding: 1rem;
            border: none;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(255,107,53,0.3);
        }

        .m-cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(255,107,53,0.4);
        }

        .m-cta-btn.secondary {
            background: rgba(255,255,255,0.1);
            border: 2px solid rgba(255,255,255,0.3);
        }

        .m-cta-btn.secondary:hover {
            background: rgba(255,255,255,0.2);
        }
        }

  /* Responsive improvements */
        @media (max-width: 320px) {
            .m-header h1 {
                font-size: 1.5rem;
            }
            
            .m-hero h2 {
                font-size: 1.3rem;
            }
            
            .m-service-card {
                padding: 1.25rem;
            }
        }

        /* CLS Prevention */
        .m-service-icon,
        .m-service-card,
        .m-benefit-item,
        .m-area-tag {
            contain: layout;
        }

        img {
            height: auto;
            max-width: 100%;
        }