
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            font-display: swap;
            line-height: 1.6;
            color: #333;
            min-height: 100vh;
        }

        .x-container {
            max-width: 100%;
            margin: 0 auto;
            background: white;
            min-height: 100vh;
            position: relative;
            overflow: hidden;
        }

        .x-header {
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            color: white;
            padding: 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .x-header::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
            background-size: 20px 20px;
            animation: float 20s linear infinite;
        }

        @keyframes float {
            0% { transform: translateY(0px) rotate(0deg); }
            100% { transform: translateY(-20px) rotate(360deg); }
        }

        .x-logo {
            font-size: 1.5em;
            font-weight: bold;
            margin-bottom: 10px;
            position: relative;
            z-index: 2;
        }

        .x-tagline {
            font-size: 0.9em;
            opacity: 0.9;
            position: relative;
            z-index: 2;
        }

        .x-hero {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 40px 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .x-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/><circle cx="20" cy="20" r="1" fill="white" opacity="0.1"/><circle cx="80" cy="30" r="1.5" fill="white" opacity="0.1"/></svg>');
            animation: sparkle 3s ease-in-out infinite;
        }

        @keyframes sparkle {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 0.7; }
        }

        .x-hero h1 {
            font-size: 2.2em;
            margin-bottom: 15px;
            font-weight: 700;
            position: relative;
            z-index: 2;
        }

        .x-hero p {
            font-size: 1.1em;
            opacity: 0.95;
            margin-bottom: 25px;
            position: relative;
            z-index: 2;
        }

        .x-cta-button {
            display: inline-block;
            background: linear-gradient(45deg, #ff6b6b, #ee5a52);
            color: white;
            padding: 15px 30px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.1em;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
            position: relative;
            z-index: 2;
        }

        .x-cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
        }

        .x-content {
            padding: 30px 20px;
        }

        .x-section {
            margin-bottom: 35px;
            background: white;
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            position: relative;
            overflow: hidden;
        }

        .x-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #667eea, #764ba2);
        }

        .x-section h2 {
            color: #2a5298;
            font-size: 1.4em;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .x-section p {
            margin-bottom: 15px;
            color: #555;
            line-height: 1.7;
        }

        .x-services-grid {
            display: grid;
            gap: 15px;
            margin-top: 20px;
         }

        .x-service-card {
            background: linear-gradient(135deg, #f8f9ff 0%, #e8f0ff 100%);
            padding: 20px;
            border-radius: 12px;
            border-left: 4px solid #667eea;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            margin-bottom: 10px;
            margin-left: 10px;
        }

        .x-service-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
            transition: all 0.3s ease;
        }

        .x-service-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
        }

        .x-service-card:hover::before {
            top: -30%;
            right: -30%;
        }

        .x-service-card h3 {
            color: #2a5298;
            font-size: 1.1em;
            margin-bottom: 8px;
            font-weight: 600;
            position: relative;
            z-index: 2;
        }

        .x-service-card p {
            color: #666;
            font-size: 0.9em;
            margin: 0;
            position: relative;
            z-index: 2;
        }

        .x-service-card a {
            color: #667eea;
            text-decoration: none;
            font-weight: 500;
            position: relative;
            z-index: 2;
        }

        .x-service-card a:hover {
            text-decoration: underline;
        }

        .x-why-choose ul {
            list-style: none;
            padding: 0;
        }

        .x-why-choose li {
            padding: 12px 0;
            position: relative;
            padding-left: 30px;
            color: #555;
            line-height: 1.6;
        }

        .x-why-choose li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #667eea;
            font-weight: bold;
            font-size: 1.2em;
        }

        .x-contact-section {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            text-align: center;
            margin: 0 -20px;
            padding: 40px 20px;
            position: relative;
            overflow: hidden;
        }

        .x-contact-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
            background-size: 30px 30px;
            animation: float 25s linear infinite reverse;
        }

        .x-contact-section h2 {
            font-size: 1.8em;
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
        }

        .x-contact-buttons {
            display: flex;
            flex-direction: column;
            gap: 15px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .x-contact-btn {
            display: inline-block;
            background: rgba(255, 255, 255, 0.2);
            color: white;
            padding: 15px 25px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            min-width: 200px;
        }

        .x-contact-btn:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .x-locations {
            background: linear-gradient(135deg, #f8f9ff 0%, #e8f0ff 100%);
            padding: 25px;
            border-radius: 15px;
            margin-top: 20px;
            color: navy;
        }

        .x-locations h3 {
            color: #2a5298;
            font-size: 1.2em;
            margin-bottom: 15px;
            text-align: center;
        }

        .x-location-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
            margin-bottom: 5px;
            color: #fff;
        }

        .x-location-area {
            background: white;
            color: navy;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            border-left: 6px solid #667eea;
            margin-bottom: 10px;
            list-style-type: none;
        }

        .x-location-area h4 {
            color: #2a5298;
            margin-bottom: 10px;
            font-size: 1.1em;
        }

        .x-location-list {
            color: #666;
            font-size: 0.9em;
            line-height: 1.6;
        }
        .x-location-title {
            color: #666;
            font-size: 0.9em;
            line-height: 1.6;
        }
        .x-location-area p {
            color: #666;
        }
        .x-phone-number {
            font-size: 1.3em;
            font-weight: bold;
            color: #667eea;
            text-decoration: none;
            display: block;
            margin: 15px 0;
        }

        .x-phone-number:hover {
            color: #2a5298;
        }

        @media (max-width: 480px) {
            .x-hero h1 {
                font-size: 1.8em;
            }
            
            .x-hero p {
                font-size: 1em;
            }
            
            .x-section {
                padding: 20px;
            }
            
            .x-contact-section {
                padding: 30px 15px;
            }
        }

        /* Smooth scrolling animation */
        .x-fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .x-fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
