*{
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Arial, sans-serif;
            line-height: 1.6;
            background-color: #1a1a1a;
            color: white;
        }

        /* Header */
        .header {
            background: linear-gradient(45deg, #1e3c72, #2a5298);
            padding: 1rem 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .header::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
            animation: shine 3s infinite;
        }

        @keyframes shine {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        .logo-section {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 1rem;
        }

        .logo {
            width: 80px;
            height: 80px;
            background: #ff0000;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        .company-name {
            font-size: 2.5rem;
            font-weight: bold;
            color: #fff;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .contact-info {
            display: flex;
            justify-content: center;
            gap: 3rem;
            margin-top: 1rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #fff;
            text-decoration: none;
            transition: transform 0.3s ease;
        }

        .contact-item:hover {
            transform: translateY(-3px);
        }

        /* Hero Section */
        .hero {
            /*background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%23333" width="1200" height="800"/></svg>');*/
            background: url(img/exterior.jpg) no-repeat center center;
            background-size: cover;
            padding: 4rem 2rem;
            text-align: center;
            position: relative;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            background: rgba(0,0,0,0.8);
            padding: 2rem;
            border-radius: 15px;
            border: 2px solid #ff0000;
            animation: fadeInUp 1s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #fff;
        }

        .hero-subtitle {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            color: #e0e0e0;
            font-weight: 500;
        }

        .hero-highlight {
            color: #ff0000;
            font-weight: bold;
        }

        .hero-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
            margin: 2rem 0;
        }

        .feature-item {
            background: rgba(255,255,255,0.1);
            padding: 1rem;
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .feature-item:hover {
            background: rgba(255,0,0,0.2);
            transform: translateY(-5px);
        }

        .whatsapp-button {
            background: #25d366;
            color: white;
            padding: 1rem 2rem;
            border: none;
            border-radius: 25px;
            font-size: 1.2rem;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 2rem;
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(-10px); }
            60% { transform: translateY(-5px); }
        }

        .whatsapp-button:hover {
            background: #128c7e;
            transform: scale(1.05);
        }

        /* Services Section */
        .services {
            padding: 4rem 2rem;
            background: #2a2a2a;
        }

        .services-intro {
            text-align: center;
            font-size: 1.2rem;
            margin-bottom: 3rem;
            color: #e0e0e0;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #ff0000;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }

        .service-card {
            background: #1a1a1a;
            padding: 2rem;
            margin: 2rem 0;
            border-radius: 15px;
            border: 2px solid #444;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,0,0,0.1), transparent);
            transition: left 0.5s ease;
        }

        .service-card:hover::before {
            left: 100%;
        }

        .service-card:hover {
            border-color: #ff0000;
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(255,0,0,0.3);
        }

        .service-header {
            background: #ff0000;
            color: white;
            padding: 1rem;
            border-radius: 10px;
            text-align: center;
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .service-description {
            background: rgba(255,255,255,0.05);
            padding: 1.5rem;
            border-radius: 10px;
            margin-bottom: 2rem;
            border-left: 4px solid #ff0000;
        }

        .service-description p {
            font-size: 1.1rem;
            line-height: 1.7;
            margin: 0;
        }

        .service-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }

        .service-features h4 {
            color: #ff0000;
            font-size: 1.2rem;
            margin-bottom: 1rem;
            border-bottom: 2px solid #ff0000;
            padding-bottom: 0.5rem;
        }

        .feature-list {
            list-style: none;
        }

        .feature-list li {
            padding: 0.5rem 0;
            border-bottom: 1px solid #444;
            transition: color 0.3s ease;
        }

        .feature-list li:hover {
            color: #ff0000;
        }

        .feature-list li::before {
            content: '✓ ';
            color: #25d366;
            font-weight: bold;
        }

        .service-images {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 1rem;
            margin-top: 2rem;
        }

        .service-image {
            height: 150px;
            background: #333;
            border-radius: 10px;
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease;
            text-align: center;
        }

        .service-image:hover {
            transform: scale(1.05);
        }

        /* 24/7 Service Section */
        .service-247 {
            background: linear-gradient(45deg, #1e3c72, #2a5298);
            padding: 4rem 2rem;
            text-align: center;
            position: relative;
        }

        .service-247::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>') repeat;
            animation: stars 20s linear infinite;
        }

        @keyframes stars {
            from { transform: translateY(0); }
            to { transform: translateY(-100px); }
        }

        .available-hours {
            font-size: 3rem;
            font-weight: bold;
            color: #fff;
            margin-bottom: 1rem;
            animation: glow 2s infinite alternate;
        }

        @keyframes glow {
            from { text-shadow: 0 0 10px #fff; }
            to { text-shadow: 0 0 20px #ff0000, 0 0 30px #ff0000; }
        }

        .service-247-description {
            font-size: 1.2rem;
            margin: 2rem auto;
            max-width: 800px;
            line-height: 1.7;
        }

        .emergency-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        .emergency-feature {
            background: rgba(255,255,255,0.1);
            padding: 2rem;
            border-radius: 15px;
            transition: all 0.3s ease;
        }

        .emergency-feature:hover {
            background: rgba(255,255,255,0.2);
            transform: translateY(-5px);
        }

        .emergency-feature i {
            color: #fff;
            margin-bottom: 1rem;
        }

        .emergency-feature h4 {
            color: #fff;
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }

        .emergency-feature p {
            color: #e0e0e0;
            font-size: 1rem;
        }

        /* Emergency Section */
        .emergency {
            background: #ff0000;
            padding: 3rem 2rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .emergency::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: repeating-linear-gradient(
                45deg,
                rgba(255,255,255,0.1),
                rgba(255,255,255,0.1) 10px,
                transparent 10px,
                transparent 20px
            );
            animation: stripes 1s linear infinite;
        }

        @keyframes stripes {
            from { transform: translateX(0); }
            to { transform: translateX(20px); }
        }

        .emergency-title {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 1rem;
            animation: flash 1s infinite;
        }

        @keyframes flash {
            0%, 50% { opacity: 1; }
            25%, 75% { opacity: 0.5; }
        }

        .emergency-subtitle {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            color: #fff;
            font-weight: 500;
        }

        .emergency-contact {
            margin: 2rem 0;
        }

        .emergency-note {
            font-size: 1.1rem;
            margin-top: 1rem;
            color: #fff;
        }

        .emergency-phone {
            font-size: 4rem;
            font-weight: bold;
            color: #fff;
            text-decoration: none;
            display: inline-block;
            background: rgba(0,0,0,0.3);
            padding: 1rem 2rem;
            border-radius: 15px;
            transition: all 0.3s ease;
        }

        .emergency-phone:hover {
            background: rgba(0,0,0,0.5);
            transform: scale(1.05);
        }

        .hero-cta {
            margin-top: 2rem;
        }

        .emergency-text {
            margin-top: 1rem;
            font-size: 1.1rem;
            color: #fff;
        }

        .emergency-text a {
            color: #ff0000;
            text-decoration: none;
            font-weight: bold;
        }

        .emergency-text a:hover {
            text-decoration: underline;
        }

        .contact-options {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 2rem;
        }

        .contact-option {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            padding: 1.5rem;
            border-radius: 15px;
            text-decoration: none;
            transition: all 0.3s ease;
            min-width: 120px;
        }

        .whatsapp-option {
            background: rgba(37,211,102,0.2);
            color: #25d366;
            border: 2px solid #25d366;
        }

        .whatsapp-option:hover {
            background: #25d366;
            color: white;
        }

        .phone-option {
            background: rgba(255,255,255,0.2);
            color: #fff;
            border: 2px solid #fff;
        }

        .phone-option:hover {
            background: #fff;
            color: #ff0000;
        }

        /* Service Process Styles */
        .service-process {
            background: rgba(255,0,0,0.1);
            padding: 2rem;
            border-radius: 15px;
            margin-top: 2rem;
        }

        .service-process h4 {
            color: #fff;
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1rem;
        }

        .process-step {
            background: rgba(255,255,255,0.1);
            padding: 1rem;
            border-radius: 10px;
            text-align: center;
            position: relative;
        }

        .step-number {
            background: #ff0000;
            color: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            margin-bottom: 0.5rem;
        }

        /* Equipment Section */
        .equipment-section {
            background: rgba(0,0,0,0.3);
            padding: 2rem;
            border-radius: 15px;
            margin-top: 2rem;
        }

        .equipment-section h4 {
            color: #fff;
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            text-align: center;
        }

        .equipment-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
        }

        .equipment-item {
            background: rgba(255,255,255,0.05);
            padding: 1.5rem;
            border-radius: 10px;
            text-align: center;
            border: 2px solid transparent;
            transition: all 0.3s ease;
        }

        .equipment-item:hover {
            border-color: #ff0000;
            background: rgba(255,0,0,0.1);
        }

        .equipment-item i {
            color: #ff0000;
            margin-bottom: 1rem;
        }

        .equipment-item h5 {
            color: #fff;
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }

        .equipment-item p {
            font-size: 0.9rem;
            color: #ccc;
            line-height: 1.5;
        }

        /* Why Choose Us Section */
        .why-choose-us {
            background: #1a1a1a;
            padding: 4rem 2rem;
            text-align: center;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .benefit-card {
            background: #2a2a2a;
            padding: 2rem;
            border-radius: 15px;
            border: 2px solid #444;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .benefit-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,0,0,0.1), transparent);
            transition: left 0.5s ease;
        }

        .benefit-card:hover::before {
            left: 100%;
        }

        .benefit-card:hover {
            border-color: #ff0000;
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(255,0,0,0.3);
        }

        .benefit-card i {
            color: #ff0000;
            margin-bottom: 1rem;
        }

        .benefit-card h3 {
            color: #fff;
            font-size: 1.3rem;
            margin-bottom: 1rem;
        }

        .benefit-card p {
            color: #ccc;
            line-height: 1.6;
        }

        .testimonial-card {
            background: #1a1a1a;
            padding: 2rem;
            border-radius: 15px;
            border: 2px solid #444;
            transition: all 0.3s ease;
            position: relative;
        }

        .testimonial-card:hover {
            border-color: #ff0000;
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(255,0,0,0.2);
        }

        .stars {
            font-size: 1.2rem;
            margin-bottom: 1rem;
        }

        .testimonial-card p {
            font-style: italic;
            line-height: 1.6;
            margin-bottom: 1rem;
            color: #e0e0e0;
        }

        .testimonial-card cite {
            color: #ff0000;
            font-weight: bold;
            font-style: normal;
        }

        /* Final Section */
        .final-section {
            background: linear-gradient(45deg, #1e3c72, #2a5298);
            padding: 4rem 2rem;
            text-align: center;
            position: relative;
        }

        .final-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
            margin-top: 3rem;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
        }

        .final-card {
            background: rgba(0,0,0,0.8);
            padding: 2.5rem;
            border-radius: 20px;
            border: 2px solid #ff0000;
            transition: all 0.3s ease;
        }

        .final-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(255,0,0,0.3);
        }

        .final-card i {
            color: #ff0000;
            margin-bottom: 1.5rem;
        }

        .final-card h3 {
            color: #fff;
            font-size: 1.4rem;
            margin-bottom: 1rem;
        }

        .final-card p {
            color: #e0e0e0;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .final-phone {
            font-size: 2rem !important;
            margin-top: 1rem;
        }

        .whatsapp-features {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
            margin: 1rem 0;
        }

        .whatsapp-features span {
            background: rgba(37,211,102,0.2);
            color: #25d366;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            border: 1px solid #25d366;
        }

        .final-whatsapp {
            margin-top: 1rem;
        }

        .final-guarantee {
            background: rgba(255,255,255,0.1);
            padding: 2rem;
            border-radius: 15px;
            margin-top: 3rem;
            border: 2px solid #25d366;
        }

        .final-guarantee h3 {
            color: #25d366;
            font-size: 1.3rem;
            margin-bottom: 1rem;
        }

        .final-guarantee p {
            color: #fff;
            font-size: 1.1rem;
            line-height: 1.6;
        }

        /* Floating Buttons */
        .floating-warning {
            position: fixed;
            bottom: 20px;
            left: 20px;
            background: #ff9500;
            color: white;
            padding: 1rem;
            border-radius: 50px;
            box-shadow: 0 4px 15px rgba(255,149,0,0.4);
            border: none;
            cursor: pointer;
            font-weight: bold;
            transition: all 0.3s ease;
            animation: warning-pulse 2s infinite;
        }

        @keyframes warning-pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .floating-warning:hover {
            background: #ff7700;
            transform: scale(1.1);
        }

        .floating-whatsapp {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background: #25d366;
            color: white;
            padding: 1rem;
            border-radius: 50%;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(37,211,102,0.4);
            transition: all 0.3s ease;
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .floating-whatsapp:hover {
            background: #128c7e;
            transform: scale(1.1);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .company-name {
                font-size: 1.8rem;
            }
            
            .contact-info {
                flex-direction: row;
                gap: 1rem;
            }
            
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
            }
            
            .emergency-phone {
                font-size: 2rem;
            }
            
            .emergency-title {
                font-size: 2rem;
            }
            
            .emergency-subtitle {
                font-size: 1.1rem;
            }
            
            .contact-options {
                flex-direction: column;
                gap: 1rem;
            }
            
            .estimate-grid {
                grid-template-columns: 1fr;
            }
            
            .benefits-grid {
                grid-template-columns: 1fr;
            }
            
            .emergency-features {
                grid-template-columns: 1fr;
            }
            
            .equipment-grid {
                grid-template-columns: 1fr;
            }
            
            .process-steps {
                grid-template-columns: 1fr;
            }
            
            .final-grid {
                grid-template-columns: 1fr;
            }
            
            .whatsapp-features {
                flex-direction: column;
            }
            
            .floating-warning {
                font-size: 0.8rem;
                padding: 0.5rem;
            }
            
            .coverage-phone {
                font-size: 2rem !important;
            }
            
            .final-phone {
                font-size: 1.5rem !important;
            }
        }

        /* Free Estimate Section */
        .free-estimate {
            background: #2a2a2a;
            padding: 4rem 2rem;
        }

        .estimate-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .estimate-box {
            background: #1a1a1a;
            padding: 3rem;
            border-radius: 20px;
            border: 2px solid #ff0000;
            box-shadow: 0 10px 40px rgba(255,0,0,0.2);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .estimate-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,0,0,0.1), transparent);
            transition: left 0.5s ease;
        }

        .estimate-box:hover::before {
            left: 100%;
        }

        .estimate-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 50px rgba(255,0,0,0.3);
        }

        .estimate-title {
            color: #ff0000;
            font-size: 2rem;
            margin-bottom: 0.5rem;
            text-align: center;
        }

        .estimate-subtitle {
            color: #e0e0e0;
            font-size: 1.1rem;
            text-align: center;
            margin-bottom: 2rem;
        }

        .estimate-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .estimate-column {
            background: rgba(255,255,255,0.05);
            padding: 2rem;
            border-radius: 15px;
            border-left: 4px solid #ff0000;
            transition: all 0.3s ease;
        }

        .estimate-column:hover {
            background: rgba(255,0,0,0.1);
            transform: translateY(-3px);
        }

        .estimate-column h4 {
            color: #ff0000;
            font-size: 1.3rem;
            margin-bottom: 1rem;
            border-bottom: 2px solid #ff0000;
            padding-bottom: 0.5rem;
        }

        .estimate-features {
            list-style: none;
        }

        .estimate-features li {
            padding: 0.7rem 0;
            border-bottom: 1px solid #444;
            color: #e0e0e0;
            transition: color 0.3s ease;
        }

        .estimate-features li:hover {
            color: #ff0000;
        }

        .estimate-features li::before {
            content: '✓ ';
            color: #25d366;
            font-weight: bold;
            margin-right: 0.5rem;
        }

        .estimate-cta {
            text-align: center;
            margin-top: 2rem;
        }

        .estimate-phone {
            color: #ff0000;
            font-size: 1.2rem;
            margin-top: 1rem;
            display: block;
        }

        /* Coverage Areas Section */
        .coverage-areas {
            background: #1a1a1a;
            padding: 4rem 2rem;
        }

        .coverage-intro {
            text-align: center;
            font-size: 1.2rem;
            margin-bottom: 3rem;
            color: #e0e0e0;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .coverage-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .coverage-item {
            background: #2a2a2a;
            padding: 2rem;
            border-radius: 15px;
            border: 2px solid #444;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        .coverage-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,0,0,0.1), transparent);
            transition: left 0.5s ease;
        }

        .coverage-item:hover::before {
            left: 100%;
        }

        .coverage-item:hover {
            border-color: #ff0000;
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(255,0,0,0.3);
        }

        .coverage-item i {
            color: #ff0000;
            margin-bottom: 1rem;
        }

        .coverage-item h4 {
            color: #fff;
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
        }

        .coverage-item p {
            color: #e0e0e0;
            font-size: 1rem;
            margin-bottom: 0.5rem;
        }

        .coverage-item small {
            color: #999;
            font-size: 0.9rem;
            display: block;
        }

        .coverage-cta {
            background: linear-gradient(45deg, #1e3c72, #2a5298);
            padding: 3rem 2rem;
            border-radius: 20px;
            text-align: center;
            max-width: 600px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
        }

        .coverage-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>') repeat;
            animation: stars 20s linear infinite;
        }

        .coverage-question {
            color: #fff;
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 1;
        }

        .coverage-phone {
            font-size: 3rem !important;
            display: inline-block;
            margin: 1rem 0 !important;
            position: relative;
            z-index: 1;
        }

        .coverage-note {
            color: #e0e0e0;
            font-size: 1rem;
            margin-top: 1rem;
            position: relative;
            z-index: 1;
        }

        /* Additional styling for images */
        .service-image, .coverage-image {
           /* background-image: url('/api/placeholder/200/150');*/
            background-image: url(img/plumbing-banner.webp);
            background-size: cover;
            background-position: center;
        }
        