* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: #1a1a1a;
        }
        
        #painting-page-wrapper {
            width: 100% !important;
            max-width: 100% !important;
            display: block !important;
        }
        
        #painting-page-wrapper * {
            box-sizing: border-box !important;
        }
        
        .painting-container {
            max-width: 1200px !important;
            margin: 0 auto !important;
            padding: 0 20px !important;
            width: 100% !important;
            display: block !important;
        }
        
        .top-header {
            background: #0f4c81;
            color: white;
            padding: 12px 20px;
            text-align: center;
            font-weight: 600;
        }
        
        .hero {
            background-image: linear-gradient(rgba(15, 76, 129, 0.85), rgba(15, 76, 129, 0.85)), 
                              url('https://images.unsplash.com/photo-1562259949-e8e7689d7828?q=80&w=2000&auto=format&fit=crop');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            color: white;
            padding: 80px 20px 60px;
            text-align: center;
        }
        
        .hero h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            font-weight: 700;
        }
        
        .hero .subtitle {
            font-size: 1.3rem;
            margin-bottom: 15px;
            font-weight: 300;
        }
        
        .hero .tagline {
            font-size: 1.1rem;
            margin-bottom: 30px;
            opacity: 0.95;
        }
        
        .cta-button {
            display: inline-block;
            background: #ff6b35;
            color: white;
            padding: 15px 40px;
            text-decoration: none;
            border-radius: 5px;
            font-size: 1.1rem;
            font-weight: 600;
            transition: background 0.3s;
            margin: 10px;
        }
        
        .cta-button:hover {
            background: #e55a2b;
        }
        
        .cta-button.secondary {
            background: transparent;
            border: 2px solid white;
        }
        
        .cta-button.secondary:hover {
            background: rgba(255,255,255,0.1);
        }
        
        .trust-badges {
            background: #f8f9fa;
            padding: 30px 20px;
            text-align: center;
        }
        
        .badges-grid {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
            margin-top: 20px;
        }
        
        .badge {
            text-align: center;
        }
        
        .badge-icon {
            font-size: 2.5rem;
            margin-bottom: 10px;
        }
        
        .badge-text {
            font-weight: 600;
            color: #1a1a1a;
        }
        
        .local-intro {
            background: white;
            padding: 60px 20px;
            border-bottom: 3px solid #0f4c81;
        }
        
        .local-intro h2 {
            font-size: 2rem;
            color: #0f4c81;
            margin-bottom: 20px;
            text-align: center;
        }
        
        .local-intro p {
            max-width: 800px;
            margin: 0 auto 15px;
            color: #666;
            line-height: 1.8;
            font-size: 1.05rem;
        }
        
        .painting-section-title {
            text-align: center !important;
            font-size: 2.2rem !important;
            margin-bottom: 15px !important;
            color: #1a1a1a !important;
            width: 100% !important;
            display: block !important;
        }
        
        .painting-section-subtitle {
            text-align: center !important;
            font-size: 1.1rem !important;
            color: #666 !important;
            margin-bottom: 50px !important;
            width: 100% !important;
            display: block !important;
        }
        
        .services {
            padding: 60px 20px;
            background: #f8f9fa;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .service-card {
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.15);
        }
        
        .service-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }
        
        .service-card h3 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: #1a1a1a;
        }
        
        .service-card p {
            color: #666;
            line-height: 1.8;
            font-size: 0.95rem;
        }
        
        .contact {
            padding: 60px 20px;
            background: white;
        }
        
        .contact-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: start;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .contact-content h2 {
            font-size: 2.2rem;
            margin-bottom: 20px;
            color: #1a1a1a;
        }
        
        .contact-content p {
            font-size: 1.05rem;
            color: #666;
            line-height: 1.8;
            margin-bottom: 20px;
        }
        
        .form-container {
            background: #f8f9fa;
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
        }
        
        .form-container h3 {
            font-size: 1.5rem;
            margin-bottom: 25px;
            color: #0f4c81;
            text-align: center;
        }
        
        .testimonials {
            padding: 60px 20px;
            background: #f8f9fa;
        }
        
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .testimonial {
            background: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .testimonial-text {
            font-style: italic;
            color: #666;
            margin-bottom: 20px;
            line-height: 1.8;
        }
        
        .testimonial-author {
            font-weight: 600;
            color: #1a1a1a;
        }
        
        .testimonial-location {
            color: #999;
            font-size: 0.9rem;
        }
        
        .stars {
            color: #f39c12;
            margin-bottom: 15px;
        }
        
        .nearby-areas {
            background: #0f4c81;
            color: white;
            padding: 40px 20px;
            text-align: center;
        }
        
        .nearby-areas h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
        }
        
        .nearby-areas p {
            font-size: 1rem;
            opacity: 0.9;
        }
        
        .nearby-areas a {
            color: #ff6b35;
            text-decoration: none;
            font-weight: 600;
        }
        
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2rem;
            }
            
            .contact-wrapper {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        }