/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #e31837;
    --secondary-color: #333;
    --background-color: #f9f9f9;
    --text-color: #333;
    --white: #fff;
    --teal: #00b2d4;
    --badge-orange: #ff7433;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header styles */
header {
    background: #00b2d4;
    padding: 15px 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.header-left {
    flex: 1;
    min-width: 200px;
}

.header-center {
    flex: 2;
    text-align: center;
}

.header-right {
    flex: 1;
    text-align: right;
    min-width: 200px;
}

/* Updated logo styles */
.logo {
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
}

.logo-first {
    color: #fff;
}

/* Association text styles */
.association {
    color: #fff;
    font-size: 14px;
    margin-top: 5px;
    opacity: 0.9;
    font-style: italic;
}

.tagline {
    color: #e6eeff;
    font-size: 22px;
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: -0.2px;
    font-style: italic;
}

.call-button {
    background-color: #ff6633;
    color: #fff;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    font-size: 16px;
    border: 2px solid transparent;
}

.call-button:hover {
    background-color: #ff5419;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 102, 51, 0.3);
}

/* Main content padding to account for fixed header */
main {
    padding-top: 80px;
}

/* Hero section styles */
#hero {
    background-image: url('images/header.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 100px 0 150px;
    text-align: left;
    position: relative;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    max-width: 1000px;
    margin-left: 100px;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 64px;
    margin-bottom: 20px;
    text-align: left;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    letter-spacing: 1px;
}

.hero-content h2 {
    font-size: 28px;
    text-align: left;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    position: relative;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}
/* Offer Banner Styles */
.offer-banner {
    background-color: #00b2d4;
    border-radius: 15px;
    padding: 20px 30px;
    margin-top: 30px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    max-width: 500px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.offer-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10%;
    width: 120%;
    height: 100%;
    background: linear-gradient(45deg, transparent 33.33%, #0095b3 33.33%, #0095b3 66.66%, transparent 66.66%);
    background-size: 60px 40px;
    opacity: 0.2;
    transform: rotate(-5deg);
}

.offer-text {
    flex: 1;
    position: relative;
    z-index: 1;
}

.offer-header {
    font-size: 20px;
    margin-bottom: 10px;
}

.offer-amount {
    font-size: 48px;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 5px;
}

.offer-subtitle {
    font-size: 24px;
    font-weight: bold;
}

.offer-subtitle span {
    font-size: 14px;
    font-weight: normal;
    opacity: 0.8;
}

/* Updated Quality Badge Styles */
.quality-badge {
    width: 100px;
    height: 100px;
    background-color: #ff6633;
    border-radius: 50%;
    position: relative;
    margin-left: 20px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.quality-badge::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: repeating-radial-gradient(
        circle at center,
        #ff6633 0px,
        #ff6633 8px,
        transparent 8px,
        transparent 10px
    );
    border-radius: 50%;
    z-index: -1;
}

.badge-stars {
    position: absolute;
    top: 15%;
    left: 0;
    right: 0;
    text-align: center;
    color: white;
    font-size: 10px;
    letter-spacing: 3px;
}

.badge-content {
    text-align: center;
    margin-top: 5px;
}

.badge-text {
    font-size: 34px;
    font-weight: bold;
    color: white;
    line-height: 1;
}

.badge-label {
    font-size: 16px;
    font-weight: bold;
    color: white;
    line-height: 1;
    margin-top: -2px;
}

.badge-ribbon {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 18px;
    background: #ff6633;
    z-index: -1;
}

.ribbon-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    color: white;
    text-align: center;
    font-size: 10px;
    font-weight: bold;
    letter-spacing: 0.5px;
    padding: 2px 0;
    text-transform: uppercase;
}

.ribbon-left,
.ribbon-right {
    position: absolute;
    top: 0;
    width: 10px;
    height: 100%;
    background: #ff6633;
}

.ribbon-left {
    left: -5px;
    transform: skewX(-15deg);
}

.ribbon-right {
    right: -5px;
    transform: skewX(15deg);
}

/* Why Choose Us section styles */
#why-choose-us {
    padding: 100px 0;
    background-image: url('images/whychooseus.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    position: relative;
}

#why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 1;
}

#why-choose-us .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

#why-choose-us h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 36px;
    position: relative;
    display: inline-block;
    background-color: #ff6633;
    color: white;
    padding: 12px 120px;
    clip-path: polygon(0 0, 100% 0, 90% 100%, 10% 100%);
    font-weight: bold;
}

.choose-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 120px;
    margin-top: 40px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.choose-item {
    display: flex;
    gap: 25px;
    text-align: left;
}

.choose-item img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.choose-item-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.choose-item h3 {
    font-size: 22px;
    color: var(--secondary-color);
    font-weight: bold;
}

.choose-item p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

#why-choose-us .section-title-wrapper h2 {
    background: none;
    clip-path: none;
    padding: 0;
    color: #333;
    font-size: 42px;
    font-weight: 800;
    text-transform: none;
    position: relative;
    display: inline-block;
    margin-bottom: 50px;
}

#why-choose-us .section-title-wrapper h2 span {
    color: var(--primary-color);
}

#why-choose-us .section-title-wrapper h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--teal));
    border-radius: 2px;
}
/* Professional Section Styles */
#professional {
    background-image: url('images/proffesional section.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0;
    position: relative;
}

#professional::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 1;
}

#professional .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

#professional .section-title-wrapper h2 {
    background: none;
    clip-path: none;
    padding: 0;
    color: #333;
    font-size: 42px;
    font-weight: 800;
    text-transform: none;
    position: relative;
    display: inline-block;
    margin-bottom: 50px;
}

#professional .section-title-wrapper h2 span {
    color: var(--primary-color);
}

#professional .section-title-wrapper h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--teal));
    border-radius: 2px;
}

/* Add styles for association text in About section */
#professional .section-title-wrapper .association {
    color: var(--teal);
    font-size: 16px;
    margin-top: 10px;
    font-style: italic;
}

.professional-content {
    position: relative;
}

.professional-image {
    float: left;
    width: 400px;
    height: auto;
    margin: 0 30px 20px 0;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.professional-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 25px;
    text-align: left;
}

/* Clear the float */
.professional-content::after {
    content: '';
    display: table;
    clear: both;
}

/* Services section styles */
#services {
    padding: 100px 0;
    background-image: url('images/Our services bg.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    position: relative;
}

#services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 1;
}

#services .container {
    width: 1200px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

#services .section-title-wrapper {
    width: 100%;
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#services .section-title-wrapper h2 {
    background: none;
    clip-path: none;
    padding: 0;
    color: #333;
    font-size: 42px;
    font-weight: 800;
    text-transform: none;
    position: relative;
    display: inline-block;
    margin-bottom: 50px;
}

#services .section-title-wrapper h2 span {
    color: var(--primary-color);
}

#services .section-title-wrapper h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--teal));
    border-radius: 2px;
}

#services .section-cta {
    margin-top: 30px;
}

.service-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    width: 100%;
    margin: 0 auto 40px;
}

.service-item {
    background: white;
    padding: 40px 25px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.service-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 25px;
    object-fit: contain;
}

.service-item h3 {
    color: var(--secondary-color);
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    text-transform: uppercase;
    line-height: 1.2;
}

.service-item p {
    color: #666;
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
}
/* Areas Served section styles - ADD THIS SECTION AFTER THE SERVICES SECTION STYLES */
#areas-served {
    padding: 100px 0;
    background-image: url('images/map.jpg');
    background-size: cover;
    position: relative;
}

#areas-served::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 1;
}

#areas-served .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

#areas-served .section-title-wrapper {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

#areas-served .section-title-wrapper h2 {
    background: none;
    clip-path: none;
    padding: 0;
    color: #333;
    font-size: 42px;
    font-weight: 800;
    text-transform: none;
    position: relative;
    display: inline-block;
    margin-bottom: 50px;
}

#areas-served .section-title-wrapper h2 span {
    color: var(--primary-color);
}

#areas-served .section-title-wrapper h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--teal));
    border-radius: 2px;
}

.areas-content {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.areas-text {
    flex: 1;
}

.areas-text p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #444;
}

.areas-image {
    flex: 1;
    max-width: 50%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

#areas-served .areas-list {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 30px;
    margin-top: 30px;
    columns: 3;
    column-gap: 40px;
}

#areas-served .areas-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    font-size: 18px;
    color: #444;
    break-inside: avoid;
    line-height: 1.4;
}

#areas-served .areas-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.areas-content {
    display: block;
}

.areas-text {
    width: 100%;
}

.areas-text p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #444;
    text-align: center;
}

#areas-served .section-cta {
    text-align: center;
    margin-top: 40px;
    width: 100%;
    display: flex;
    justify-content: center;
}

#areas-served .section-cta a {
    display: inline-block;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .areas-content {
        flex-direction: column;
    }
    
    .areas-image {
        max-width: 100%;
        margin-top: 30px;
    }

    #areas-served .areas-list {
        columns: 1;
    }
    
    #areas-served .areas-list {
        columns: 1;
    }
    
    #areas-served .section-title-wrapper h2 .first-word,
    #areas-served .section-title-wrapper h2 .second-word {
        font-size: 36px;
    }
}
/* FAQ section styles */
#faq .section-title-wrapper h2 {
    background: none;
    clip-path: none;
    padding: 0;
    color: #333;
    font-size: 42px;
    font-weight: 800;
    text-transform: none;
    position: relative;
    display: inline-block;
    margin-bottom: 50px;
}

#faq .section-title-wrapper h2 span {
    color: var(--primary-color);
}

#faq .section-title-wrapper h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--teal));
    border-radius: 2px;
}
#faq {
    padding: 100px 0;
    background-image: url('images/faq.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

#faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 1;
}

#faq .container {
    position: relative;
    z-index: 2;
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
}
.faq-content {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-question {
    background: white;
    padding: 20px;
    margin: 0;
    font-size: 18px;
    font-weight: bold;
    color: var(--secondary-color);
}

.faq-answer {
    background: white;
    margin: 0;
    padding: 20px;
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

/* Mobile accordion styles */
@media (max-width: 768px) {
    .faq-item {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .faq-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    }

    .faq-question {
        background: linear-gradient(to right, #f8f8f8, white);
        position: relative;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: space-between;
        transition: all 0.3s ease;
        border-left: 4px solid transparent;
    }

    .faq-question::after {
        content: '+';
        font-size: 24px;
        color: var(--primary-color);
        transition: all 0.3s ease;
        font-weight: bold;
        margin-left: 15px;
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(227, 24, 55, 0.1);
    }

    .faq-question:hover {
        background: linear-gradient(to right, #f0f0f0, #f8f8f8);
        color: var(--primary-color);
        border-left: 4px solid var(--primary-color);
    }

    .faq-question.active {
        background: var(--primary-color);
        color: white;
        border-left: 4px solid #b31329;
    }

    .faq-question.active::after {
        content: '−';
        color: white;
        background: rgba(255, 255, 255, 0.2);
        transform: rotate(0deg);
    }

    .faq-answer {
        border-top: 1px solid #eee;
        display: none;
    }
}

/* Add ripple effect on click */
.faq-question:active {
    background: #f0f0f0;
    transform: scale(0.98);
}

#faq .section-cta {
    margin-top: 40px;
}

/* Common styles for section headings */
.section-title-wrapper {
    width: 100%;
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}


/* Section containers */
section .container {
    width: 1000px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Testimonial section styles */
#testimonial {
    padding: 100px 0;
    background-color: #000 !important;
    color: white !important;
    text-align: center;
    position: relative;
}

#testimonial .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

#testimonial .testimonial-title h2 {
    background: none !important;
    clip-path: none !important;
    padding: 0 !important;
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
    letter-spacing: 1px;
}

#testimonial .testimonial-title h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #FFA500;
    border-radius: 2px;
}

#testimonial .testimonials-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

#testimonial blockquote {
    font-size: 24px;
    font-style: italic !important;
    line-height: 1.6;
    position: relative;
    padding: 0 80px;
    margin: 0 auto 30px;
    color: white !important;
}

#testimonial cite {
    display: block;
    font-size: 20px;
    font-style: normal;
    color: #FFA500 !important;
    margin-bottom: 60px;
    font-weight: 600;
}

#testimonial cite:last-child {
    margin-bottom: 0;
}

#testimonial blockquote::before {
    content: '"';
    font-size: 120px;
    font-family: Georgia, serif;
    position: absolute;
    color: #FFA500;
    opacity: 0.3;
    line-height: 1;
    left: 0;
    top: -30px;
}

#testimonial blockquote::after {
    content: '"';
    font-size: 120px;
    font-family: Georgia, serif;
    position: absolute;
    color: #FFA500;
    opacity: 0.3;
    line-height: 1;
    right: 0;
    bottom: -60px;
}

/* Grid layouts */
.choose-items {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 450px));
    gap: 60px 120px;
    width: 100%;
    justify-content: center;
    margin: 0 auto;
}

.service-items {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 225px));
    gap: 40px;
    width: 100%;
    justify-content: center;
    margin: 0 auto;
}

footer {
    background-color: #000;
    color: #fff;
    padding: 20px 0;
}

footer p {
    margin: 0;
    text-align: center;
    color: #fff;
}
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .hero-content h2 {
        font-size: 24px;
    }

    .service-items {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Header adjustments */
    header .container {
        flex-direction: column;
        gap: 10px;
    }

    .header-left, .header-center, .header-right {
        width: 100%;
        text-align: center;
        min-width: unset;
    }

    .tagline {
        font-size: 18px;
        padding: 0 10px;
    }

    /* Association text mobile styles */
    .association {
        text-align: center;
        margin-top: 3px;
        font-size: 12px;
    }

    /* Main content adjustments */
    main {
        padding-top: 150px;
    }

    /* Hero section */
    .hero-content {
        margin-left: 0;
        margin-right: 0;
        padding: 0 20px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 36px;
        text-align: center;
    }

    .hero-content h2 {
        text-align: center;
    }

    /* Offer banner */
    .offer-banner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
        margin: 20px auto;
    }

    .quality-badge {
        margin: 20px 0 0 0;
    }

    /* Why Choose Us section */
    #why-choose-us {
        padding: 60px 0;
    }

    .choose-items {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }

    /* Services section */
    #services {
        padding: 60px 0;
    }

    .service-items {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }

    .service-item {
        padding: 30px 20px;
    }

    /* Professional section */
    #professional {
        padding: 60px 0;
        background-attachment: scroll;
    }

    .professional-image {
        float: none;
        width: 100%;
        max-width: 400px;
        margin: 0 auto 20px;
        display: block;
    }

    .professional-content p {
        text-align: center;
        padding: 0 15px;
    }

    /* Areas served section */
    #areas-served {
        padding: 60px 0;
    }

    #areas-served .areas-list {
        columns: 2;
        padding: 0 15px;
    }

    /* FAQ section */
    #faq {
        padding: 60px 0;
    }

    .faq-item {
        margin: 0 15px 20px;
    }

    /* Testimonials */
    #testimonial {
        padding: 60px 0;
    }

    #testimonial blockquote {
        padding: 0 40px;
        font-size: 20px;
    }

    #testimonial blockquote::before,
    #testimonial blockquote::after {
        font-size: 80px;
    }

    /* Section title adjustments */
    .section-title-wrapper h2 {
        font-size: 32px;
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    /* Header further adjustments */
    .logo {
        font-size: 20px;
    }

    .tagline {
        font-size: 16px;
    }

    .call-button {
        width: 100%;
        text-align: center;
        padding: 10px;
        font-size: 14px;
    }

    /* Hero section */
    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content h2 {
        font-size: 20px;
    }

    /* Offer banner */
    .offer-amount {
        font-size: 36px;
    }

    .offer-subtitle {
        font-size: 20px;
    }

    /* Areas served section */
    #areas-served .areas-list {
        columns: 1;
    }

    /* FAQ section */
    .faq-question {
        font-size: 18px;
        padding-left: 30px;
    }

    .faq-answer {
        font-size: 16px;
        padding-left: 30px;
    }

    /* Testimonials */
    #testimonial blockquote {
        padding: 0 30px;
        font-size: 18px;
    }

    #testimonial cite {
        font-size: 16px;
    }

    #testimonial blockquote::before,
    #testimonial blockquote::after {
        font-size: 60px;
    }

    /* Section padding adjustments */
    section {
        padding: 40px 0 !important;
    }

    /* Improve touch targets */
    .call-button,
    .faq-item,
    .service-item {
        padding: 15px;
    }
}

/* Add smooth scrolling for better mobile experience */
html {
    scroll-behavior: smooth;
}

/* Ensure images don't overflow their containers */
img {
    max-width: 100%;
    height: auto;
}

/* Prevent horizontal scrolling */
body {
    overflow-x: hidden;
    width: 100%;
}

/* Ensure all images are responsive */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Prevent horizontal scrolling */
body {
    overflow-x: hidden;
    width: 100%;
}

/* Update media queries */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }

    .hero-content {
        margin-left: 20px;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .hero-content h2 {
        font-size: 24px;
    }

    .service-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    #professional {
        background-attachment: scroll;
    }
}

@media (max-width: 768px) {
    /* Header adjustments */
    header .container {
        flex-direction: column;
        gap: 10px;
        padding: 10px 20px;
    }

    .header-left, .header-center, .header-right {
        width: 100%;
        text-align: center;
        min-width: unset;
    }

    .tagline {
        font-size: 18px;
        padding: 0 10px;
    }

    /* Main content adjustments */
    main {
        padding-top: 160px;
    }

    /* Hero section */
    .hero-content {
        margin: 0;
        padding: 0 20px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 36px;
        text-align: center;
        margin-bottom: 15px;
        padding-top: 20px;
    }

    .hero-content h2 {
        text-align: center;
        font-size: 22px;
    }

    /* Offer banner */
    .offer-banner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
        margin: 20px auto;
        width: 90%;
    }

    .quality-badge {
        margin: 20px 0 0 0;
    }

    /* Why Choose Us section */
    .choose-items {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }

    .choose-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }

    .choose-item img {
        width: 60px;
        height: 60px;
    }

    /* Services section */
    .service-items {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }

    /* Professional section */
    .professional-image {
        float: none;
        width: 100%;
        max-width: 400px;
        margin: 0 auto 20px;
    }

    .professional-content p {
        text-align: center;
        padding: 0 15px;
    }

    /* Areas served section */
    #areas-served .areas-list {
        columns: 2;
        padding: 0 15px;
        column-gap: 20px;
    }

    /* Section spacing */
    section {
        padding: 60px 0;
    }

    .section-title-wrapper {
        margin-bottom: 40px;
    }

    .section-title-wrapper h2 {
        font-size: 32px;
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    /* Header */
    .logo {
        font-size: 20px;
    }

    .tagline {
        font-size: 16px;
    }

    .call-button {
        width: 100%;
        text-align: center;
        padding: 12px;
        font-size: 14px;
    }

    /* Hero section */
    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content h2 {
        font-size: 18px;
    }

    /* Offer banner */
    .offer-amount {
        font-size: 36px;
    }

    .offer-subtitle {
        font-size: 20px;
    }

    /* Areas served section */
    #areas-served .areas-list {
        columns: 1;
    }

    /* FAQ section */
    .faq-item {
        padding: 20px 15px;
    }

    .faq-question {
        font-size: 18px;
        padding-left: 30px;
    }

    .faq-answer {
        font-size: 16px;
        padding-left: 30px;
    }

    /* Testimonials */
    #testimonial blockquote {
        padding: 0 20px;
        font-size: 18px;
    }

    #testimonial cite {
        font-size: 16px;
    }

    #testimonial blockquote::before,
    #testimonial blockquote::after {
        font-size: 40px;
    }

    /* Section spacing */
    section {
        padding: 40px 0;
    }

    /* Improve touch targets */
    .call-button,
    .faq-item,
    .service-item {
        padding: 15px;
    }
}

/* Add smooth scrolling for better mobile experience */
html {
    scroll-behavior: smooth;
}

/* Ensure all images are responsive */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Prevent horizontal scrolling */
body {
    overflow-x: hidden;
    width: 100%;
}

/* Add smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Mobile-friendly styles */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }

    .hero-content {
        margin-left: 20px;
    }

    .hero-content h1 {
        font-size: 48px;
    }

    .hero-content h2 {
        font-size: 24px;
    }

    .service-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    #professional {
        background-attachment: scroll;
    }
}

@media (max-width: 768px) {
    /* Header adjustments */
    header .container {
        flex-direction: column;
        gap: 10px;
        padding: 10px 20px;
    }

    .header-left, .header-center, .header-right {
        width: 100%;
        text-align: center;
        min-width: unset;
    }

    .tagline {
        font-size: 18px;
        padding: 0 10px;
    }

    /* Main content adjustments */
    main {
        padding-top: 160px;
    }

    /* Hero section */
    .hero-content {
        margin: 0;
        padding: 0 20px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 36px;
        text-align: center;
        margin-bottom: 15px;
    }

    .hero-content h2 {
        text-align: center;
        font-size: 22px;
    }

    /* Offer banner */
    .offer-banner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 20px;
        margin: 20px auto;
        width: 90%;
    }

    .quality-badge {
        margin: 20px 0 0 0;
    }

    /* Why Choose Us section */
    #why-choose-us {
        padding: 60px 0;
    }

    .choose-items {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }

    .choose-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }

    .choose-item img {
        width: 60px;
        height: 60px;
    }

    /* Services section */
    #services {
        padding: 60px 0;
    }

    .service-items {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }

    .service-item {
        padding: 30px 20px;
    }

    /* Professional section */
    #professional {
        padding: 60px 0;
    }

    .professional-image {
        float: none;
        width: 100%;
        max-width: 400px;
        margin: 0 auto 20px;
        display: block;
    }

    .professional-content p {
        text-align: center;
        padding: 0 15px;
    }

    /* Areas served section */
    #areas-served {
        padding: 60px 0;
    }

    .areas-content {
        flex-direction: column;
    }
    
    .areas-image {
        max-width: 100%;
        margin-top: 30px;
    }

    #areas-served .areas-list {
        columns: 2;
        padding: 0 15px;
        column-gap: 20px;
    }

    /* FAQ section */
    #faq {
        padding: 60px 0;
    }

    .faq-item {
        margin: 0 15px 20px;
    }

    /* Testimonials */
    #testimonial {
        padding: 60px 0;
    }

    #testimonial blockquote {
        padding: 0 40px;
        font-size: 20px;
    }

    #testimonial blockquote::before,
    #testimonial blockquote::after {
        font-size: 80px;
    }

    /* Section title adjustments */
    .section-title-wrapper {
        margin-bottom: 40px;
    }

    .section-title-wrapper h2,
    #areas-served .section-title-wrapper h2 .first-word,
    #areas-served .section-title-wrapper h2 .second-word {
        font-size: 32px;
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    /* Header */
    .logo {
        font-size: 20px;
    }

    .tagline {
        font-size: 16px;
    }

    .call-button {
        width: 100%;
        text-align: center;
        padding: 12px;
        font-size: 14px;
    }

    /* Hero section */
    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content h2 {
        font-size: 18px;
    }

    /* Offer banner */
    .offer-amount {
        font-size: 36px;
    }

    .offer-subtitle {
        font-size: 20px;
    }

    /* Areas served section */
    #areas-served .areas-list {
        columns: 1;
    }

    /* FAQ section */
    .faq-item {
        padding: 20px 15px;
    }

    .faq-question {
        font-size: 18px;
        padding-left: 30px;
    }

    .faq-answer {
        font-size: 16px;
        padding-left: 30px;
    }

    /* Testimonials */
    #testimonial blockquote {
        padding: 0 20px;
        font-size: 18px;
    }

    #testimonial cite {
        font-size: 16px;
    }

    #testimonial blockquote::before,
    #testimonial blockquote::after {
        font-size: 40px;
    }

    /* Section spacing */
    section {
        padding: 40px 0 !important;
    }

    /* Improve touch targets */
    .call-button,
    .faq-item,
    .service-item {
        padding: 15px;
    }
}

/* Make all images responsive */
img {
    max-width: 100%;
    height: auto;
}

/* Prevent horizontal scrolling */
body {
    overflow-x: hidden;
}

/* Mobile styles */
@media (max-width: 768px) {
    /* Make header stack on mobile */
    header .container {
        flex-direction: column;
        text-align: center;
    }

    .header-left, .header-center, .header-right {
        width: 100%;
        min-width: unset;
        text-align: center;
    }

    /* Adjust hero section */
    .hero-content {
        margin-left: 0;
        padding: 0 20px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 36px;
        text-align: center;
    }

    .hero-content h2 {
        font-size: 24px;
        text-align: center;
    }

    /* Make grids single column */
    .choose-items,
    .service-items {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 15px;
    }

    /* Stack offer banner */
    .offer-banner {
        flex-direction: column;
        text-align: center;
    }

    .quality-badge {
        margin: 20px 0 0 0;
    }

    /* Make professional image responsive */
    .professional-image {
        float: none;
        width: 100%;
        max-width: 400px;
        margin: 0 auto 20px;
    }

    /* Adjust areas list */
    #areas-served .areas-list {
        columns: 2;
    }

    /* Reduce section padding */
    section {
        padding: 60px 0;
    }
}

/* Small mobile styles */
@media (max-width: 480px) {
    /* Further reduce font sizes */
    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content h2 {
        font-size: 20px;
    }

    /* Make call button full width */
    .call-button {
        width: 100%;
        text-align: center;
    }

    /* Single column areas list */
    #areas-served .areas-list {
        columns: 1;
    }

    /* Reduce section padding more */
    section {
        padding: 40px 0;
    }
}

@media (max-width: 768px) {
    /* Why Choose Us section improvements */
    #why-choose-us {
        padding: 12px 0;
    }

    .choose-items {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 6px;
        padding: 0 6px;
        margin-top: 10px;
        width: 100%;
    }

    .choose-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 15px;
        background: rgba(255, 255, 255, 0.98);
        border-radius: 4px;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
        width: 100%;
        margin: 0;
        min-height: 160px;
        display: flex;
        justify-content: flex-start;
    }

    .choose-item img {
        width: 38px;
        height: 38px;
        margin-bottom: 10px;
        opacity: 0.9;
    }

    .choose-item h3 {
        font-size: 14px;
        margin-bottom: 8px;
        line-height: 1.4;
        font-weight: 600;
        padding: 0 6px;
        color: #444;
        white-space: normal;
        overflow: visible;
        min-height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
    }

    .choose-item p {
        font-size: 12px;
        line-height: 1.5;
        margin: 0;
        color: #777;
        padding: 0 6px;
        overflow: visible;
        white-space: normal;
        min-height: 60px;
        width: 100%;
    }

    .choose-item-content {
        text-align: center;
        width: 100%;
    }

    #why-choose-us .section-title-wrapper {
        margin-bottom: 8px;
    }

    #why-choose-us .section-title-wrapper h2 {
        font-size: 20px;
        margin-bottom: 10px;
        color: #333;
    }

    #why-choose-us .section-title-wrapper h2::after {
        bottom: -6px;
        height: 2px;
        width: 60px;
    }

    #why-choose-us .section-title-wrapper h2 span {
        display: inline;
        color: var(--primary-color);
    }

    /* Adjust container padding */
    #why-choose-us .container {
        padding: 0 10px;
        width: 100%;
        max-width: none;
    }

    /* About/Professional section improvements */
    #professional {
        padding: 40px 0;
        background-attachment: scroll;
    }

    .professional-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0 15px;
    }

    .professional-image {
        float: none;
        width: 100%;
        max-width: 400px;
        margin: 0 auto 30px;
        border-radius: 10px;
    }

    .professional-content p {
        text-align: center;
        font-size: 16px;
        margin-bottom: 20px;
    }

    /* Testimonials section improvements */
    #testimonial {
        padding: 40px 0;
    }

    #testimonial .testimonial-title h2 {
        font-size: 32px;
        margin-bottom: 40px;
        padding: 0 15px;
    }

    #testimonial blockquote {
        padding: 30px 20px;
        font-size: 18px;
        margin-bottom: 40px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 10px;
    }

    #testimonial blockquote::before,
    #testimonial blockquote::after {
        font-size: 60px;
        opacity: 0.2;
    }

    #testimonial cite {
        font-size: 16px;
        margin-bottom: 30px;
    }

    /* Areas Served section improvements */
    #areas-served {
        padding: 40px 0;
    }

    .areas-content {
        flex-direction: column;
        padding: 0 15px;
    }

    .areas-text {
        width: 100%;
        margin-bottom: 30px;
    }

    .areas-text h3 {
        font-size: 24px;
        margin-bottom: 20px;
        text-align: center;
    }

    #areas-served .areas-list {
        columns: 2;
        column-gap: 20px;
        margin: 20px 0;
    }

    #areas-served .areas-list li {
        font-size: 16px;
        margin-bottom: 12px;
        padding: 8px 8px 8px 30px;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 5px;
        break-inside: avoid;
    }

    #areas-served .section-cta {
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    /* Further improvements for smaller screens */
    .choose-item {
        padding: 15px;
    }

    #areas-served .areas-list {
        columns: 1;
    }

    #testimonial blockquote {
        padding: 20px 15px;
        font-size: 16px;
    }

    #testimonial blockquote::before,
    #testimonial blockquote::after {
        font-size: 40px;
    }

    .professional-content p {
        font-size: 15px;
        line-height: 1.6;
    }

    #areas-served .areas-list li {
        font-size: 15px;
        margin-bottom: 10px;
    }
}

/* Step 1: Why Choose Us section mobile improvements */
@media (max-width: 768px) {
    #why-choose-us {
        padding: 30px 10px;
    }

    .choose-items {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 0 10px;
    }

    .choose-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 12px;
        background: rgba(255, 255, 255, 0.95);
        border-radius: 8px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    }

    .choose-item img {
        width: 40px;
        height: 40px;
        margin-bottom: 8px;
    }

    .choose-item h3 {
        margin-bottom: 6px;
        font-size: 16px;
    }

    .choose-item p {
        font-size: 14px;
        line-height: 1.4;
        margin: 0;
        color: #666;
    }

    #why-choose-us .section-title-wrapper {
        margin-bottom: 20px;
    }

    #why-choose-us .section-title-wrapper h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    #why-choose-us {
        padding: 30px 15px;
    }

    .choose-item {
        padding: 20px;
    }
}


/* Step 2: Professional/About section mobile improvements */
@media (max-width: 768px) {
    #professional {
        padding: 40px 15px;
        background-attachment: scroll;
    }

    .professional-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.95));
        border-radius: 15px;
        padding: 25px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
        border-left: 4px solid var(--primary-color);
        position: relative;
        overflow: hidden;
    }

    .professional-image {
        float: none;
        width: 100%;
        max-width: 400px;
        margin: 0 auto 20px;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    }

    .professional-content p {
        text-align: center;
        font-size: 15px;
        line-height: 1.7;
        margin-bottom: 15px;
        color: #444;
        text-shadow: 0 1px 1px rgba(255, 255, 255, 0.8);
    }

    .professional-content p:not(:first-child) {
        display: none;
    }

    .professional-content.expanded p {
        display: block;
    }

    .read-more-btn {
        background: linear-gradient(to right, #f8f8f8, white);
        padding: 12px 20px;
        margin: 10px 0;
        cursor: pointer;
        font-size: 16px;
        font-weight: bold;
        color: var(--secondary-color);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        transition: all 0.3s ease;
        border: none;
        width: 100%;
        border-left: 4px solid transparent;
    }

    .read-more-btn::after {
        content: '+';
        font-size: 20px;
        color: var(--primary-color);
        margin-left: 8px;
        transition: transform 0.3s ease;
    }

    .read-more-btn:hover {
        background: linear-gradient(to right, #f0f0f0, #f8f8f8);
        color: var(--primary-color);
        border-left: 4px solid var(--primary-color);
    }

    .read-more-btn.active {
        background: var(--primary-color);
        color: white;
        border-left: 4px solid #b31329;
    }

    .read-more-btn.active::after {
        content: '−';
        color: white;
        transform: rotate(0deg);
    }

    /* Disclaimer improvements */
    .disclaimer {
        margin-top: 20px;
        padding: 15px;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 10px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        border-left: 4px solid var(--teal);
        display: none;
    }

    .disclaimer.visible {
        display: block;
    }

    .disclaimer-toggle {
        background: linear-gradient(to right, #f8f8f8, white);
        padding: 12px 20px;
        margin-top: 15px;
        cursor: pointer;
        font-size: 15px;
        font-weight: bold;
        color: var(--teal);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        transition: all 0.3s ease;
        border: none;
        width: 100%;
        border-left: 4px solid transparent;
    }

    .disclaimer-toggle::after {
        content: 'ⓘ';
        font-size: 18px;
        margin-left: 8px;
        transition: transform 0.3s ease;
    }

    .disclaimer-toggle:hover {
        background: linear-gradient(to right, #f0f0f0, #f8f8f8);
        border-left: 4px solid var(--teal);
    }

    .disclaimer-toggle.active {
        background: var(--teal);
        color: white;
        border-left: 4px solid #008ca9;
    }
}
/* Disclaimer styles */
.disclaimer {
    margin-top: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--teal);
}

.disclaimer h4 {
    color: var(--secondary-color);
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: bold;
}

.disclaimer p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 0;
    color: #555;
}

.disclaimer a {
    color: var(--teal);
    text-decoration: none;
    transition: color 0.3s ease;
}

.disclaimer a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .disclaimer {
        margin-top: 20px;
        padding: 15px;
    }
    
    .disclaimer h4 {
        font-size: 18px;
    }
    
    .disclaimer p {
        font-size: 15px;
    }
}

/* Clear the float */
.professional-content::after {
    content: '';
    display: table;
    clear: both;
}

@media (max-width: 480px) {
    #professional {
        padding: 30px 15px;
    }

    .professional-content {
        padding: 20px;
    }

    .professional-content p {
        font-size: 15px;
        line-height: 1.6;
    }
}


/* Step 3: Testimonials section mobile improvements */
@media (max-width: 768px) {
    #testimonial {
        padding: 40px 15px;
    }

    #testimonial .testimonial-title h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }

    #testimonial blockquote {
        padding: 30px;
        font-size: 18px;
        margin-bottom: 30px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        position: relative;
    }

    #testimonial blockquote::before,
    #testimonial blockquote::after {
        font-size: 60px;
        opacity: 0.3;
        position: absolute;
    }

    #testimonial blockquote::before {
        left: 15px;
        top: -15px;
    }

    #testimonial blockquote::after {
        right: 15px;
        bottom: -35px;
    }

    #testimonial cite {
        font-size: 16px;
        margin: 20px 0 30px;
        display: block;
    }
}

@media (max-width: 480px) {
    #testimonial {
        padding: 30px 15px;
    }

    #testimonial blockquote {
        padding: 25px 20px;
        font-size: 16px;
        margin-bottom: 25px;
    }

    #testimonial blockquote::before,
    #testimonial blockquote::after {
        font-size: 40px;
    }

    #testimonial blockquote::before {
        left: 10px;
        top: -10px;
    }

    #testimonial blockquote::after {
        right: 10px;
        bottom: -25px;
    }

    #testimonial cite {
        font-size: 15px;
        margin: 15px 0 25px;
    }
}


/* Step 4: Areas Served section mobile improvements */
@media (max-width: 768px) {
    #areas-served {
        padding: 40px 15px;
    }

    .areas-content {
        flex-direction: column;
        background: rgba(255, 255, 255, 0.95);
        border-radius: 12px;
        padding: 25px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        margin: 0 auto;
        max-width: 600px;
    }

    .areas-text {
        width: 100%;
        margin-bottom: 25px;
    }

    .areas-text h3 {
        font-size: 24px;
        margin-bottom: 20px;
        text-align: center;
        color: #333;
    }

    #areas-served .areas-list {
        columns: 2;
        column-gap: 25px;
        margin: 20px 0;
        padding: 0;
    }

    #areas-served .areas-list li {
        font-size: 16px;
        margin-bottom: 15px;
        padding: 10px 10px 10px 35px;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        break-inside: avoid;
        position: relative;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    #areas-served .areas-list li:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    #areas-served .areas-list li::before {
        left: 12px;
        top: 50%;
        transform: translateY(-50%);
    }
}

@media (max-width: 480px) {
    #areas-served {
        padding: 30px 15px;
    }

    .areas-content {
        padding: 20px;
    }

    #areas-served .areas-list {
        columns: 1;
    }

    #areas-served .areas-list li {
        font-size: 15px;
        margin-bottom: 12px;
        padding: 8px 8px 8px 30px;
    }

    .areas-text h3 {
        font-size: 22px;
        margin-bottom: 15px;
    }
}


/* Improved mobile responsiveness for key sections */
@media (max-width: 768px) {
    /* Why Choose Us section fixes */
    #why-choose-us .container {
        width: 100%;
        max-width: 600px;
    }

    .choose-items {
        width: 100%;
        max-width: 100%;
    }

    .choose-item {
        width: 100%;
        margin: 0;
    }

    /* Professional/About section fixes */
    #professional .container {
        width: 100%;
        max-width: 600px;
    }

    .professional-content {
        width: 100%;
        max-width: 100%;
    }

    .professional-image {
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    /* Areas Served section fixes */
    #areas-served .container {
        width: 100%;
        max-width: 600px;
    }

    .areas-content {
        width: 100%;
        max-width: 100%;
    }

    .areas-image {
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    /* Testimonials section fixes */
    #testimonial .container {
        width: 100%;
        max-width: 600px;
    }

    #testimonial .testimonials-content {
        width: 100%;
        max-width: 100%;
    }

    #testimonial blockquote {
        width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    /* Further adjustments for smaller screens */
    #why-choose-us .container,
    #professional .container,
    #areas-served .container,
    #testimonial .container {
        max-width: 100%;
        padding: 0 15px;
    }

    .choose-item,
    .professional-content,
    .areas-content,
    #testimonial blockquote {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
}


/* Additional mobile responsiveness fixes */
@media (max-width: 768px) {
    /* Why Choose Us section fixes */
    #why-choose-us .container {
        width: 100%;
        padding: 0 15px;
    }

    .choose-items {
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .choose-item {
        width: 100%;
        box-sizing: border-box;
        margin: 0 0 20px 0;
    }

    /* Professional/About section fixes */
    #professional .container {
        width: 100%;
        padding: 0 15px;
    }

    .professional-content {
        width: 100%;
        box-sizing: border-box;
        margin: 0;
    }

    /* Areas Served section fixes */
    #areas-served .container {
        width: 100%;
        padding: 0 15px;
    }

    .areas-content {
        width: 100%;
        box-sizing: border-box;
        margin: 0;
    }

    /* Testimonials section fixes */
    #testimonial .container {
        width: 100%;
        padding: 0 15px;
    }

    #testimonial .testimonials-content {
        width: 100%;
        box-sizing: border-box;
        margin: 0;
    }

    #testimonial blockquote {
        width: 100%;
        box-sizing: border-box;
        margin: 0 0 20px 0;
    }
}

@media (max-width: 480px) {
    /* Additional small screen fixes */
    .container {
        padding: 0 10px;
    }

    #why-choose-us,
    #professional,
    #areas-served,
    #testimonial {
        padding: 30px 0;
    }

    .section-title-wrapper h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }
}


/* Enhanced mobile responsiveness fixes */
@media (max-width: 768px) {
    /* Why Choose Us section fixes */
    #why-choose-us .container {
        width: 100%;
        padding: 0 15px;
        max-width: none;
    }

    .choose-items {
        width: 100%;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .choose-item {
        width: 100%;
        box-sizing: border-box;
        margin: 0;
        padding: 20px;
        background: rgba(255, 255, 255, 0.95);
    }

    /* Professional/About section fixes */
    #professional .container {
        width: 100%;
        padding: 0 15px;
        max-width: none;
    }

    .professional-content {
        width: 100%;
        box-sizing: border-box;
        margin: 0;
        padding: 20px;
        background: rgba(255, 255, 255, 0.95);
    }

    /* Areas Served section fixes */
    #areas-served .container {
        width: 100%;
        padding: 0 15px;
        max-width: none;
    }

    .areas-content {
        width: 100%;
        box-sizing: border-box;
        margin: 0;
        padding: 20px;
        background: rgba(255, 255, 255, 0.95);
    }

    /* Testimonials section fixes */
    #testimonial .container {
        width: 100%;
        padding: 0 15px;
        max-width: none;
    }

    #testimonial .testimonials-content {
        width: 100%;
        box-sizing: border-box;
        margin: 0;
    }

    #testimonial blockquote {
        width: 100%;
        box-sizing: border-box;
        margin: 0 0 20px 0;
        padding: 20px;
        background: rgba(255, 255, 255, 0.1);
    }
}

@media (max-width: 480px) {
    /* Further small screen improvements */
    .container {
        padding: 0 10px;
    }

    #why-choose-us,
    #professional,
    #areas-served,
    #testimonial {
        padding: 20px 0;
    }

    .section-title-wrapper h2 {
        font-size: 24px;
        margin-bottom: 20px;
        padding: 0 10px;
    }

    .choose-item,
    .professional-content,
    .areas-content {
        padding: 15px;
    }

    #testimonial blockquote {
        padding: 15px;
        font-size: 16px;
    }
}

/* Mobile Accordion Styles */
@media (max-width: 768px) {
    .service-items {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 0 15px;
        max-width: 600px;
        margin: 0 auto;
    }

    .service-item {
        margin: 0;
        padding: 0;
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .service-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    }

    .service-item img {
        display: none;
    }

    .service-item h3 {
        background: linear-gradient(to right, #f8f8f8, white);
        padding: 20px;
        margin: 0;
        position: relative;
        cursor: pointer;
        font-size: 18px;
        font-weight: bold;
        color: var(--secondary-color);
        display: flex;
        align-items: center;
        justify-content: space-between;
        transition: all 0.3s ease;
        border-left: 4px solid transparent;
    }

    .service-item h3::after {
        content: '+';
        font-size: 24px;
        color: var(--primary-color);
        transition: all 0.3s ease;
        font-weight: bold;
        margin-left: 15px;
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(227, 24, 55, 0.1);
    }

    .service-item h3:hover {
        background: linear-gradient(to right, #f0f0f0, #f8f8f8);
        color: var(--primary-color);
        border-left: 4px solid var(--primary-color);
    }

    .service-item h3.active {
        background: var(--primary-color);
        color: white;
        border-left: 4px solid #b31329;
    }

    .service-item h3.active::after {
        content: '−';
        color: white;
        background: rgba(255, 255, 255, 0.2);
        transform: rotate(0deg);
    }

    .service-item p {
        background: white;
        margin: 0;
        padding: 20px;
        font-size: 16px;
        line-height: 1.6;
        color: #666;
        border-top: 1px solid #eee;
        display: none;
    }

    /* Add ripple effect on click */
    .service-item h3:active {
        background: #f0f0f0;
        transform: scale(0.98);
    }
}
