
        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Arial', 'Helvetica Neue', sans-serif;
            line-height: 1.6;
            color: #000000;
            background-color: #fff;
        }
        
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        
        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, #30A0FF 0%, #1E90FF 100%);
            color: #fff;
            padding: 100px 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
            pointer-events: none;
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
        }
        
        .hero-section h1 {
            font-size: 56px;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
            text-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .hero-section p {
            font-size: 24px;
            max-width: 800px;
            margin: 0 auto;
            opacity: 0.95;
            font-weight: 300;
        }
        
        /* Statistics Section */
        .statistics-section {
            background: #fff;
            padding: 80px 20px;
            border-bottom: 2px solid #f0f0f0;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            text-align: center;
            max-width: 1100px;
            margin: 0 auto;
        }
        
        .stat-item {
            padding: 30px 20px;
            background: linear-gradient(135deg, #f8fbff 0%, #fff 100%);
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(48, 160, 255, 0.08);
            transition: all 0.3s ease;
        }
        
        .stat-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(48, 160, 255, 0.15);
        }
        
        .stat-number {
            font-size: 48px;
            font-weight: 700;
            display: block;
            color: #30A0FF;
            line-height: 1;
            margin-bottom: 10px;
        }
        
        .stat-label {
            font-size: 14px;
            color: #000000;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 600;
        }
        
        /* Image-Text Section (Symmetrical Layout) */
        .image-text-section {
            padding: 80px 20px;
            background: #fff;
        }
        
        .image-text-section:nth-of-type(even) {
            background: linear-gradient(180deg, #f8fbff 0%, #fff 100%);
        }
        
        .section-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        /* Reverse layout for alternating sections */
        .image-text-section:nth-of-type(even) .section-content {
            direction: rtl;
        }
        
        .image-text-section:nth-of-type(even) .section-content > * {
            direction: ltr;
        }
        
        .section-image {
            width: 100%;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(48, 160, 255, 0.2);
            transition: all 0.4s ease;
        }
        
        .section-image:hover {
            transform: scale(1.02);
            box-shadow: 0 15px 50px rgba(48, 160, 255, 0.3);
        }
        
        .section-image img {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
        }
        
        .section-text {
            padding: 20px;
        }
        
        .section-text h2 {
            font-size: 38px;
            color: #30A0FF;
            margin-bottom: 20px;
            font-weight: 700;
            line-height: 1.3;
        }
        
        .section-text p {
            font-size: 16px;
            color: #000000;
            line-height: 1.8;
            margin-bottom: 15px;
        }
        
        .section-text .highlight {
            display: inline-block;
            background: linear-gradient(135deg, #30A0FF 0%, #1E90FF 100%);
            color: #fff;
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            margin-top: 10px;
            letter-spacing: 0.5px;
        }
        
        /* Why Choose Us Section - New Grid Layout with Images */
        .why-choose-section {
            padding: 80px 20px;
            background: linear-gradient(180deg, #f8fbff 0%, #fff 100%);
        }
        
        .why-choose-section h2 {
            font-size: 42px;
            color: #30A0FF;
            text-align: center;
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        .why-choose-subtitle {
            text-align: center;
            font-size: 18px;
            color: #666;
            margin-bottom: 60px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .why-choose-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .why-choose-item {
            background: #fff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(48, 160, 255, 0.1);
            transition: all 0.4s ease;
            border-top: 5px solid #30A0FF;
        }
        
        .why-choose-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 40px rgba(48, 160, 255, 0.2);
        }
        
        .why-choose-image {
            width: 100%;
            height: 220px;
            overflow: hidden;
            background: linear-gradient(135deg, #30A0FF 0%, #1E90FF 100%);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .why-choose-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        
        .why-choose-item:hover .why-choose-image img {
            transform: scale(1.08);
        }
        
        .why-choose-content {
            padding: 30px 25px;
        }
        
        .why-choose-content h3 {
            font-size: 22px;
            color: #000000;
            margin-bottom: 15px;
            font-weight: 700;
            line-height: 1.3;
        }
        
        .why-choose-content p {
            font-size: 15px;
            color: #555;
            line-height: 1.7;
        }
        
        /* Video Section */
        .video-section {
            padding: 80px 20px;
            background: #fff;
            text-align: center;
        }
        
        .video-section h2 {
            font-size: 42px;
            color: #30A0FF;
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        .video-section p {
            font-size: 18px;
            color: #666;
            margin-bottom: 40px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .video-container {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
            padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
            height: 0;
            overflow: hidden;
            border-radius: 16px;
            box-shadow: 0 10px 50px rgba(48, 160, 255, 0.2);
        }
        
        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
            border-radius: 16px;
        }
        
        /* TÜV Certification Section - SIMPLIFIED LAYOUT */
        .certification-section {
            padding: 80px 20px;
            background: linear-gradient(180deg, #f8fbff 0%, #fff 100%);
        }
        
        .certification-content {
            max-width: 1100px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 380px 1fr;
            gap: 60px;
            align-items: center;
        }
        
        .cert-image-container {
            background: #fff;
            border-radius: 16px;
            padding: 20px;
            box-shadow: 0 8px 30px rgba(48, 160, 255, 0.15);
            transition: all 0.4s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .cert-image-container:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 40px rgba(48, 160, 255, 0.25);
        }
        
        .cert-image-container img {
            width: 100%;
            height: auto;
            max-width: 100%;
            object-fit: contain;
            border-radius: 8px;
        }
        
        .cert-text-content {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .cert-badge {
            display: inline-block;
            background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
            color: #fff;
            padding: 10px 30px;
            border-radius: 25px;
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 25px;
            letter-spacing: 1px;
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
            align-self: flex-start;
        }
        
        .cert-text-content h2 {
            font-size: 42px;
            color: #30A0FF;
            margin-bottom: 20px;
            font-weight: 700;
            line-height: 1.2;
        }
        
        .cert-text-content p {
            font-size: 17px;
            color: #555;
            line-height: 1.8;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
            color: #fff;
            padding: 90px 20px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                        radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }
        
        .cta-content {
            position: relative;
            z-index: 1;
        }
        
        .cta-content h2 {
            font-size: 44px;
            font-weight: 700;
            margin-bottom: 25px;
        }
        
        .cta-content p {
            font-size: 19px;
            margin-bottom: 40px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            opacity: 0.95;
            line-height: 1.7;
        }
        
        .cta-buttons {
            display: flex;
            gap: 25px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .btn {
            display: inline-block;
            padding: 18px 45px;
            font-size: 17px;
            font-weight: 600;
            text-decoration: none;
            border-radius: 50px;
            transition: all 0.3s ease;
            cursor: pointer;
            border: 2px solid transparent;
        }
        
        .btn-primary {
            background-color: #fff;
            color: #FF6B35;
            border-color: #fff;
        }
        
        .btn-primary:hover {
            background-color: #30A0FF;
            color: #fff;
            border-color: #30A0FF;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(48, 160, 255, 0.4);
        }
        
        .btn-secondary {
            background-color: transparent;
            color: #fff;
            border-color: #fff;
        }
        
        .btn-secondary:hover {
            background-color: #fff;
            color: #FF6B35;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
        }
        
        /* Responsive Design */
        @media (max-width: 968px) {
            .hero-section h1 {
                font-size: 42px;
            }
            
            .hero-section p {
                font-size: 20px;
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }
            
            .section-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .image-text-section:nth-of-type(even) .section-content {
                direction: ltr;
            }
            
            .why-choose-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }
            
            .certification-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .section-text h2 {
                font-size: 32px;
            }
            
            .cert-text-content h2 {
                font-size: 36px;
            }
        }
        
        @media (max-width: 640px) {
            .hero-section {
                padding: 70px 20px;
            }
            
            .hero-section h1 {
                font-size: 34px;
            }
            
            .hero-section p {
                font-size: 18px;
            }
            
            .statistics-section,
            .image-text-section,
            .why-choose-section,
            .video-section,
            .certification-section,
            .cta-section {
                padding: 60px 20px;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .stat-number {
                font-size: 42px;
            }
            
            .section-text h2 {
                font-size: 28px;
            }
            
            .section-text p {
                font-size: 15px;
            }
            
            .why-choose-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            
            .why-choose-section h2,
            .video-section h2 {
                font-size: 32px;
            }
            
            .cert-text-content h2 {
                font-size: 28px;
            }
            
            .cert-text-content p {
                font-size: 15px;
            }
            
            .cta-content h2 {
                font-size: 32px;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: stretch;
            }
            
            .btn {
                width: 100%;
            }
        }
        
        /* Accessibility */
        .btn:focus,
        .why-choose-item:focus {
            outline: 3px solid #FF6B35;
            outline-offset: 2px;
        }
        
        /* Print Styles */
        @media print {
            .cta-section {
                background: #FF6B35;
            }
            .hero-section {
                background: #30A0FF;
            }
        }
    