.elementor-12022 .elementor-element.elementor-element-9ae0216{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-12022 .elementor-element.elementor-element-dd046a1 > .elementor-widget-container{margin:-20px 0px 0px 0px;}.elementor-12022 .elementor-element.elementor-element-9d3d290 > .elementor-widget-container{margin:-20px 0px -21px 0px;}.elementor-12022 .elementor-element.elementor-element-c1964f2 > .elementor-widget-container{margin:0px 0px 0px 0px;}.elementor-12022 .elementor-element.elementor-element-ab698fc{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:48px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for container, class: .elementor-element-9ae0216 *//* ============================================
   GLOBAL SERVICE PAGE CSS
   Use this for all service pages
   ============================================ */

/* ===== HERO SECTION ===== */
.service-hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    padding: 80px 20px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid #FE0000;
}
.service-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(254,0,0,0.08) 0%, transparent 70%);
    border-radius: 50%;
}
.service-hero .hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.service-hero .hero-badge {
    display: inline-block;
    background: rgba(254,0,0,0.15);
    color: #FFF;
    padding: 6px 24px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 1px solid rgba(254,0,0,0.2);
    margin-bottom: 20px;
}
.service-hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.15;
}
.service-hero h1 .highlight {
    color: #FE0000;
}
.service-hero p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 30px;
    font-weight: 300;
}
.service-hero .cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}
.service-hero .btn-primary {
    background: linear-gradient(135deg, #FE0000, #d40000);
    border: none;
    color: #fff;
    padding: 16px 40px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 25px rgba(254,0,0,0.35);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.service-hero .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(254,0,0,0.5);
    background: linear-gradient(135deg, #d40000, #b00000);
}
.service-hero .btn-outline {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.25);
    color: #ffffff;
    padding: 16px 40px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.service-hero .btn-outline:hover {
    background: rgba(254,0,0,0.12);
    border-color: #FE0000;
    color: #fff;
    transform: translateY(-3px);
}

/* ===== TRUST BAR ===== */
.service-trust-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px 35px;
    background: #0a0a0a;
    border-top: 3px solid #FE0000;
    border-bottom: 3px solid #FE0000;
    position: relative;
    padding: 15px 20px;
}
.service-trust-bar::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #FE0000, transparent);
    animation: trustBarSlide 3s ease-in-out infinite;
}
@keyframes trustBarSlide {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}
.service-trust-bar .trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 5px 12px;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: default;
    border: 1px solid transparent;
}
.service-trust-bar .trust-item:hover {
    background: rgba(254,0,0,0.12);
    border-color: rgba(254,0,0,0.3);
    transform: scale(1.05);
}
.service-trust-bar .trust-item .icon {
    font-size: 1.1rem;
    color: #FE0000;
    transition: transform 0.3s ease;
}
.service-trust-bar .trust-item:hover .icon {
    transform: rotate(10deg) scale(1.15);
}

/* ===== SECTION COMMON ===== */
.service-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.service-section .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}
.service-section .section-header .badge {
    display: inline-block;
    background: rgba(254,0,0,0.1);
    color: #FE0000;
    padding: 4px 18px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}
.service-section .section-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}
.service-section .section-header h2 .highlight {
    color: #FE0000;
}
.service-section .section-header p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    color: #666;
    font-weight: 300;
    line-height: 1.8;
}

/* ===== INTRODUCTION ===== */
.service-intro {
    background: #f8f9fa;
    padding: 60px 20px;
}
.service-intro .intro-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.service-intro .intro-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}
.service-intro .intro-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}
.service-intro .intro-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    position: relative;
}
.service-intro .intro-content h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: #FE0000;
    border-radius: 2px;
}
.service-intro .intro-content h2 .highlight {
    color: #FE0000;
}
.service-intro .intro-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    line-height: 1.9;
    color: #444;
    margin-bottom: 18px;
}
.service-intro .intro-content .highlight-box {
    background: linear-gradient(135deg, #f0f0f0, #f8f9fa);
    padding: 20px 28px;
    border-radius: 12px;
    border-left: 4px solid #FE0000;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
}
.service-intro .intro-content .highlight-box .red {
    color: #FE0000;
}

/* ===== EXPERT TECHNICIANS ===== */
.service-experts {
    background: #ffffff;
    padding: 60px 20px;
}
.service-experts .experts-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.service-experts .experts-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}
.service-experts .experts-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}
.service-experts .experts-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    position: relative;
}
.service-experts .experts-content h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: #FE0000;
    border-radius: 2px;
}
.service-experts .experts-content h2 .highlight {
    color: #FE0000;
}
.service-experts .experts-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    line-height: 1.9;
    color: #444;
    margin-bottom: 18px;
}

/* ===== BENEFITS ===== */
.service-benefits {
    background: #f8f9fa;
    padding: 60px 20px;
}
.service-benefits .benefits-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}
.service-benefits .benefit-item {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
}
.service-benefits .benefit-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
    border-color: #FE0000;
}
.service-benefits .benefit-item .icon {
    font-size: 2.2rem;
    margin-bottom: 15px;
    display: block;
    color: #FE0000;
}
.service-benefits .benefit-item h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}
.service-benefits .benefit-item p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ===== PROCESS ===== */
.service-process {
    background: #ffffff;
    padding: 60px 20px;
}
.service-process .process-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.service-process .process-step {
    text-align: center;
    position: relative;
    background: #f8f9fa;
    border-radius: 16px;
    padding: 30px 20px 25px;
    border: 1px solid #f0f0f0;
    transition: all 0.4s ease;
}
.service-process .process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
    border-color: #FE0000;
}
.service-process .process-step .step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #FE0000, #cc0000);
    color: #ffffff;
    border-radius: 50%;
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 auto 14px;
    box-shadow: 0 8px 25px rgba(254,0,0,0.2);
    transition: all 0.4s ease;
}
.service-process .process-step:hover .step-number {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(254,0,0,0.35);
}
.service-process .process-step h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 6px;
}
.service-process .process-step p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    color: #666666;
    margin: 0;
    line-height: 1.5;
    font-weight: 400;
}

/* ===== WHY US ===== */
.service-why-us {
    background: #f8f9fa;
    padding: 60px 20px;
}
.service-why-us .why-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}
.service-why-us .why-item {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px 25px;
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
    position: relative;
}
.service-why-us .why-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #FE0000;
    border-radius: 16px 16px 0 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.service-why-us .why-item:hover::before {
    opacity: 1;
}
.service-why-us .why-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.06);
    border-color: #FE0000;
}
.service-why-us .why-item .icon {
    font-size: 2rem;
    margin-bottom: 12px;
    display: block;
    color: #FE0000;
}
.service-why-us .why-item h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 6px;
}
.service-why-us .why-item p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ===== OFFERS ===== */
.service-offers {
    background: #0a0a0a;
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.service-offers::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(254,0,0,0.05) 0%, transparent 70%);
    border-radius: 50%;
}
.service-offers .offers-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    position: relative;
    z-index: 1;
}
.service-offers .offer-item {
    background: rgba(255,255,255,0.04);
    border-radius: 16px;
    padding: 35px 25px;
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.4s ease;
}
.service-offers .offer-item:hover {
    transform: translateY(-6px);
    border-color: #FE0000;
    background: rgba(255,255,255,0.06);
}
.service-offers .offer-item .icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
    color: #FE0000;
}
.service-offers .offer-item h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}
.service-offers .offer-item p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    margin: 0;
}

/* ===== TESTIMONIALS ===== */
.service-testimonials {
    background: #ffffff;
    padding: 60px 20px;
}
.service-testimonials .testimonials-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}
.service-testimonials .testimonial-item {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 30px 25px;
    border-left: 4px solid #FE0000;
    transition: all 0.3s ease;
}
.service-testimonials .testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}
.service-testimonials .testimonial-item .quote {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: #444;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 12px;
}
.service-testimonials .testimonial-item .author {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #FE0000;
}

/* ===== SERVICE AREA ===== */
.service-area {
    background: #f8f9fa;
    padding: 60px 20px;
}
.service-area .area-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.service-area .area-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}
.service-area .area-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}
.service-area .area-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    position: relative;
}
.service-area .area-content h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: #FE0000;
    border-radius: 2px;
}
.service-area .area-content h2 .highlight {
    color: #FE0000;
}
.service-area .area-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    line-height: 1.9;
    color: #444;
    margin-bottom: 18px;
}
.service-area .area-content .towns {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 15px;
}
.service-area .area-content .towns .town {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #555;
    padding: 6px 16px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 50px;
    transition: all 0.3s ease;
}
.service-area .area-content .towns .town:hover {
    background: #FE0000;
    color: #ffffff;
    border-color: #FE0000;
}

/* ===== FAQ ===== */
.service-faq {
    background: #ffffff;
    padding: 60px 20px;
}
.service-faq .faq-grid {
    max-width: 900px;
    margin: 0 auto;
}
.service-faq .faq-item {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px 25px;
    margin-bottom: 15px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}
.service-faq .faq-item:hover {
    border-color: #FE0000;
}
.service-faq .faq-item .question {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.service-faq .faq-item .question .q-icon {
    color: #FE0000;
    font-size: 1.2rem;
}
.service-faq .faq-item .answer {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    padding-left: 35px;
    margin: 0;
}

/* ===== FINAL CTA ===== */
.service-final-cta {
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
    padding: 50px 20px;
    text-align: center;
    border-top: 3px solid #FE0000;
}
.service-final-cta .cta-content {
    max-width: 800px;
    margin: 0 auto;
}
.service-final-cta h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}
.service-final-cta h2 .highlight {
    color: #FE0000;
}
.service-final-cta p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    margin-bottom: 30px;
}
.service-final-cta .cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}
.service-final-cta .btn-primary {
    background: linear-gradient(135deg, #FE0000, #d40000);
    border: none;
    color: #fff;
    padding: 16px 40px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 25px rgba(254,0,0,0.35);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.service-final-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(254,0,0,0.5);
    background: linear-gradient(135deg, #d40000, #b00000);
}
.service-final-cta .btn-outline {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.25);
    color: #ffffff;
    padding: 16px 40px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.service-final-cta .btn-outline:hover {
    background: rgba(254,0,0,0.12);
    border-color: #FE0000;
    color: #fff;
    transform: translateY(-3px);
}

/* ============================================
   SECTION HEADER FIX - Applies to all
   ============================================ */

.service-intro .section-header,
.service-experts .section-header,
.service-benefits .section-header,
.service-process .section-header,
.service-why-us .section-header,
.service-offers .section-header,
.service-testimonials .section-header,
.service-area .section-header,
.service-faq .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.service-intro .section-header .badge,
.service-experts .section-header .badge,
.service-benefits .section-header .badge,
.service-process .section-header .badge,
.service-why-us .section-header .badge,
.service-offers .section-header .badge,
.service-testimonials .section-header .badge,
.service-area .section-header .badge,
.service-faq .section-header .badge {
    display: inline-block;
    background: rgba(254,0,0,0.1);
    color: #FE0000;
    padding: 4px 18px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.service-intro .section-header h2,
.service-experts .section-header h2,
.service-benefits .section-header h2,
.service-process .section-header h2,
.service-why-us .section-header h2,
.service-offers .section-header h2,
.service-testimonials .section-header h2,
.service-area .section-header h2,
.service-faq .section-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.service-intro .section-header h2 .highlight,
.service-experts .section-header h2 .highlight,
.service-benefits .section-header h2 .highlight,
.service-process .section-header h2 .highlight,
.service-why-us .section-header h2 .highlight,
.service-offers .section-header h2 .highlight,
.service-testimonials .section-header h2 .highlight,
.service-area .section-header h2 .highlight,
.service-faq .section-header h2 .highlight {
    color: #FE0000;
}

.service-intro .section-header p,
.service-experts .section-header p,
.service-benefits .section-header p,
.service-process .section-header p,
.service-why-us .section-header p,
.service-offers .section-header p,
.service-testimonials .section-header p,
.service-area .section-header p,
.service-faq .section-header p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    color: #666;
    font-weight: 300;
    line-height: 1.8;
}

/* Offers section header overrides (dark background) */
.service-offers .section-header .badge {
    background: #FE0000;
    color: #ffffff;
}
.service-offers .section-header h2 {
    color: #ffffff;
}
.service-offers .section-header p {
    color: rgba(255,255,255,0.6);
}

/* ============================================
   RESPONSIVE - CENTER EVERYTHING ON MOBILE
   ============================================ */

@media (max-width: 1024px) {
    .service-intro .intro-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    .service-experts .experts-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    .service-area .area-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    .service-intro .intro-content h2::after,
    .service-experts .experts-content h2::after,
    .service-area .area-content h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .service-area .area-content .towns {
        justify-content: center;
    }
}

@media (max-width: 992px) {
    .service-hero h1 {
        font-size: 2.6rem;
    }
    .service-benefits .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .service-process .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .service-offers .offers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .service-testimonials .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .service-why-us .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .service-intro .section-header h2,
    .service-experts .section-header h2,
    .service-benefits .section-header h2,
    .service-process .section-header h2,
    .service-why-us .section-header h2,
    .service-offers .section-header h2,
    .service-testimonials .section-header h2,
    .service-area .section-header h2,
    .service-faq .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .service-hero {
        padding: 60px 15px 40px;
    }
    .service-hero h1 {
        font-size: 2rem;
        text-align: center;
    }
    .service-hero p {
        font-size: 1rem;
        text-align: center;
    }
    .service-hero .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .service-hero .btn-primary,
    .service-hero .btn-outline {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        padding: 14px 30px;
        font-size: 0.85rem;
    }
    
    .service-section {
        padding: 40px 15px;
    }
    .service-section .section-header h2 {
        font-size: 1.8rem;
        text-align: center;
    }
    .service-section .section-header p {
        font-size: 0.95rem;
        text-align: center;
    }
    
    .service-intro .intro-image img,
    .service-experts .experts-image img,
    .service-area .area-image img {
        height: 250px;
    }
    .service-intro .intro-content h2,
    .service-experts .experts-content h2,
    .service-area .area-content h2 {
        font-size: 1.6rem;
        text-align: center;
    }
    .service-intro .intro-content p,
    .service-experts .experts-content p,
    .service-area .area-content p {
        text-align: center;
    }
    
    .service-benefits .benefits-grid {
        grid-template-columns: 1fr;
    }
    .service-process .process-grid {
        grid-template-columns: 1fr;
    }
    .service-why-us .why-grid {
        grid-template-columns: 1fr;
    }
    .service-offers .offers-grid {
        grid-template-columns: 1fr;
    }
    .service-testimonials .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .service-area .area-content .towns {
        justify-content: center;
    }
    
    .service-final-cta h2 {
        font-size: 1.6rem;
        text-align: center;
    }
    .service-final-cta p {
        text-align: center;
    }
    .service-final-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .service-final-cta .btn-primary,
    .service-final-cta .btn-outline {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        padding: 14px 30px;
        font-size: 0.85rem;
    }
    
    .service-intro .intro-content .highlight-box {
        text-align: center;
        border-left: none;
        border-top: 4px solid #FE0000;
    }
    
    .service-trust-bar {
        gap: 12px 18px;
        padding: 12px 15px;
    }
    .service-trust-bar .trust-item {
        font-size: 0.75rem;
        padding: 4px 10px;
    }
    .service-trust-bar .trust-item .icon {
        font-size: 0.9rem;
    }
    
    .service-faq .faq-item .question {
        font-size: 0.95rem;
    }
    .service-faq .faq-item .answer {
        font-size: 0.85rem;
        padding-left: 0;
    }
    .service-faq .faq-item {
        padding: 16px 18px;
    }
    
    .service-offers .section-header h2 {
        color: #ffffff;
        text-align: center;
    }
    .service-offers .section-header p {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .service-hero h1 {
        font-size: 1.6rem;
    }
    .service-hero p {
        font-size: 0.9rem;
    }
    .service-hero .hero-badge {
        font-size: 0.6rem;
        padding: 4px 16px;
    }
    
    .service-section .section-header h2 {
        font-size: 1.5rem;
    }
    .service-section .section-header p {
        font-size: 0.9rem;
    }
    
    .service-intro .intro-content h2,
    .service-experts .experts-content h2,
    .service-area .area-content h2 {
        font-size: 1.3rem;
    }
    .service-intro .intro-content p,
    .service-experts .experts-content p,
    .service-area .area-content p {
        font-size: 0.9rem;
    }
    .service-intro .intro-image img,
    .service-experts .experts-image img,
    .service-area .area-image img {
        height: 200px;
    }
    
    .service-benefits .benefit-item {
        padding: 22px 18px;
    }
    .service-benefits .benefit-item .icon {
        font-size: 1.8rem;
    }
    
    .service-process .process-step {
        padding: 22px 16px 20px;
    }
    .service-process .process-step .step-number {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }
    .service-process .process-step h4 {
        font-size: 0.9rem;
    }
    .service-process .process-step p {
        font-size: 0.8rem;
    }
    
    .service-why-us .why-item {
        padding: 20px 16px;
    }
    .service-why-us .why-item .icon {
        font-size: 1.6rem;
    }
    .service-why-us .why-item h4 {
        font-size: 0.95rem;
    }
    .service-why-us .why-item p {
        font-size: 0.8rem;
    }
    
    .service-offers .offer-item {
        padding: 25px 18px;
    }
    .service-offers .offer-item .icon {
        font-size: 2rem;
    }
    .service-offers .offer-item h4 {
        font-size: 1rem;
    }
    
    .service-testimonials .testimonial-item {
        padding: 20px 16px;
    }
    .service-testimonials .testimonial-item .quote {
        font-size: 0.85rem;
    }
    
    .service-final-cta h2 {
        font-size: 1.3rem;
    }
    .service-final-cta p {
        font-size: 0.9rem;
    }
    
    .service-area .area-content .towns .town {
        font-size: 0.8rem;
        padding: 4px 12px;
    }
    
    .service-trust-bar {
        gap: 8px 12px;
        padding: 10px 10px;
    }
    .service-trust-bar .trust-item {
        font-size: 0.6rem;
        padding: 3px 8px;
    }
    .service-trust-bar .trust-item .icon {
        font-size: 0.7rem;
    }
}/* End custom CSS */