
        * {
            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%, #1a2c5f 100%);
            color: white;
            padding: 60px 40px;
            text-align: center;
            margin-bottom: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(34, 55, 119, 0.3);
        }
        
        .hero-title {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .hero-subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .content-section {
            background: white;
            padding: 40px;
            margin-bottom: 30px;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .content-section:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.12);
        }
        
        .section-title {
            color: #223777;
            font-size: 2rem;
            margin-bottom: 25px;
            padding-bottom: 10px;
            border-bottom: 3px solid #223777;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, #223777, #4a6bc5);
        }
        
        .content-text {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 20px;
            text-align: justify;
        }
        
        .highlight-text {
            background: linear-gradient(120deg, #223777 0%, #4a6bc5 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: bold;
        }
        
        .image-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }
        
        .image-item {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        
        .image-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        
        .image-item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .image-item:hover img {
            transform: scale(1.05);
        }
        
        .image-caption {
            padding: 20px;
            font-size: 1rem;
            color: #555;
            font-style: italic;
            text-align: center;
            background: #f8f9fa;
        }
        
        .service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }
        
        .service-card {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 30px;
            border-radius: 12px;
            border-left: 5px solid #223777;
            transition: all 0.3s ease;
        }
        
        .service-card:hover {
            background: linear-gradient(135deg, #223777 0%, #1a2c5f 100%);
            color: white;
            transform: translateX(10px);
        }
        
        .service-card h3 {
            color: #223777;
            margin-bottom: 15px;
            font-size: 1.3rem;
            transition: color 0.3s ease;
        }
        
        .service-card:hover h3 {
            color: white;
        }
        
        .contact-cta {
            background: linear-gradient(135deg, #223777 0%, #000000 100%);
            color: white;
            padding: 50px 40px;
            text-align: center;
            border-radius: 15px;
            margin: 40px 0;
            position: relative;
            overflow: hidden;
        }
        
        .contact-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
            transition: left 0.5s ease;
        }
        
        .contact-cta:hover::before {
            left: 100%;
        }
        
        .cta-title {
            font-size: 2.2rem;
            margin-bottom: 20px;
            font-weight: bold;
        }
        
        .cta-text {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        .contact-buttons {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
        }
        
        .contact-btn {
            display: inline-flex;
            align-items: center;
            padding: 15px 30px;
            background: white;
            color: #223777;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        .contact-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.3);
            background: #f8f9fa;
        }
        
        .contact-btn i {
            margin-right: 10px;
            font-size: 1.2rem;
        }
        
        .inline-contact {
            background: #e3f2fd;
            border: 2px solid #223777;
            border-radius: 10px;
            padding: 20px;
            margin: 30px 0;
            text-align: center;
        }
        
        .inline-contact h4 {
            color: #223777;
            margin-bottom: 15px;
            font-size: 1.3rem;
        }
        
        .testimonial {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 30px;
            border-radius: 12px;
            border-left: 5px solid #223777;
            margin: 30px 0;
            position: relative;
        }
        
        .testimonial::before {
            content: '"';
            font-size: 4rem;
            color: #223777;
            position: absolute;
            top: -10px;
            left: 20px;
            opacity: 0.3;
        }
        
        .testimonial-text {
            font-style: italic;
            font-size: 1.1rem;
            margin-bottom: 15px;
            padding-left: 30px;
        }
        
        .testimonial-author {
            text-align: right;
            font-weight: bold;
            color: #223777;
        }
        
        @media (max-width: 768px) {
            .hero-title {
                font-size: 1.8rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
            }
            
            .content-section {
                padding: 25px;
            }
            
            .section-title {
                font-size: 1.5rem;
            }
            
            .image-gallery {
                grid-template-columns: 1fr;
            }
            
            .service-grid {
                grid-template-columns: 1fr;
            }
            
            .contact-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .contact-btn {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }
            
            .cta-title {
                font-size: 1.8rem;
            }
        }
        
        @media (max-width: 480px) {
            .container {
                padding: 10px;
            }
            
            .hero-section {
                padding: 40px 20px;
            }
            
            .content-section {
                padding: 20px;
            }
        }
    