.topSection {
    padding: 200px 0 123px 0;
}
.topSection .titleAndBtn.service {
    width: 100% !important;
    align-items: center;
}
.topSection .titleTopSection.service {
    text-align: center;
}
/* ================================
   RESPONSIVE CSS LAYOUT
   ================================ */

/* Base Styles */
.text-zone {
    width: var(--rn-width1, 90%);
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
}

.section-title {
    text-align: center;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
}

.section-description {
    text-align: center;
    font-size: clamp(1rem, 2.5vw, 1.1875rem);
    font-family: 'PoppinsRegular';
    width: 91%;
    line-height: 1.6;
}

.section-description a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Main Container */
.containerPourquoi {
    display: flex;
    flex-direction: column;
    background-color: #f0f0f0;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    width: var(--rn-width1, 90%);
    margin: auto;
}

/* Left Column */
.left-column {
    flex: 1;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 300px;
}

.left-column h2 {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    font-weight: bold;
    line-height: 1.2;
    margin-top: 10px;
}

.left-column p {
    font-size: clamp(0.875rem, 2vw, 1rem);
    line-height: 1.6;
    margin: 1rem 0;
}

.google-partner-logo {
    margin-top: 1.5rem;
}

.google-partner-logo img {
    width: 100%;
    height: auto;
}

/* Right Column */
.right-column {
    flex: 1;
    padding: 2rem 1.5rem;
}

/* Accordion Styles */
.accordion-item {
    margin: 15px 0;
    border-radius: 20px;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.accordion-header {
    display: flex;
    align-items: center;
    padding: 12px 19px 8px 19px;
    cursor: pointer;
    background-color: white;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
    padding: 0 1rem 0 2rem;
}

.accordion-item.expanded .accordion-content {
    max-height: 200px;
    padding: 0 1rem 10px 2rem;
    font-size: clamp(0.8125rem, 2vw, 0.875rem);
    color: #646468;
    font-family: 'PoppinsSemiBold';
    line-height: 1.5;
}

.icon {
    font-size: 1.25rem;
    font-weight: bold;
    margin-right: 0.75rem;
    transition: transform 0.3s ease-in-out;
    flex-shrink: 0;
}

.accordion-item.expanded .icon {
    transform: rotate(135deg);
    margin-bottom: 5px;
}

.accordion-item:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.title {
    font-weight: bold;
    font-size: clamp(0.875rem, 2.5vw, 1rem);
    line-height: 1.4;
    flex: 1;
}

/* Bottom Section */
.bottom-section h2 {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    margin-bottom: 0.5rem;
}

.bottom-section p {
    font-size: clamp(0.8125rem, 2vw, 0.9rem);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* ================================
   MEDIA QUERIES
   ================================ */

/* Tablet Styles (768px and up) */
@media (min-width: 768px) {
    .containerPourquoi {
        flex-direction: row;
    }

    .left-column {
        padding: 2.5rem;
    }

    .right-column {
        padding: 2.5rem;
    }

    .accordion-content {
        padding: 0 1rem 0 2.5rem;
    }

    .accordion-item.expanded .accordion-content {
        padding: 0 1rem 8px 2.5rem;
    }

    .icon {
        font-size: 1.5rem;
        margin-right: 1rem;
    }
}

/* Desktop Styles (1024px and up) */
@media (min-width: 1024px) {
    /*top section*/
    .imageWithAnimation {
        top: -240px;
    }


    .left-column {
        padding: 3rem;
    }
    .right-column {
        padding: 3rem;
    }
    .accordion-content {
        padding: 0 1rem 0 3rem;
    }
    .accordion-item.expanded .accordion-content {
        padding: 0 1rem 6px 3rem;
    }
}

/* Large Desktop Styles (1200px and up) */
@media (min-width: 1200px) {
    .text-zone {
        padding: 0 2rem;
    }
}

/* Mobile Styles (767px and down) */
@media (max-width: 767px) {
    .text-zone {
        padding: 0 0.5rem;
    }

    .containerPourquoi {
        margin: 1rem auto;
        width: calc(100% - 1rem);
        border-radius: 8px;
    }

    .accordion-header {
        padding: 15px;
        flex-wrap: wrap;
    }

    .accordion-content {
        padding: 0 1rem 0 1.5rem;
    }

    .accordion-item.expanded .accordion-content {
        padding: 0 1rem 12px 1.5rem;
        max-height: 250px;
    }

    .google-partner-logo {
        text-align: center;
        margin-top: 1rem;
        max-width: 300px;
    }

    .left-column {
        min-height: auto;
    }
}

/* Extra Small Screens (480px and down) */
@media (max-width: 480px) {
    .left-column,
    .right-column {
        padding: 1.5rem 1rem;
    }

    .section-description {
        width: 95%;
    }

    .accordion-item {
        margin: 10px 0;
        border-radius: 15px;
    }

    .accordion-header {
        padding: 12px;
    }

    .containerPourquoi {
        width: calc(100% - 0.5rem);
        margin: 0.5rem auto;
    }
}

/* Extra Extra Small Screens (320px and down) */
@media (max-width: 320px) {
    .left-column,
    .right-column {
        padding: 1rem 0.75rem;
    }

    .text-zone {
        padding: 0 0.25rem;
    }

    .section-description {
        width: 98%;
        font-size: 0.9rem;
    }
}
