/* MAIN STYLES */

body {
    font-family: 'Barlow', sans-serif;
    margin: 0;
    padding: 0;
}

html {
    overflow-y: scroll;
}

/* NAV & HEADER */

header {
    top: 0;
    z-index: 1000;
    /* Make sure it's above other content */
    position: sticky;
    background-color: white;
}

nav {
    height: 74px;
}

header li {
    list-style: none;
}

header a {
    text-decoration: none;
    position: relative;
    font-weight: 500;
    font-size: 15px;
}

.a_menulogotext {
    display: none;
}

.logo_artinova {
    width: 80px;
    margin-top: 10px;
}

.navbar {
    display: none;
}

.links a {
    color: #3F3F3F;
}

.links a:hover {
    color: #357DED;
}

.action_btn {
    display: flex;
    text-decoration: none;
    background-color: #fff;
    color: black;
    border: 2px solid #357DED;
    outline: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 15px;
    padding: 8px 8px;
}

.action_btn:hover {
    color: white;
    /* Keep text white on hover */
    background-color: #357DED;
    border: 2px solid white;
}

.links a.action_btn {
    color: #357DED;
    /* Override the default link color */
}

.links a.action_btn:hover {
    color: white !important;
    /* Override the default link color */
}

.toggle_btn {
    font-size: 20px;
    /* AJOUTS POUR FIGER LA LARGEUR */
    width: 40px;
    /* largeur fixe du bouton */
    display: flex;
    /* pour centrer l'icône à l'intérieur */
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    /* ne pas rétrécir en flex */
}

.navbar_mobile {
    display: flex;
    margin-left: 14px;
    margin-right: 14px;
    margin-top: 6px;
    gap: 10px;
    /* Définit l'espacement entre les icônes */
    height: 44px;
    align-items: center;
}

.logo_mobile {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.navbar_mobile i {
    display: inline-block;
    /* Assurez-vous que les icônes soient alignées horizontalement */
}

/* DROPDOWN MENU */

.dropdown_menu {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.3s ease-in-out;
    padding-top: 30px;
}

.dropdown_menu.open {
    visibility: visible;
    opacity: 1;
    background-color: white;
    height: 100vh;
}

.dropdown_menu li {
    padding: 16px 0;
    display: flex;
    margin-left: 14px;
}

.dropdown_menu .action_btn {
    display: flex;
}

.dropdown_menu a {
    color: black;
    font-weight: 600;
    font-size: 20px;
}

.dropdown_menu a::after {
    content: '';
    position: absolute;
    bottom: -18px;
    /* Ajuste la distance entre le texte et le trait */
    left: 0;
    width: 30px;
    /* Longueur initiale du trait */
    height: 1px;
    background-color: black;
    /* Couleur du trait */
    transition: width 0.3s ease-in-out;
    /* Animation */
}

.dropdown_menu li:last-child a::after {
    display: none;
    /* Supprime le trait pour le dernier élément */
}

.navbar {
    position: relative;
    /* Nécessaire pour positionner le menu déroulant */
    align-items: center;
    justify-content: space-between;
    padding-right: 1.5%;
    padding-left: 1.5%;
    background-color: white;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    /* Ajoute une ombre légère */
}

.navbar .links {
    gap: 2rem;
    margin-left: auto;
    align-items: center;
    /* Add this line to align menu items vertically */
}

/* HOME */

.first_section {
    padding-top: 85px;
    background-image: url('/assets/pictures/mission-bg.jpeg');
    /* Chemin vers votre image */
    background-size: cover;
    /* Assure que l'image couvre toute la section */
    background-position: 20% 99%;
    /* Position horizontale et verticale précises */
    background-repeat: no-repeat;
    /* Empêche la répétition de l'image */
    color: white;
    /* Texte en blanc pour le contraste */
    position: relative;
    /* Prépare pour des superpositions éventuelles */
}

.first_section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* Overlay noir semi-transparent */
    z-index: 0;
}

.first_section * {
    position: relative;
    z-index: 1;
    /* Place le contenu au-dessus de l'overlay */
}

.mission_h1 {
    padding-bottom: 20px;
}

.mission h1 {
    text-align: center;
    padding-top: 0;
    margin-bottom: -15px;
    font-weight: 500;
}

.mission p {
    text-align: center;
    font-weight: 400;
    font-size: 17px;
}

.first_button {
    margin-top: 30px;
    display: block;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
    text-decoration: none;
    background-color: #357DED;
    border: 2px solid #357DED;
    color: white;
    /* Texte blanc par défaut */
    outline: none;
    border-radius: 40px;
    cursor: pointer;
    padding: 15px 20px;
    /* Ajout d'un espace plus important pour le texte */
    font-weight: 600;
    font-size: 16px;
    /* Taille du texte ajustée */
}

.first_button p {
    margin: 0;
    /* Supprime les marges internes des paragraphes */
    color: inherit;
    /* Hérite de la couleur définie pour le bouton */
}

.first_button:hover {
    color: #357DED;
    /* Texte devient bleu au survol */
    background-color: white;
    /* Fond blanc au survol */
    border: 2px solid #357DED;
    /* Ajout d'une bordure pour contraste */
}

.first_button a {
    text-decoration: none;
    display: block;
    /* Assure que le lien prend tout l'espace du bouton */
    color: inherit;
    /* Hérite de la couleur du bouton */
}

.first_button a:hover {
    color: inherit;
    /* Évite les changements imprévus de couleur au survol */
}

.second_section {
    background-color: #f2f2f2;
    padding-bottom: 40px;
    padding-top: 20px;
}

.segments-container {
    display: flex;
    justify-content: space-between;
    /* Réduit les espaces entre les éléments */
    gap: 20px;
    /* Ajuste l'espacement entre les cartes */
    padding: 20px 140px;
    /* Réduit la marge gauche et droite */
}

.segment {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    overflow: hidden;
    width: 300px;
    flex: 1;
    /* Permet aux cartes de s'étendre uniformément */
}

.segment img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.segment h3 {
    font-size: 18px;
    font-weight: bold;
    color: #3F3F3F;
    margin: 25px 10px;
}

.segment-button {
    align-content: center;
    display: block;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 20px;
    margin-top: 40px;
    text-align: center;
    text-decoration: none;
    background-color: #357DED;
    border: 2px solid #357DED;
    color: white;
    outline: none;
    border-radius: 40px;
    cursor: pointer;
    padding: 10px 15px;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
    font-size: 16px;
    font-weight: 600;
}

.segment-button:hover {
    color: #357DED;
    /* Keep text white on hover */
    background-color: white;
    border: 2px solid #357DED;
}

.segment a {
    text-decoration: none;
}

.audit-section {
    background-color: #357DED;
    color: white;
    border-radius: 10px;
    padding: 10px 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    /* Empêche le wrap sauf sur mobile */
    gap: 20px;
    /* Ajoute de l'espacement entre les éléments */
}

.audit-content {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.audit-image {
    max-width: 300px;
    height: auto;
    flex-shrink: 0;
    /* Empêche l'image de rétrécir */
    transform: scale(0.8);
    /* Réduit la taille à 80% */
    transform-origin: center;
    /* Centre le point d'origine du redimensionnement */
}

.audit-text {
    flex: 1;
    text-align: left;
}

.audit-text h2 {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
    line-height: 1.4;
    max-width: 500px;
}

.audit-text p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.5;
    max-width: 800px;
}

.audit-text .cta-button {
    display: inline-block;
    background-color: white;
    color: #357DED;
    text-decoration: none;
    border-radius: 30px;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    border: 2px solid white;
}

.audit-text .cta-button:hover {
    background-color: #357DED;
    color: white;
    border: 2px solid white;
}

.audit-section .badge {
    position: absolute;
    /* Position absolue pour se fixer par rapport à la section */
    top: 10px;
    /* Ajustement vertical */
    right: 10px;
    /* Ajustement horizontal */
    background-color: #28a745;
    /* Couleur verte */
    color: white;
    /* Texte blanc */
    padding: 10px 15px;
    /* Espacement interne */
    font-size: 18px;
    /* Taille de la police */
    font-weight: bold;
    /* Gras */
    border-radius: 5px;
    /* Coins arrondis pour un aspect bouton */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* Ombre subtile */
    text-align: center;
    /* Centrage du texte */
    z-index: 10;
    /* Garantit la visibilité par-dessus les autres éléments */
    transition: all 0.3s ease-in-out;
    /* Transition fluide pour les animations */
}

.business-section {
    padding: 20px 20px;
}

.business-section {
    background-color: #f9f9f9;
}

.section-title {
    text-align: center;
    font-size: 2em;
    margin-bottom: 50px;
}

.content-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 80px;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 20px;
}

.image-text,
.text-image {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    /* Réduit l'espace entre l'image et le texte */
    width: 100%;
}

/* Styles globaux pour rendre les images proportionnelles */
.content-image {
    width: 100%;
    /* S'assure que l'image prend toute la largeur de son conteneur */
    max-width: 400px;
    /* Limite la largeur maximale */
    height: auto;
    /* Maintient les proportions */
    border-radius: 10px;
    /* Coins arrondis pour un style cohérent */
}

.text-content {
    flex: 1;
    text-align: left;
    max-width: 600px;
    margin-left: 50px;
    margin-right: 50px;
}

.text-content h2 {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 10px;
}

.text-content p {
    font-size: 1em;
    margin-bottom: 20px;
    line-height: 1.5;
}

.text-content .link {
    font-size: 1em;
    color: #007BFF;
    text-decoration: none;
    font-weight: bold;
}

.text-content .link:hover {
    text-decoration: underline;
}

.expert-section {
    background-color: #f2f2f2;
    /* Couleur de fond légèrement grise */
    padding: 20px 20px 50px 20px;
    text-align: center;
}

.expert-content {
    max-width: 800px;
    margin: 0 auto;
}

.expert-title {
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 20px;
}

.expert-description {
    font-size: 1.2em;
    color: #555;
    margin-bottom: 30px;
}

.expert-buttons {
    display: flex;
    justify-content: center;
    gap: 100px;
}

.expert-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 25px;
    background-color: #357DED;
    color: white;
    border: 2px solid #357DED;
}

.expert-button:hover {
    color: #357DED;
    /* Keep text white on hover */
    background-color: white;
    border: 2px solid #357DED;
}

/* FOOTER */
.footer {
    background-color: #f5f5fb;
    padding: 20px;
    color: #333;
    padding-right: 1.5%;
    padding-left: 1.5%;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    /* Permet d'adapter la disposition sur les petits écrans */
    gap: 20px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
}

.footer-logo {
    flex: 1;
    text-align: left;
    /* Aligne le logo à gauche */
}

.footer-logo h2 {
    font-size: 25px;
    font-weight: 500;
    color: #357DED;
    margin-top: 0;
    margin-bottom: 0;
    text-decoration: none;
}

.footer-links {
    flex: 2;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-links a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-socials {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.footer-socials a {
    font-size: 1.5em;
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-socials a:hover {
    color: #357DED;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 12px;
    color: #555;
}

.footer-policy {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-policy a {
    color: #555;
    text-decoration: none;
    font-size: 12px;
}

.footer-policy a:hover {
    text-decoration: underline;
}

.copyright {
    margin-top: 20px;
}

/* INTRODUCTION SECTION */

.intro-section {
    align-items: center;
    justify-content: space-between;
    background-color: #f2f2f2;
}

.intro-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.text-content-tpe {
    flex: 1;
}

.text-content-tpe h1 {
    font-size: 18px;
    font-weight: 400;
}

.text-content-tpe p {
    font-size: 32px;
    font-weight: 700;
}

.image-content {
    flex: 1;
}

.image-content img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
}

.tpe-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 25px;
    background-color: #357DED;
    color: white;
    border: 2px solid #357DED;
}

.tpe-button:hover {
    color: #357DED;
    /* Keep text white on hover */
    background-color: white;
    border: 2px solid #357DED;
}

/* H2 STYLING */

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

/* SERVICES VISIBILITY */

.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.service-card {
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
}

.service-card img {
    width: 100%;
    max-width: 250px;
    /* Taille maximale pour les grandes images */
    height: 250px;
    /* Assure une hauteur uniforme */
    object-fit: contain;
    /* Maintient les proportions et évite les déformations */
    margin: 0 auto 15px;
    /* Centre les images et ajoute un espace en bas */
    display: block;
    /* S'assure que l'image est traitée comme un bloc */
}

.service-card h3 {
    font-size: 1.5rem;
    color: #2b2b2b;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 1em;
    color: #666;
}

.expert-section-tpe {
    padding: 20px 20px 50px 20px;
    text-align: center;
}

.services-acquisition,
.services-visibility {
    font-size: 1.4rem;
}

/* REALISATIONS PAGE */

.realisations-page {
    background-color: #f9f9f9;
}

.realisations-header {
    padding-top: 120px;
    text-align: center;
    padding: 20px 7% 40px 7%;
}

.realisations-header h1 {
    font-size: 2.3rem;
    margin-bottom: 10px;
}

.realisations-header p {
    font-size: 1.1rem;
    color: #555;
}

.realisations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    padding: 20px 7%;
}

.real-card {
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
}

.real-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

.real-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.real-card-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.real-card-body h2 {
    font-size: 1.4rem;
    margin-bottom: 8px;
    color: #357DED;
}

.real-short {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 15px;
}

.real-tags {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.real-tags li {
    background: #f2f2f2;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 0.8rem;
    color: #444;
}

.btn-real {
    display: inline-block;
    background-color: #357DED;
    color: white;
    padding: 10px 18px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 0.95rem;
    border: 2px solid #357DED;
    font-weight: 600;
    margin-top: auto;
    align-self: flex-start;
}

.btn-real:hover {
    background-color: white;
    color: #357DED;
    border-color: #357DED;
}

/* REALISATION DETAIL PAGE */

.realisation-detail-page {
    padding: 120px 7% 60px 7%;
    max-width: 900px;
    margin: 0 auto;
    background-color: #fff;
}

.back-btn {
    display: inline-block;
    margin-bottom: 20px;
    font-size: 0.95rem;
    color: #357DED;
    text-decoration: none;
    font-weight: 600;
}

.back-btn:hover {
    text-decoration: underline;
}

/* CASE STUDY CONTENT */

.case-study {
    font-family: 'Barlow', sans-serif;
    color: #333;
    line-height: 1.7;
}

.case-header {
    margin-bottom: 30px;
}

.case-header h1 {
    font-size: 2rem;
    color: #357DED;
    margin-bottom: 10px;
}

.case-header p {
    font-size: 1.05rem;
    color: #555;
    max-width: 700px;
}

.case-block {
    background: #f9f9f9;
    border-radius: 10px;
    border: 1px solid #e6e6e6;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.case-block h2 {
    font-size: 1.4rem;
    color: #357DED;
    margin-top: 0;
    margin-bottom: 8px;
}

.case-block h3 {
    font-size: 1.2rem;
    color: #285BB5;
    margin-top: 15px;
    margin-bottom: 8px;
}

.case-block p {
    margin-bottom: 10px;
    font-size: 1rem;
}

.case-block ul {
    margin: 10px 0 10px 20px;
    padding-left: 0;
}

.case-block ul li {
    margin-bottom: 6px;
    font-size: 0.98rem;
}

.case-quote {
    margin-top: 15px;
    font-style: italic;
    padding: 12px 16px;
    border-left: 4px solid #357DED;
    background-color: #fff;
    border-radius: 6px;
    color: #555;
    font-size: 0.98rem;
}

/* Responsive adjustments for realisations */

@media screen and (max-width: 767px) {
    .realisations-header {
        padding-top: 100px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .realisations-grid {
        padding: 20px;
        grid-template-columns: 1fr;
    }

    .realisation-detail-page {
        padding: 100px 20px 40px 20px;
    }
}

/* Blog Page */

/* Blog Header Section */
.blog-header {
    padding: 30px 7% 0 7%;
    padding-top: 30px;
}

.blog-header h1 {
    font-weight: 1000;
}

.blog-header p {
    font-size: 1.2rem;
    color: #555;
}

/* Blog Articles Section */
.blog-articles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px 7%;
}

.blog-card {
    display: flex;
    /* Ajout */
    flex-direction: column;
    /* Ajout */
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.blog-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.blog-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #357DED;
    margin: 15px;
}

.blog-card h2 a {
    text-decoration: none;
    color: inherit;
}

.blog-card p {
    font-size: 1rem;
    color: #555;
    margin: 0 15px 15px;
}

/* Ajouter cet ensemble pour aligner les boutons */
.blog-card .read-more {
    display: inline-block;
    margin: 15px;
    padding: 10px 20px;
    background-color: #357DED;
    color: white;
    text-decoration: none;
    border: solid 2px #357DED;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    margin-top: auto;
    /* Permet de pousser le bouton vers le bas */
    align-self: flex-start;
    /* Facultatif, pour que le bouton reste aligné à gauche */
}

.blog-card .read-more:hover {
    background-color: white;
    color: #357DED;
    border: solid 2px #357DED;
}

/* Blog Article Styles */

/* Général pour la page article */
.blog-article {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Barlow', sans-serif;
    line-height: 1.8;
    color: #333;
    margin-top: 40px;
    /* Ajout d'un espace supérieur pour détacher l'article du header */
}

/* En-tête de l'article */
.article-header {
    text-align: center;
    margin-bottom: 40px;
    color: #357DED;
}

.article-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

.article-header .article-summary {
    font-size: 1.2rem;
    color: #555;
}

/* Contenu de l'article */
.article-content h2 {
    font-size: 1.8rem;
    color: #357DED;
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
    /* Ligne sous les titres pour distinguer les sections */
    padding-bottom: 10px;
}

.article-content h3 {
    font-size: 1.5rem;
    color: #285BB5;
    /* Teinte différente pour différencier les sous-sections */
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.article-content p {
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Listes */
.article-content ul {
    margin: 15px 0;
    padding-left: 30px;
    /* Décalage pour les listes */
    list-style: disc inside;
}

.article-content ul li {
    margin-bottom: 10px;
}

/* Liens */
.article-content a {
    color: #357DED;
    text-decoration: underline;
}

.article-content a:hover {
    color: #285BB5;
    text-decoration: none;
}

/* Citations */
.article-content blockquote {
    font-style: italic;
    margin: 20px 0;
    padding: 10px 20px;
    border-left: 5px solid #357DED;
    background-color: #f9f9f9;
    color: #555;
}

/* Images */
.article-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

/* Boutons d'appel à l'action */
.article-content .cta-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #357DED;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.article-content .cta-button:hover {
    background-color: #285BB5;
}

/* Styles pour les tableaux (si besoin dans les articles) */
.article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 1rem;
    text-align: left;
}

.article-content th,
.article-content td {
    padding: 10px;
    border: 1px solid #ddd;
}

.article-content th {
    background-color: #f4f4f4;
    color: #333;
    font-weight: bold;
}

/* Styles pour les sections "about-section" */

.about_section {
    padding-top: 85px;
    background-image: url('/assets/pictures/about-image.jpeg');
    /* Chemin vers votre image */
    background-size: cover;
    /* Assure que l'image couvre toute la section */
    background-position: 50% 75%;
    /* Position horizontale et verticale précises */
    background-repeat: no-repeat;
    /* Empêche la répétition de l'image */
    color: white;
    /* Texte en blanc pour le contraste */
    position: relative;
    /* Prépare pour des superpositions éventuelles */
    height: 20vh;
    /* Occupe toute la hauteur de l'écran */
}

.about_section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* Overlay noir semi-transparent */
    z-index: 0;
}

.about_section * {
    position: relative;
    z-index: 1;
    /* Place le contenu au-dessus de l'overlay */
}

.about_h1 {
    padding-bottom: 20px;
}

.about h1 {
    text-align: center;
    padding-top: 0;
    margin-bottom: -15px;
    font-weight: 500;
}

.about-section {
    margin: 0px auto;
    padding: 20px;
    max-width: 800px;
}

/* Titre des sections */
.about-section-title {
    font-size: 2rem;
    color: #333;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Paragraphe de contenu */
.about-section p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: justify;
}

/* Liste d'avantages */
.about-section ul {
    list-style: disc inside;
}

.about-section ul li {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 10px;
    line-height: 1.4;
}

/* Image */
.about-image {
    display: block;
    margin: 20px auto;
    max-width: 600px;
    width: 50%;
    /* S'assure que l'image est responsive */
    height: auto;
    border-radius: 10px;
}

/* Sous-section "Notre mission" */
.section-title {
    font-size: 2rem;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}

.home-testimonial {
    margin: 1.5rem 0 0;
    background: #111;
    /* noir (idle) */
    color: #fff;
    border: 1px solid #222;
    border-radius: 16px;
    padding: 1.25rem 1.25rem 1rem;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .15);
}

.home-testimonial .stars {
    display: inline-flex;
    gap: .35rem;
    margin-bottom: .75rem;
}

.home-testimonial .stars svg {
    width: 22px;
    height: 22px;
    fill: #ff7a00;
    /* orange d’accent */
    transform: translateY(1px);
}

.home-testimonial figure {
    margin: 0;
}

.home-testimonial blockquote {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.6;
}

.home-testimonial .quote-mark {
    color: #ff7a00;
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0 .25rem;
}

.home-testimonial figcaption {
    margin-top: .85rem;
    font-size: .95rem;
    color: #ddd;
}

@media (min-width: 900px) {
    .home-testimonial {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 1rem 1.25rem;
        align-items: start;
    }

    .home-testimonial .stars {
        grid-column: 1 / -1;
    }
}

/* Option : légère animation au survol (cohérente avec tes hovers orange) */
.home-testimonial:hover {
    border-color: #ff7a00;
    box-shadow: 0 12px 28px rgba(255, 122, 0, .12);
}

/* FOR MOBILE PHONES (UP TO 767PX) */
@media screen and (max-width: 767px) {
    /* MY MOBILE-SPECIFIC STYLES HERE */

    /* HEADER */

    .navbar .links,
    .navbar .action_btn {
        display: none;
    }

    .dropdown_menu {
        display: block;
        width: unset;
    }

    header {
        height: 44px;
    }

    .logo_artinova {
        width: 60px;
    }

    .first_section {
        height: 60vh;
        /* Occupe toute la hauteur de l'écran */
    }

    .mission {
        margin-bottom: 20px;
        /* Ajoute un espace entre le texte et le bouton */
    }

    .first_button {
        width: 100%;
        /* Le bouton prend toute la largeur disponible */
    }

    .segment:nth-child(3) {
        grid-column: span 2;
        /* La troisième carte prend toute la largeur */
    }

    .segment {
        width: 100%;
        /* La largeur s'adapte à la grille */
    }

    .segments-container {
        padding: 20px 20px;
        /* Réduit la marge gauche et droite */
    }

    .audit-section {
        flex-direction: column;
        /* Passe en colonne */
        align-items: center;
        /* Centre le texte */
        gap: 20px;
        /* Espacement adapté */
        margin: 20px 20px;
        padding-bottom: 20px;
    }

    .audit-image {
        display: none;
        /* Cache l'image sur mobile */
    }

    .audit-text .cta-button {
        font-size: 14px;
        padding: 8px 15px;
    }

    .audit-section .badge {
        top: 15px;
        /* Ajustement pour mobile */
        right: 15px;
        /* Ajustement horizontal */
        padding: 8px 12px;
        /* Espacement réduit */
    }

    .audit-text h2 {
        margin-top: 60px;
    }

    .content-row {
        flex-direction: column;
        /* Empile les éléments verticalement */
        justify-content: center;
        align-items: center;
        text-align: center;
        /* Centrer le texte */
    }

    .image-text,
    .text-image {
        display: flex;
        flex-direction: column;
        /* Toujours image en haut et texte en bas */
        align-items: center;
        /* Centre les éléments */
        text-align: center;
        /* Centre le texte */
    }

    .content-image {
        order: 1;
        /* L'image toujours en premier */
        max-width: 100%;
        /* L'image prend toute la largeur disponible */
        height: auto;
        /* Maintient les proportions */
        margin-bottom: 10px;
        /* Ajoute un espace entre l'image et le texte */
    }

    .text-content {
        order: 2;
        /* Le texte toujours en second */
        text-align: center;
        /* Texte centré */
        max-width: 90%;
        /* Réduit la largeur du texte pour une meilleure lisibilité */
    }

    .business-section {
        padding: 50px 20px;
        /* Ajoute une marge de 140px à gauche et à droite */
    }

    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .footer-logo {
        text-align: center;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-links {
        justify-content: center;
    }

    .footer-policy {
        gap: 10px;
    }

    .image-content {
        order: -1;
        margin-bottom: 20px;
    }

    .intro-section {
        display: block;
        padding: 40px 20px;
        text-align: center;
    }

    .image-content {
        width: 200px
    }

    .services-container {
        grid-template-columns: 1fr;
    }

    .text-content-tpe h1 {
        margin-top: -20px;
    }

    .services-visibility,
    .services-acquisition {
        padding: 40px 50px;
    }

    /* BLOG */

    .blog-article {
        padding: 15px;
    }

    .article-header h1 {
        font-size: 2rem;
    }

    .article-content h2 {
        font-size: 1.6rem;
    }

    .article-content h3 {
        font-size: 1.3rem;
    }

    .article-content p {
        font-size: 0.9rem;
    }

    .about-section {
        padding: 15px;
    }

    .about-section-title,
    .section-title {
        font-size: 1.5rem;
    }

    .about-section p {
        font-size: 0.9rem;
    }

    .about-section ul li {
        font-size: 0.9rem;
    }

    .content-image {
        max-width: 100%;
        /* L'image prendra toute la largeur disponible */
    }
}

/* FOR TABLETS (768PX to 991PX) */
@media screen and (min-width: 768px) and (max-width: 991px) {
    /* MY TABLET-SPECIFIC STYLES HERE */

    /* HEADER */

    .navbar .links,
    .navbar .action_btn {
        display: none;
    }

    .dropdown_menu {
        display: block;
        width: unset;
    }

    header {
        height: 44px;
    }

    .logo_artinova {
        width: 60px;
    }

    .first_section {
        height: 50vh;
        /* Occupe toute la hauteur de l'écran */
    }

    .segments-container {
        padding: 0 20px;
        /* Réduit les marges gauche et droite */
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        /* Espacement entre les cartes */
        justify-content: center;
        /* Centre les cartes dans le conteneur */
    }

    .audit-section {
        flex-direction: row;
        /* Image à gauche du texte */
        align-items: center;
        gap: 20px;
        margin: 20px 20px;
        padding-bottom: 20px;
    }

    .audit-image {
        max-width: 250px;
        /* Taille légèrement réduite pour tablettes */
    }

    .audit-section .badge {
        top: 20px;
        /* Ajustement vertical */
        right: 20px;
        /* Ajustement horizontal */
        padding: 9px 14px;
        /* Espacement intermédiaire */
    }

    .audit-text h2 {
        margin-top: 60px;
    }

    .business-section {
        padding: 50px 50px;
        /* Ajoute une marge de 140px à gauche et à droite */
    }

    .intro-section {
        padding: 40px 140px;
    }

    .services-container {
        grid-template-columns: 2fr;
    }

    .text-content-tpe h1 {
        margin-top: -20px;
    }

    .services-visibility,
    .services-acquisition {
        padding: 40px 50px;
    }

    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    .footer-logo {
        text-align: center;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-links {
        justify-content: center;
    }

    .footer-policy {
        gap: 10px;
    }
}

/* FOR DESKTOPS (992PX TO 1199PX) */
@media screen and (min-width: 992px) and (max-width: 1199px) {
    /* MY DESKTOP-SPECIFIC STYLES HERE */

    .toggle_btn {
        display: none;
    }

    .navbar_mobile {
        display: none;
    }

    .navbar {
        display: flex;
        height: 74px;
    }

    .navbar .links {
        display: flex;
    }

    header {
        height: 74px;
    }

    .first_section {
        height: 40vh;
        /* Occupe toute la hauteur de l'écran */
    }

    .segments-container {
        display: flex;
        justify-content: space-between;
        gap: 20px;
        /* Espace entre les cartes */
        align-items: stretch;
        /* Toutes les cartes ont la même hauteur */
        padding: 20px 100px;
        /* Réduit la marge gauche et droite */
    }

    .segment {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        text-align: center;
        background-color: white;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .segment img {
        width: 100%;
        height: auto;
        object-fit: cover;
        max-height: 200px;
        /* Fixe la hauteur maximale de l'image */
        border-bottom: 1px solid #ddd;
        /* Sépare visuellement l'image du texte */
    }

    .segment h3 {
        font-size: 18px;
        font-weight: bold;
        color: #3F3F3F;
        margin: 15px 10px;
        /* Ajoute de l’espace autour du texte */
    }

    .audit-section {
        flex-direction: row;
        /* Image à gauche du texte */
        align-items: center;
        gap: 20px;
        margin: 20px 140px;
        padding-bottom: 20px;
    }

    .audit-image {
        max-width: 300px;
    }

    .audit-text h2 {
        margin-top: 60px;
    }

    .business-section {
        padding: 50px 20px;
        /* Ajoute une marge de 140px à gauche et à droite */
    }

    .services-container {
        grid-template-columns: repeat(3, 1fr);
    }

    .intro-section {
        display: flex;
        padding: 40px 140px;
    }

    .text-content-tpe h1 {
        margin-top: 20px;
    }

    .services-visibility,
    .services-acquisition {
        padding: 40px 140px;
    }

    .blog-articles {
        margin: 40px 0;
    }
}

/* FOR LARGER SCREENS (1200PX AND ABOVE) */
@media screen and (min-width: 1200px) {
    /* MY LARGER SCREEN-SPECIFIC STYLES HERE */

    header {
        height: 74px;
    }

    .toggle_btn {
        display: none;
    }

    .navbar_mobile {
        display: none;
    }

    .navbar {
        display: flex;
        height: 74px;
    }

    .navbar .links {
        display: flex;
    }

    .first_section {
        height: 40vh;
        /* Occupe toute la hauteur de l'écran */
    }

    .audit-section {
        flex-direction: row;
        /* Image à gauche du texte */
        align-items: center;
        gap: 20px;
        margin: 20px 140px;
    }

    .audit-image {
        max-width: 300px;
    }

    .business-section {
        padding: 50px 140px;
        /* Ajoute une marge de 140px à gauche et à droite */
    }

    .intro-section {
        display: flex;
        padding: 40px 140px;
    }

    .text-content-tpe h1 {
        margin-top: -50px;
    }

    .services-container {
        grid-template-columns: repeat(3, 1fr);
    }

    .services-visibility,
    .services-acquisition {
        padding: 40px 140px;
    }

    .content-image {
        max-width: 800px;
        /* Largeur plus importante pour les grands écrans */
    }

    .blog-articles {
        margin: 40px 0;
    }
}