
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.8;
            color: #333;
            background: #f8f9fa;
        }
        
        .case-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            background: #fff;
        }
        
        .hero-section {
            text-align: center;
            padding: 60px 20px;
            background: linear-gradient(135deg, #30A0FF 0%, #1a7fd8 100%);
            color: #fff;
            border-radius: 12px;
            margin-bottom: 50px;
        }
        
        .hero-section h1 {
            font-size: 2.5em;
            margin-bottom: 20px;
            font-weight: bold;
        }
        
        .hero-section p {
            font-size: 1.2em;
            max-width: 800px;
            margin: 0 auto;
            opacity: 0.95;
        }
        
        .section {
            margin-bottom: 50px;
            padding: 0 20px;
        }
        
        .section-title {
            font-size: 2em;
            color: #000000;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 3px solid #30A0FF;
            font-weight: bold;
        }
        
        .content-text {
            font-size: 1.1em;
            line-height: 1.9;
            color: #444;
            margin-bottom: 25px;
        }
        
        .highlight-box {
            background: #f0f8ff;
            border-left: 5px solid #30A0FF;
            padding: 25px;
            margin: 30px 0;
            border-radius: 8px;
        }
        
        .highlight-box h3 {
            color: #30A0FF;
            font-size: 1.4em;
            margin-bottom: 15px;
        }
        
        .service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }
        
        .service-card {
            background: #fff;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border-top: 4px solid #30A0FF;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(48,160,255,0.2);
        }
        
        .service-card h4 {
            color: #000000;
            font-size: 1.3em;
            margin-bottom: 12px;
        }
        
        .service-card p {
            color: #666;
            font-size: 1em;
        }
        
        .image-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin: 40px 0;
        }
        
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.15);
            transition: transform 0.3s ease;
        }
        
        .gallery-item:hover {
            transform: scale(1.03);
        }
        
        .gallery-item img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }
        
        .image-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0,0,0,0.75);
            color: #fff;
            padding: 12px;
            font-size: 0.95em;
            text-align: center;
        }
        
        .feedback-section {
            background: linear-gradient(135deg, #30A0FF 0%, #1a7fd8 100%);
            color: #fff;
            padding: 40px;
            border-radius: 12px;
            margin: 40px 0;
        }
        
        .feedback-section h3 {
            font-size: 1.8em;
            margin-bottom: 20px;
        }
        
        .feedback-section p {
            font-size: 1.15em;
            line-height: 1.8;
        }
        
        .cta-section {
            background: #000000;
            color: #fff;
            padding: 50px 30px;
            text-align: center;
            border-radius: 12px;
            margin-top: 50px;
        }
        
        .cta-section h2 {
            font-size: 2.2em;
            margin-bottom: 20px;
            color: #30A0FF;
        }
        
        .cta-section p {
            font-size: 1.2em;
            margin-bottom: 35px;
        }
        
        .contact-buttons {
            display: flex;
            justify-content: center;
            gap: 25px;
            flex-wrap: wrap;
        }
        
        .contact-btn {
            display: inline-block;
            padding: 15px 40px;
            background: #30A0FF;
            color: #fff;
            text-decoration: none;
            border-radius: 50px;
            font-size: 1.1em;
            font-weight: bold;
            transition: all 0.3s ease;
            border: 2px solid #30A0FF;
        }
        
        .contact-btn:hover {
            background: transparent;
            border-color: #30A0FF;
            color: #30A0FF;
            transform: scale(1.05);
        }
        
        .whatsapp-btn {
            background: #25D366;
            border-color: #25D366;
        }
        
        .whatsapp-btn:hover {
            background: transparent;
            border-color: #25D366;
            color: #25D366;
        }
        
        .consultation-box {
            background: #fff9e6;
            border: 2px dashed #30A0FF;
            padding: 25px;
            text-align: center;
            border-radius: 10px;
            margin: 35px 0;
        }
        
        .consultation-box h4 {
            color: #000000;
            font-size: 1.4em;
            margin-bottom: 15px;
        }
        
        .consultation-box p {
            color: #666;
            font-size: 1.05em;
            margin-bottom: 20px;
        }
        
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 1.8em;
            }
            
            .hero-section p {
                font-size: 1em;
            }
            
            .section-title {
                font-size: 1.6em;
            }
            
            .service-grid {
                grid-template-columns: 1fr;
            }
            
            .image-gallery {
                grid-template-columns: 1fr;
            }
            
            .contact-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .contact-btn {
                width: 90%;
                max-width: 300px;
            }
        }
    