/* .service_page {
    padding-top: 165px;
    padding-bottom: 90px;
}

.service_page__header {
    margin-bottom: 40px;
}

.service_page h1 {
    font-size: 2.5rem;
    color: #021549;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.3;
    text-align: left;
}

.service_page__wrapper {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: start;
}

.service_page__text-annotation {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 30px;
}

.service_page__text-image {
    max-width: 340px;
    height: 200px;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.service_page__text-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service_page__text-image:hover img {
    transform: scale(1.03);
}

.textpage__text {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
    flex: 1;
}

.textpage__text h2 {
    color: #021549;
    font-size: 1.6rem;
    margin: 30px 0 18px 0;
    font-weight: 600;
}

.textpage__text h3 {
    color: #021549;
    font-size: 1.3rem;
    margin: 25px 0 15px 0;
    font-weight: 600;
}

.textpage__text h4 {
    color: #021549;
    font-size: 1.1rem;
    margin: 20px 0 12px 0;
    font-weight: 600;
}

.textpage__text p {
    margin-bottom: 18px;
}

.textpage__text ul {
    margin: 18px 0;
    padding-left: 24px;
    list-style: none;
}

.textpage__text ul li {
    margin-bottom: 8px;
    line-height: 1.6;
    position: relative;
    padding-left: 20px;
}

.textpage__text ul li::before {
    content: "•";
    color: #850003;
    font-size: 1.2em;
    position: absolute;
    left: 0;
    top: 0;
}

.textpage__text ol {
    margin: 18px 0;
    padding-left: 24px;
    list-style: none;
    counter-reset: item;
}

.textpage__text ol li {
    margin-bottom: 8px;
    line-height: 1.6;
    position: relative;
    padding-left: 28px;
    counter-increment: item;
}

.textpage__text ol li::before {
    content: counter(item) ".";
    color: #850003;
    font-weight: 600;
    position: absolute;
    left: 0;
    top: 0;
    min-width: 20px;
}

.textpage__text figure.table {
    margin: 25px 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    background: #fff;
    max-width: 100%;
}

.textpage__text table {
    width: auto;
    min-width: 100%;
    border-collapse: collapse;
    font-size: 15px;
    line-height: 1.5;
}

.textpage__text table thead {
    background: linear-gradient(135deg, #021549, #1a365d);
}

.textpage__text table th {
    color: white;
    font-weight: 600;
    padding: 16px 12px;
    text-align: left;
    border-bottom: 2px solid #850003;
    font-size: 15px;
    white-space: nowrap;
}

.textpage__text table td {
    padding: 14px 12px;
    border-bottom: 1px solid #e2e8f0;
    color: #4a5568;
    white-space: normal;
}

.textpage__text table tbody tr:hover {
    background-color: #f7fafc;
    transition: background-color 0.2s ease;
}

.textpage__text table tbody tr:last-child td {
    border-bottom: none;
}

.textpage__text table th:first-child,
.textpage__text table td:first-child {
    padding-left: 20px;
}

.textpage__text table th:last-child,
.textpage__text table td:last-child {
    padding-right: 20px;
}

.textpage__text strong {
    font-weight: 600;
}

.textpage__text a {
    color: #850003;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.textpage__text a:hover {
    color: #a80f12;
    text-decoration: underline;
}

.textpage__text blockquote {
    background: #f8faff;
    border-left: 4px solid #850003;
    padding: 20px 25px;
    margin: 25px 0;
    border-radius: 0 8px 8px 0;
    font-style: italic;
}

.textpage__text img:not(.service_page__text-image img) {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

.service_page__right-column {
    position: sticky;
    top: 190px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service_page__aside {
    background: #eff3ff;
    padding: 30px 25px;
    border-radius: 10px;
    text-align: center;
}

.service_page__aside .price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    margin-bottom: 25px;
    color: #021549;
}

.service_page__aside .price span:first-child {
    font-weight: 500;
}

.service_page__aside .price span:last-child {
    font-weight: 700;
    font-size: 20px;
    color: #850003;
}

.service_page__aside button.addProduct {
    background: linear-gradient(135deg, #021549, #1a365d);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 600;
    margin-top: 10px;
}

.service_page__aside button.addProduct:hover {
    background: linear-gradient(135deg, #850003, #a80f12);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(133, 0, 3, 0.3);
}


.service_page__form-aside {
    background: #eff3ff;
    padding: 30px 25px;
    border-radius: 10px;
    text-align: center;
}

.service_page__form-aside .service_page__aside-title {
    font-size: 1.2rem;
    color: #021549;
    font-weight: 600;
    margin-bottom: 10px;
}

.service_page__form-aside p {
    color: #4a5568;
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.5;
}

.service_page__form-aside #service_page__aside-tel {
    width: 100%;
    margin: 14px 0;
    border-radius: 8px;
    padding: 14px 16px;
    border: 2px solid #e2e8f0;
    font-size: 16px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.service_page__form-aside #service_page__aside-tel:focus {
    outline: none;
    border-color: #850003;
}

.service_page__form-aside #service_page__aside-tel::placeholder {
    color: #a0aec0;
}

.service_page__form-aside .form__submit {
    width: 100%;
    margin: 14px 0;
    background: linear-gradient(135deg, #021549, #1a365d);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 14px 16px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service_page__form-aside .form__submit:hover {
    background: linear-gradient(135deg, #850003, #a80f12);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(133, 0, 3, 0.3);
}


.service_page__form-aside .form__submit {
    width: 100%;
    margin-top: 14px;
    margin-bottom: 14px;
}

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

.service_page__header,
.service_page__text,
.service_page__right-column {
    animation: fadeInUp 0.6s ease-out;
}

.service_page__text {
    animation-delay: 0.2s;
}

.service_page__right-column {
    animation-delay: 0.4s;
}

@media (max-width: 1200px) {
    .service_page__wrapper {
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .service_page__wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service_page h1 {
        font-size: 2rem;
    }
    
    .service_page__right-column {
        position: static;
        order: -1;
        flex-direction: row;
        align-items: flex-start;
        gap: 30px;
    }
    
    .service_page__aside,
    .service_page__form-aside {
        flex: 1;
    }
    
    .service_page__text-annotation {
        flex-direction: column;
    }
    
    .service_page__text-image {
        max-width: 100%;
        height: 250px;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .service_page {
        padding-top: 140px;
        padding-bottom: 60px;
    }
    
    .service_page__header {
        margin-bottom: 30px;
    }
    
    .service_page h1 {
        font-size: 1.8rem;
    }
    
    .service_page__right-column {
        flex-direction: column;
        gap: 25px;
    }
    
    .service_page__text-annotation {
        gap: 25px;
    }
    
    .textpage__text {
        font-size: 16px;
    }
    
    .textpage__text h2 {
        font-size: 1.4rem;
    }
    
    .textpage__text h3 {
        font-size: 1.2rem;
    }
    
    .textpage__text ul,
    .textpage__text ol {
        padding-left: 20px;
    }
    
    .textpage__text ul li {
        padding-left: 18px;
    }
    
    .textpage__text ol li {
        padding-left: 24px;
    }
    
    .service_page__aside,
    .service_page__form-aside {
        padding: 25px 20px;
    }
}

@media (max-width: 576px) {
    .service_page {
        padding-top: 120px;
        padding-bottom: 50px;
    }
    
    .service_page__header {
        margin-bottom: 25px;
    }
    
    .service_page h1 {
        font-size: 1.6rem;
    }
    
    .textpage__text {
        font-size: 15px;
        line-height: 1.6;
    }
    
    .textpage__text ul,
    .textpage__text ol {
        padding-left: 18px;
    }
    
    .textpage__text ul li {
        padding-left: 16px;
    }
    
    .textpage__text ol li {
        padding-left: 22px;
    }
    
    .service_page__aside,
    .service_page__form-aside {
        padding: 20px;
    }
    
    .service_page__aside .price {
        font-size: 16px;
    }
    
    .service_page__aside .price span:last-child {
        font-size: 18px;
    }
    
    .service_page__aside button.addProduct {
        padding: 14px 20px;
        font-size: 15px;
    }
} */


.service_page {
    padding-top: 165px;
    padding-bottom: 90px;
}

.service_page__header {
    margin-bottom: 40px;
}

.service_page h1 {
    font-size: 2.5rem;
    color: #021549;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.3;
    text-align: left;
}

.service_page__wrapper {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 60px;
    align-items: start;
}

.service_page__text-annotation {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 30px;
}

.service_page__text-image {
    max-width: 340px;
    height: 200px;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.service_page__text-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service_page__text-image:hover img {
    transform: scale(1.03);
}

/* Styles pour le contenu texte unifié avec article */
.textpage__text {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
    flex: 1;
}

.textpage__text h2 {
    color: #021549;
    font-size: 1.6rem;
    margin: 30px 0 18px 0;
    font-weight: 600;
}

.textpage__text h3 {
    color: #021549;
    font-size: 1.3rem;
    margin: 25px 0 15px 0;
    font-weight: 600;
}

.textpage__text h4 {
    color: #021549;
    font-size: 1.1rem;
    margin: 20px 0 12px 0;
    font-weight: 600;
}

.textpage__text p {
    margin-bottom: 18px;
}

/* Listes non numérotées (ul) */
.textpage__text ul {
    margin: 18px 0;
    padding-left: 24px;
    list-style: none;
}

.textpage__text ul li {
    margin-bottom: 8px;
    line-height: 1.6;
    position: relative;
    padding-left: 20px;
}

.textpage__text ul li::before {
    content: "•";
    color: #850003;
    font-size: 1.2em;
    position: absolute;
    left: 0;
    top: 0;
}

/* Listes numérotées (ol) */
.textpage__text ol {
    margin: 18px 0;
    padding-left: 24px;
    list-style: none;
    counter-reset: item;
}

.textpage__text ol li {
    margin-bottom: 8px;
    line-height: 1.6;
    position: relative;
    padding-left: 28px;
    counter-increment: item;
}

.textpage__text ol li::before {
    content: counter(item) ".";
    color: #850003;
    font-weight: 600;
    position: absolute;
    left: 0;
    top: 0;
    min-width: 20px;
}

/* Styles pour les tableaux */
.textpage__text figure.table {
    margin: 25px 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    background: #fff;
    max-width: 100%;
}

.textpage__text table {
    width: auto;
    min-width: 100%;
    border-collapse: collapse;
    font-size: 15px;
    line-height: 1.5;
}

.textpage__text table thead {
    background: linear-gradient(135deg, #021549, #1a365d);
}

.textpage__text table th {
    color: white;
    font-weight: 600;
    padding: 16px 12px;
    text-align: left;
    border-bottom: 2px solid #850003;
    font-size: 15px;
    white-space: nowrap;
}

.textpage__text table td {
    padding: 14px 12px;
    border-bottom: 1px solid #e2e8f0;
    color: #4a5568;
    white-space: normal;
}

.textpage__text table tbody tr:hover {
    background-color: #f7fafc;
    transition: background-color 0.2s ease;
}

.textpage__text table tbody tr:last-child td {
    border-bottom: none;
}

.textpage__text table th:first-child,
.textpage__text table td:first-child {
    padding-left: 20px;
}

.textpage__text table th:last-child,
.textpage__text table td:last-child {
    padding-right: 20px;
}

.textpage__text strong {
    color: #021549;
    font-weight: 600;
}

.textpage__text a {
    color: #850003;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.textpage__text a:hover {
    color: #a80f12;
    text-decoration: underline;
}

.textpage__text blockquote {
    background: #f8faff;
    border-left: 4px solid #850003;
    padding: 20px 25px;
    margin: 25px 0;
    border-radius: 0 8px 8px 0;
    font-style: italic;
}

.textpage__text img:not(.service_page__text-image img) {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

/* GARDE LE DESIGN ORIGINAL DE LA COLONNE DE DROITE */
.service_page__right-column {
    position: sticky;
    top: 190px;
    align-self: start;
    height: max-content;
    z-index: 1;
    width: 340px;
    justify-self: end;
    margin-left: auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Bloc prix/bouton - DESIGN ORIGINAL */
.service_page__aside {
    padding: 40px 20px;
    background-color: #eff3ff;
    border-radius: 10px;
}

.service_page__aside > .price {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
}

.service_page__aside > .price span:last-child {
    font-weight: 700;
}

.service_page__aside button.addProduct {
    background: linear-gradient(to right, #021549 0%, #021549 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease-in;
    width: 100%;
    margin-top: 40px;
    margin-bottom: 10px;
    padding: 12px 0;
}

.service_page__aside button.addProduct:hover {
    background: linear-gradient(to right, #850003 0%, #a80f12 100%);
    box-shadow: 0 0 6px 2px rgba(14, 14, 15, 0.25);
}

.service_page__aside button.addProduct.purchased {
    background: linear-gradient(to right, #27ae60 0%, #229954 100%);
}

/* Bloc formulaire - DESIGN ORIGINAL */
.service_page__form-aside {
    padding: 40px 20px;
    background-color: #eff3ff;
    border-radius: 10px;
}

.service_page__form-aside .service_page__aside-title {
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    justify-content: center;
    margin-bottom: 10px;
}

.service_page__form-aside p {
    text-align: center;
    margin-bottom: 20px;
}

.service_page__form-aside #service_page__aside-tel {
    width: 100%;
    margin-top: 14px;
    border-radius: 5px;
    padding: 10px;
    border: none;
    font-size: 16px;
}

.service_page__form-aside #service_page__aside-tel::placeholder {
    color: #8b8b91;
}

.service_page__form-aside .form__submit {
    width: 100%;
    margin-top: 14px;
    margin-bottom: 14px;
}

/* Animations unifiées */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service_page__header,
.service_page__text,
.service_page__right-column {
    animation: fadeInUp 0.6s ease-out;
}

.service_page__text {
    animation-delay: 0.2s;
}

.service_page__right-column {
    animation-delay: 0.4s;
}

/* Responsive */
@media (max-width: 1280px) {
    .service_page__wrapper {
        grid-template-columns: minmax(0, 1fr) 280px;
        gap: 40px;
    }
    
    .service_page__text-annotation {
        flex-direction: column;
    }
    
    .service_page__text-image {
        max-width: 100%;
        height: 200px;
        margin-bottom: 20px;
    }
    
    .service_page__right-column {
        width: 280px;
    }
}

@media (max-width: 992px) {
    .service_page__wrapper {
        grid-template-columns: minmax(0, 1fr) 250px;
    }
    
    .service_page h1 {
        font-size: 2rem;
        margin-top: 20px;
    }
    
    .service_page__right-column {
        position: static;
        width: 250px;
    }
    
    .textpage__text {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .service_page {
        padding-top: 140px;
        padding-bottom: 60px;
    }
    
    .service_page__header {
        margin-bottom: 30px;
    }
    
    .service_page h1 {
        font-size: 1.8rem;
    }
    
    .service_page__wrapper {
        grid-template-columns: 100%;
    }
    
    .service_page__right-column {
        width: 100%;
        justify-self: stretch;
        margin-left: 0;
        gap: 20px;
    }
    
    .service_page__text-annotation {
        gap: 25px;
    }
    
    .textpage__text h2 {
        font-size: 1.4rem;
    }
    
    .textpage__text h3 {
        font-size: 1.2rem;
    }
    
    .textpage__text ul,
    .textpage__text ol {
        padding-left: 20px;
    }
    
    .textpage__text ul li {
        padding-left: 18px;
    }
    
    .textpage__text ol li {
        padding-left: 24px;
    }
}

@media (max-width: 576px) {
    .service_page {
        padding-top: 120px;
        padding-bottom: 50px;
    }
    
    .service_page__header {
        margin-bottom: 25px;
    }
    
    .service_page h1 {
        font-size: 1.6rem;
    }
    
    .textpage__text {
        font-size: 15px;
        line-height: 1.6;
    }
    
    .textpage__text ul,
    .textpage__text ol {
        padding-left: 18px;
    }
    
    .textpage__text ul li {
        padding-left: 16px;
    }
    
    .textpage__text ol li {
        padding-left: 22px;
    }
    
    .service_page__aside,
    .service_page__form-aside {
        padding: 30px 20px;
    }
}