
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .hero-section {
            background: linear-gradient(135deg, #223777 0%, #1a2a5e 100%);
            color: white;
            padding: 60px 20px;
            text-align: center;
            margin-bottom: 40px;
            border-radius: 10px;
        }
        
        .hero-section h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            font-weight: bold;
        }
        
        .hero-section p {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .content-section {
            background: white;
            padding: 40px;
            margin-bottom: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .content-section h2 {
            color: #223777;
            font-size: 2rem;
            margin-bottom: 20px;
            border-bottom: 3px solid #223777;
            padding-bottom: 10px;
        }
        
        .content-section h3 {
            color: #223777;
            font-size: 1.5rem;
            margin: 30px 0 15px 0;
        }
        
        .content-section p {
            margin-bottom: 15px;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        
        .image-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        
        .image-item {
            text-align: center;
            background: #f8f9fa;
            padding: 20px;
            border-radius: 10px;
            transition: transform 0.3s ease;
        }
        
        .image-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }
        
        .image-item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 15px;
        }
        
        .image-caption {
            font-weight: bold;
            color: #223777;
            font-size: 1rem;
        }
        
        .service-process {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        
        .process-step {
            background: linear-gradient(135deg, #223777 0%, #1a2a5e 100%);
            color: white;
            padding: 25px;
            border-radius: 10px;
            text-align: center;
            transition: transform 0.3s ease;
        }
        
        .process-step:hover {
            transform: scale(1.05);
        }
        
        .process-step h4 {
            font-size: 1.2rem;
            margin-bottom: 10px;
        }
        
        .cta-section {
            background: linear-gradient(135deg, #223777 0%, #000000 100%);
            color: white;
            padding: 50px;
            text-align: center;
            border-radius: 10px;
            margin-top: 40px;
        }
        
        .cta-section h2 {
            color: white;
            font-size: 2.2rem;
            margin-bottom: 20px;
            border: none;
        }
        
        .contact-info {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 30px;
            flex-wrap: wrap;
        }
        
        .contact-item {
            background: rgba(255,255,255,0.1);
            padding: 20px;
            border-radius: 10px;
            transition: background 0.3s ease;
        }
        
        .contact-item:hover {
            background: rgba(255,255,255,0.2);
        }
        
        .contact-item a {
            color: white;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1rem;
        }
        
        .highlight-box {
            background: #f0f4ff;
            border-left: 5px solid #223777;
            padding: 20px;
            margin: 20px 0;
            border-radius: 5px;
        }
        
        .specs-table {
            width: 100%;
            border-collapse: collapse;
            margin: 20px 0;
        }
        
        .specs-table th,
        .specs-table td {
            border: 1px solid #ddd;
            padding: 12px;
            text-align: left;
        }
        
        .specs-table th {
            background: #223777;
            color: white;
        }
        
        .specs-table tr:nth-child(even) {
            background: #f9f9f9;
        }
        
        .inline-contact {
            background: #223777;
            color: white;
            padding: 15px;
            border-radius: 8px;
            margin: 20px 0;
            text-align: center;
        }
        
        .inline-contact a {
            color: #ffeb3b;
            text-decoration: none;
            font-weight: bold;
        }
        
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2rem;
            }
            
            .content-section {
                padding: 20px;
            }
            
            .contact-info {
                flex-direction: column;
                align-items: center;
            }
            
            .image-gallery {
                grid-template-columns: 1fr;
            }
        }
    