/* Define the Montserrat font style */
.montserrat-font {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

/* Reset body margins and apply the Montserrat font globally */
body {
    margin: 0 !important;
    padding: 0 !important;
    font-family: "Montserrat", sans-serif !important;
    background-color: #232020 !important; /* Modifié de #22181C à #232020 */
    color: #F6E8EA !important; /* Text color from color scheme */
    line-height: 1.6 !important;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /* Force color space interpretation to be consistent across browsers */
    color-scheme: only light; /* Prevent dark mode interference */
    -webkit-color-adjust: exact;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
}

/* Style the navigation bar with a bottom border */
nav {
    display: flex; /* Use flexbox for layout */
    flex-wrap: wrap; /* Allow wrapping of child elements */
    flex-direction: column; /* Stack title above links */
    justify-content: center; /* Center content vertically */
    align-items: center; /* Center content horizontally */
    background-color: #232020; /* Modifié de #22181C à #232020 */
    padding-bottom: 20px; /* Padding before the border */
    border-bottom: 3px solid #96705B; /* Add a border to separate header from content */
    margin-bottom: 20px; /* Add spacing after the border */
    position: relative;
}

/* Style the navigation title */
nav h1 {
    color: #F6E8EA; /* Light text color */
    font-family: 'Montserrat', sans-serif; /* Use Montserrat font */
    font-size: clamp(24px, 5vw, 36px); /* Responsive font size */
    margin-bottom: 20px; /* Add spacing below the title */
    position: relative;
    font-weight: 600; /* Make the font slightly bolder */
    letter-spacing: 1px; /* Add slight letter spacing for elegance */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); /* Add subtle shadow for depth */
    padding: 5px 15px; /* Add some padding */
    display: inline-block; /* Allow decorative effects to be sized to content */
    margin-left: 0; /* Ensure no left margin */
    text-align: center; /* Center text within the element */
    width: 100%; /* Full width to ensure text-align works properly */
    box-sizing: border-box; /* Include padding in width calculation */
}

/* Add decorative elements before and after the title */
nav h1::before, 
nav h1::after {
    content: "";
    position: absolute;
    height: 3px;
    background: linear-gradient(90deg, transparent, #D9B88F, transparent);
    width: 60%;
    left: 50%;
    transform: translateX(-50%);
}

nav h1::before {
    top: -5px;
}

nav h1::after {
    bottom: -5px;
}

/* Mobile menu button */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #F6E8EA;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    position: absolute;
    right: 15px;
    top: 15px;
    z-index: 1000;
}

.menu-toggle:focus {
    outline: none;
}

/* Style the navigation links container */
nav .onglets {
    margin-top: 10px;
    margin-left: 0;
    display: flex;
    justify-content: center;
    width: 100%;
    position: relative;
    padding-top: 5px;
    flex-wrap: wrap;
}

/* Style individual navigation links */
nav .onglets a {
    text-decoration: none;
    color: #F6E8EA;
    margin: 5px 15px;
    padding: 8px 15px;
    transition: all 0.3s ease;
    border-radius: 5px;
    font-weight: 500;
    background-color: rgba(123, 114, 99, 0.1);
    border: 1px solid transparent;
    white-space: nowrap;
}

nav .onglets a:hover {
    color: #D9B88F;
    background-color: rgba(123, 114, 99, 0.3);
    border-color: #D9B88F;
}

nav .onglets a.active {
    border-bottom: 2px solid #D9B88F;
    color: #D9B88F;
}

/* Content area styling */
.content {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Services page specific styling */
.services-intro {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px;
    border-radius: 8px;
    background-color: rgba(123, 114, 99, 0.1);
}

.section-title {
    color: #D9B88F;
    font-size: clamp(24px, 5vw, 32px);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    letter-spacing: 1px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #D9B88F;
}

.intro-text {
    font-size: clamp(16px, 4vw, 18px);
    max-width: 800px;
    margin: 0 auto;
    letter-spacing: 0.3px;
}

/* Services container grid layout */
.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

/* Center the last service card when it's alone in its row */
.services-container .service-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Enhanced Services Page Styling */
.service-card {
    background-color: rgba(150, 112, 91, 0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #96705B;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(5px);
    isolation: isolate; /* Create a new stacking context */
    -webkit-isolation: isolate;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(150, 112, 91, 0.05) 0%, rgba(123, 114, 99, 0.1) 100%);
    z-index: -1;
    border-radius: 8px;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.service-card:hover::before {
    opacity: 0.8;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.service-header {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(246, 232, 234, 0.2);
    position: relative;
    background-color: rgba(34, 24, 28, 0.3); /* Conservé car utilisé pour transparence */
}

.service-title {
    margin: 0;
    color: #D9B88F; /* Accent color for service titles */
    font-size: 22px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

.service-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-content p {
    margin-top: 0;
    margin-bottom: 15px;
}

.service-content ul {
    margin: 0;
    padding-left: 20px;
    list-style-type: none;
}

.service-content li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 10px;
}

.service-content li::before {
    content: "•";
    color: #D9B88F;
    position: absolute;
    left: -10px;
    font-size: 1.2em;
}

.sub-list {
    font-size: 0.9em;
    color: #F6E8EA; /* Make the sub-text lighter */
    margin-top: 5px;
    padding-left: 15px;
    opacity: 0.8;
}

.zone-intervention {
    background-color: rgba(123, 114, 99, 0.15); /* Primary color with opacity */
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid rgba(123, 114, 99, 0.2);
}

.zone-intervention h3 {
    color: #D9B88F; /* Accent color for headings */
    margin-top: 0;
    margin-bottom: 15px;
}

.contact-section {
    background-color: rgba(123, 114, 99, 0.2); /* Primary color with opacity */
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: center;
    border: 1px solid rgba(172, 228, 170, 0.3); /* Accent color with opacity */
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
    background-image: linear-gradient(to bottom right, rgba(123, 114, 99, 0.2), rgba(150, 112, 91, 0.2));
    isolation: isolate; /* Create a new stacking context */
    -webkit-isolation: isolate;
}

.contact-section h3 {
    color: #D9B88F; /* Accent color for headings */
    margin-top: 0;
    margin-bottom: 15px;
}

.contact-info {
    max-width: 500px;
    margin: 0 auto;
}

.contact-info a {
    color: #D9B88F; /* Accent color for links */
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #F6E8EA; /* Light color on hover */
    text-decoration: underline;
}

.contact-button {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 25px;
    background-color: #96705B; /* Secondary color for button */
    color: #F6E8EA !important; /* Light text color */
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-button:hover {
    background-color: #7B7263; /* Primary color on hover */
    transform: scale(1.05);
    text-decoration: none !important;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Nouvelle classe pour harmoniser tous les boutons principaux */
.contact-button.primary-button, 
.primary-button {
    background-color: #96705B; /* Secondary color for button */
}

.contact-button:hover, 
.primary-button:hover {
    background-color: #7B7263; /* Primary color on hover */
    transform: scale(1.05);
    text-decoration: none !important;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* About page specific styling */
.about-intro {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px;
    border-radius: 8px;
    background-color: rgba(123, 114, 99, 0.1);
}

.about-container {
    max-width: 900px;
    margin: 0 auto 40px;
    background-color: rgba(150, 112, 91, 0.05);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    isolation: isolate; /* Create a new stacking context */
    -webkit-isolation: isolate;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.profile-section {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(246, 232, 234, 0.2);
}

.profile-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    background-color: rgba(123, 114, 99, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 3px solid #96705B;
}

.profile-placeholder {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.profile-placeholder i {
    font-size: 50px;
    color: rgba(246, 232, 234, 0.7);
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-info {
    display: flex;
    flex-direction: column;
}

.profile-info h3 {
    color: #D9B88F;
    font-size: 26px;
    margin: 0 0 5px 0;
}

.profile-title {
    font-size: 16px;
    opacity: 0.8;
    font-style: italic;
    margin: 0;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 16px;
}

.values-section {
    margin-top: 20px;
}

.values-section h3 {
    color: #D9B88F;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(246, 232, 234, 0.2);
}

.values-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.value-card {
    background-color: rgba(123, 114, 99, 0.1);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
    background-color: rgba(123, 114, 99, 0.2);
}

.value-icon {
    font-size: 26px;
    margin-bottom: 15px;
    color: #D9B88F;
}

.value-card h4 {
    margin: 0 0 10px 0;
    color: #F6E8EA;
}

.value-card p {
    margin: 0;
    font-size: 14px;
    opacity: 0.9;
}

/* Logo SAP dans la page à propos */
.sap-logo-container {
    display: flex;          
    justify-content: center; /* Centrage horizontal */
    align-items: center;     
    width: 100%;
    padding: 15px 0;
    position: relative;
    z-index: 50;
    margin: 40px auto 0;
}

.sap-logo {
    width: 120px; /* Taille fixe */
    height: auto;
    display: block;
    margin: 0 auto; /* Centre horizontalement l'image */
    z-index: 51;
}

@media screen and (max-width: 680px) {
    .sap-logo-container {
        margin: 30px auto 0;
    }
    
    .sap-logo {
        width: 100px; /* Version plus petite pour mobile */
    }
}

/* Contact page specific styling */
.contact-intro {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px;
    border-radius: 8px;
    background-color: rgba(123, 114, 99, 0.1);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.contact-info-section,
.contact-form-section {
    background-color: rgba(150, 112, 91, 0.05);
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    isolation: isolate; /* Create a new stacking context */
    -webkit-isolation: isolate;
}

.contact-info-section {
    border-left: 4px solid #96705B;
}

.contact-form-section {
    border-left: 4px solid #D9B88F;
}

.contact-info-section h3,
.contact-form-section h3 {
    color: #D9B88F;
    margin-top: 0;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(246, 232, 234, 0.2);
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 20px;
    color: #D9B88F;
    margin-right: 15px;
    width: 30px;
    text-align: center;
}

.info-item div {
    flex: 1;
}

.info-item h4 {
    margin: 0 0 5px 0;
    color: #F6E8EA;
    font-size: 18px;
}

.info-item p {
    margin: 0;
    line-height: 1.5;
}

.info-item a {
    color: #D9B88F;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: #F6E8EA;
    text-decoration: underline;
}

/* Contact form styling */
.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px; /* Augmenter l'écart entre les colonnes de 20px à 30px */
}

.form-group {
    margin-bottom: 0;
    width: 100%; /* S'assurer que chaque groupe prend toute la largeur disponible */
    box-sizing: border-box; /* Inclure le padding dans la largeur totale */
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #F6E8EA;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(123, 114, 99, 0.3);
    border-radius: 5px;
    background-color: rgba(34, 24, 28, 0.6); /* Conservé car utilisé pour transparence */
    color: #F6E8EA;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
    box-sizing: border-box; /* Inclure le padding et la bordure dans la largeur totale */
}

.submit-button {
    padding: 14px 25px;
    background-color: #96705B;
    border: none;
    border-radius: 5px;
    color: #F6E8EA;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-button:hover {
    background-color: #7B7263;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.submit-button i {
    margin-right: 5px;
}

/* Style pour les prix après réduction d'impôt */
.after-tax-reduction {
    background-color: rgba(217, 184, 143, 0.15);
    color: #F6E8EA;
    padding: 8px 15px;
    border-radius: 20px;
    display: inline-block;
    margin: 10px 0 15px;
    font-size: 16px;
}

.after-tax-reduction strong, .after-tax-forfait strong {
    color: #D9B88F;
    font-weight: 700;
}

.after-tax-reduction i, .after-tax-forfait i {
    color: #D9B88F;
    margin-right: 5px;
}

.after-tax-forfait {
    background-color: rgba(217, 184, 143, 0.15);
    padding: 8px 15px;
    border-radius: 20px;
    margin: 10px auto 15px;
    font-size: 14px;
    max-width: fit-content;
}

/* Responsive design for navigation */
@media screen and (max-width: 768px) {
    /* Menu button styling */
    .menu-toggle {
        display: block;
        position: fixed;
        right: 15px;
        top: 15px;
        background-color: rgba(123, 114, 99, 0.2);
        border-radius: 5px;
        border: none;
        color: #F6E8EA;
        font-size: 24px;
        cursor: pointer;
        z-index: 1001;
        padding: 10px;
        transition: all 0.3s ease;
    }
    
    .menu-toggle:focus {
        outline: none;
    }
    
    .menu-toggle:hover {
        background-color: rgba(123, 114, 99, 0.4);
    }

    /* The side navigation menu */
    .sidenav {
        height: 100%; /* 100% Full-height */
        width: 0; /* 0 width - change this with JavaScript */
        position: fixed; /* Stay in place */
        z-index: 1002; /* Stay on top */
        top: 0;
        left: 0;
        background-color: #232020; /* Modifié de #22181C à #232020 */
        overflow-x: hidden; /* Disable horizontal scroll */
        padding-top: 60px; /* Place content 60px from the top */
        transition: 0.5s; /* 0.5 second transition effect */
        box-shadow: 4px 0 20px rgba(0,0,0,0.3);
        border-right: 3px solid #96705B;
    }

    .sidenav.active {
        width: 250px; /* Width when opened */
    }
    
    /* The navigation menu links - modification de l'animation */
    .sidenav a {
        padding: 12px 15px;
        text-decoration: none;
        font-size: 18px;
        color: #F6E8EA;
        display: block;
        transition: 0.3s;
        width: 80%;
        margin: 5px auto;
        text-align: left;
        background-color: rgba(123, 114, 99, 0.1);
        border-radius: 5px;
        white-space: nowrap;
        opacity: 0;
        transform: translateY(20px);
        border: 1px solid transparent;
    }
    
    .sidenav.active a {
        opacity: 1;
        transform: translateY(0);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    
    /* Links appear with a staggered delay - ajustement pour animation de bas en haut */
    /* Inversion de l'ordre des delays et traitement spécial pour le lien À propos */
    .sidenav a:nth-child(1) { /* Accueil */
        transition-delay: 0.5s; 
    }
    .sidenav a:nth-child(2) { /* Services */
        transition-delay: 0.4s;
    }
    .sidenav a:nth-child(3) { /* Tarifs */
        transition-delay: 0.3s;
    }
    .sidenav a:nth-child(4) { /* Contact */
        transition-delay: 0.2s;
    }
    .sidenav a:nth-child(5) { /* À propos */
        transition-delay: 0.1s; /* Le dernier à apparaître */
    }

    .sidenav a:hover {
        color: #D9B88F;
        background-color: rgba(123, 114, 99, 0.3);
        border-color: #D9B88F;
    }

    .sidenav a.active {
        border-left: 3px solid #D9B88F;
        color: #D9B88F;
        padding-left: 12px;
    }
    
    /* Close button */
    .closebtn {
        position: absolute;
        top: 10px;
        right: 15px;
        font-size: 28px;
        color: #F6E8EA;
        cursor: pointer;
        background: none;
        border: none;
        z-index: 1003;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .sidenav.active .closebtn {
        opacity: 1;
    }

    /* Overlay to close menu when clicking outside */
    .overlay {
        display: none;
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: rgba(0,0,0,0.5);
        z-index: 1000;
        cursor: pointer;
    }
    
    .overlay.active {
        display: block;
    }
    
    /* Show only mobile menu on small screens */
    nav .onglets {
        display: none;
    }
    
    /* Adjust nav for mobile */
    nav {
        padding-top: 15px;
        padding-bottom: 15px;
    }
    
    nav h1 {
        margin-bottom: 10px;
        padding-right: 50px;
        font-size: clamp(22px, 5vw, 28px);
    }
    
    /* Animated hamburger icon */
    .menu-toggle .icon-bar {
        display: block;
        width: 22px;
        height: 2px;
        border-radius: 1px;
        margin: 4px 0;
        transition: all 0.3s;
        background-color: #F6E8EA;
    }
    
    .menu-toggle.active .icon-bar:nth-child(1) {
        transform: rotate(-45deg) translate(-4px, 4px);
    }
    
    .menu-toggle.active .icon-bar:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active .icon-bar:nth-child(3) {
        transform: rotate(45deg) translate(-4px, -4px);
    }
    
    /* Suppression du style du logo dans le menu latéral puisqu'on va le retirer */
    .sidenav-header {
        display: none; /* Cacher complètement la section du logo */
    }
    
    .sidenav-logo {
        display: none; /* Cacher aussi le logo directement */
    }
}

/* Responsive styles for small screens */
@media screen and (max-width: 680px) {
    nav {
        padding-left: 0;
        padding-right: 0;
        width: 100%;
    }
    
    nav h1 {
        margin-left: 0;
        margin-right: 0;
        padding-left: 10px;
        padding-right: 10px;
        text-align: center;
        width: 100%;
        font-size: clamp(22px, 5vw, 28px);
    }
    
    .services-container {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        margin-bottom: 20px;
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    }

    .section-title {
        font-size: clamp(22px, 5vw, 28px);
    }
    
    .service-title {
        font-size: clamp(18px, 5vw, 20px);
    }
    
    .content {
        padding: 0 15px;
        margin: 20px auto;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .forfaits-container {
        grid-template-columns: 1fr;
    }
    
    /* Make buttons more finger-friendly on mobile */
    .contact-button, 
    .hero-button, 
    .submit-button, 
    .primary-button {
        padding: 14px 20px;
        width: 100%;
        box-sizing: border-box;
        justify-content: center;
        margin-bottom: 10px;
    }
    
    /* Adjust image sizes for mobile */
    .centered-image {
        max-width: 50%;
    }
}

/* Responsive styles for medium screens */
@media screen and (min-width: 681px) and (max-width: 1024px) {
    .services-container {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .forfaits-container {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .centered-image {
        max-width: 30%;
    }
    
    .hero-buttons {
        flex-wrap: wrap;
    }
}

/* Responsive design for contact page */
@media screen and (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
        gap: 20px; /* Réduire légèrement l'écart en vue mobile */
    }
    
    .form-group {
        margin-bottom: 10px; /* Ajouter un peu d'espace entre les champs en vue mobile */
    }
}

/* Responsive styles for About page */
@media screen and (max-width: 768px) {
    .profile-section {
        flex-direction: column;
        text-align: center;
    }
    
    .values-container {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
    
    .about-container {
        padding: 20px;
    }
}

/* Footer styles with top border */
footer {
    background-color: #232020; /* Sans changement, déjà #232020 */
    color: #F6E8EA; /* Sans changement, déjà #F6E8EA */
    padding-top: 30px; /* Increased padding before content */
    text-align: center; /* Center align content */
    font-family: 'Montserrat', sans-serif; /* Use Montserrat font */
    margin-top: auto; /* Push footer to bottom when content is short */
    margin-bottom: 0; /* Ensure no margin below footer */
    width: 100%; /* Ensure footer spans full width */
    border-top: 3px solid #96705B; /* Add a border to separate content from footer */
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1); /* Add subtle shadow above footer */
    position: relative;
}

/* Add decorative gradient overlay to footer */
footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(35, 32, 32, 0.9), rgba(22, 20, 20, 1));
    z-index: 0;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

footer .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 20px;
    position: relative;
    z-index: 1; /* Position above the background gradient */
}

footer .footer-section {
    flex: 1;
    min-width: 250px;
    margin: 15px;
    text-align: left; /* Add left alignment for footer sections */
    background-color: rgba(150, 112, 91, 0.05);
    padding: 20px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

footer .footer-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

footer h3 {
    margin-bottom: 15px;
    font-size: 20px;
    padding-bottom: 8px;
    display: inline-block;
    color: #D9B88F;
    position: relative;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Add underline effect for footer headings */
footer h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 100%;
    background: linear-gradient(90deg, #D9B88F, transparent);
}

footer p {
    margin: 8px 0;
    line-height: 1.6;
}

footer a {
    color: #F6E8EA;
    text-decoration: none;
    margin: 10px 0;  /* Augmenter la marge verticale de 5px à 10px */
    display: block;
    padding: 5px 0;  /* Increased padding for better tap targets */
    transition: all 0.3s ease;
    position: relative;
    padding-left: 20px;  /* Space for icon */
}

/* Add icon to footer links */
footer a::before {
    content: "›";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #D9B88F;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
}

footer a:hover {
    color: #D9B88F; /* Accent color on hover */
    transform: translateX(5px); /* Slight movement on hover */
    text-decoration: none;
}

footer a:hover::before {
    left: 5px; /* Move icon on hover */
}

footer .footer-bottom {
    margin-top: 10px;
    padding: 15px 0;
    border-top: 1px solid rgba(246, 232, 234, 0.1);
    width: 100%;
    position: relative;
    z-index: 1;
    background-color: rgba(22, 20, 20, 0.5);
}

footer .footer-bottom p {
    margin-bottom: 0;
    font-size: 14px;
    opacity: 0.8;
    letter-spacing: 0.5px;
}

/* Responsive footer for small screens */
@media screen and (max-width: 680px) {
    footer .footer-section {
        flex: 100%;
        margin: 10px 0;
    }
}

/* Remove white space below footer */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Ensure body takes at least full viewport height */
}

/* Homepage specific styling */
.home-hero {
    text-align: center;
    margin-bottom: 150px;
    padding: 50px 20px;
    border-radius: 8px;
    background-color: rgba(123, 114, 99, 0.15);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    isolation: isolate; /* Create a new stacking context */
    -webkit-isolation: isolate;
}

.home-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(150, 112, 91, 0.1) 0%, rgba(172, 228, 170, 0.1) 100%);
    z-index: 0;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.hero-tagline {
    font-size: 22px;
    margin-bottom: 40px;
    color: #F6E8EA;
    font-weight: 300;
    letter-spacing: 0.5px;
    line-height: 1.4;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.hero-button {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-button.primary {
    background-color: #96705B;
    color: #F6E8EA;
}

.hero-button.primary:hover {
    background-color: #7B7263;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.hero-button.secondary {
    background-color: rgba(172, 228, 170, 0.15);
    color: #D9B88F;
    border: 2px solid #D9B88F;
}

.hero-button.secondary:hover {
    background-color: rgba(172, 228, 170, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.home-presentation {
    margin-bottom: 50px;
    padding: 0 20px;
}

.presentation-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: rgba(150, 112, 91, 0.05);
    border-radius: 8px;
    padding: 50px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #96705B;
}

.presentation-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.presentation-content p:last-child {
    margin-bottom: 0;
}

.home-commitments {
    margin-bottom: 50px;
    padding: 0 20px;
}

.commitments-title {
    text-align: center;
    color: #D9B88F;
    font-size: 26px;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

commitments-title::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #D9B88F;
}

.commitments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.commitment-card {
    background-color: rgba(123, 114, 99, 0.1);
    border-radius: 8px;
    padding: 25px;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 3px solid #D9B88F;
    isolation: isolate; /* Create a new stacking context */
    -webkit-isolation: isolate;
}

.commitment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    background-color: rgba(123, 114, 99, 0.2);
}

.commitment-icon {
    font-size: 26px;
    color: #D9B88F;
    margin-right: 15px;
    min-width: 40px;
    text-align: center;
}

.commitment-content {
    flex: 1;
}

.commitment-content p {
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
}

/* Styles pour l'image centrée */
.centered-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: -100px auto 40px;
    max-width: 100%;
    padding: 0 20px;
}

.centered-image {
    max-width: 15%; /* Réduire la largeur maximale de 100% à 70% */
    height: auto;
    border-radius: 10px;
}

/* Responsive adjustments for homepage */
@media screen and (max-width: 768px) {
    .hero-tagline {
        font-size: 18px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .commitment-card {
        padding: 20px;
    }
    
    .commitments-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .centered-image-container {
        margin: -60px auto 30px;
    }
    
    .centered-image {
        max-width: 85%; /* Augmenter légèrement la taille relative sur mobile pour une meilleure visibilité */
    }
    
    .home-hero {
        margin-bottom: 100px;
    }
}

/* Tarif Page Specific Styles */
.tarif-intro {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px;
    border-radius: 8px;
    background-color: rgba(123, 114, 99, 0.1);
    isolation: isolate; /* Create a new stacking context */
    -webkit-isolation: isolate;
}

.section-subtitle {
    color: #D9B88F;
    font-size: 24px;
    margin: 30px 0 15px;
    position: relative;
    display: inline-block;
    letter-spacing: 0.5px;
}

.tarif-base {
    margin-bottom: 40px;
}

/* Add spacing before the transport section */
.tarif-transport {
    margin-top: 60px; /* Add space above the transport section */
    margin-bottom: 40px; /* Keep existing bottom margin */
}

.tarif-card {
    background-color: rgba(150, 112, 91, 0.1);
    border-radius: 8px;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
    border-left: 4px solid #96705B;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    isolation: isolate; /* Create a new stacking context */
    -webkit-isolation: isolate;
}

.tarif-header {
    padding: 15px 20px;
    border-bottom: 1px solid rgba(246, 232, 234, 0.2);
    background-color: rgba(34, 24, 28, 0.3);
}

.tarif-header h3 {
    margin: 0;
    color: #D9B88F;
    font-size: 22px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

.tarif-content {
    padding: 25px;
    text-align: center;
}

.tarif-price {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #F6E8EA;
}

.price-tag {
    font-size: 36px;
    color: #D9B88F;
}

.forfaits-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.forfait-card {
    background: linear-gradient(145deg, rgba(150, 112, 91, 0.12), rgba(123, 114, 99, 0.08));
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border-left: 4px solid #96705B;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    height: 100%;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    flex: 1;
    isolation: isolate; /* Create a new stacking context */
    -webkit-isolation: isolate;
}

.forfait-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.forfait-header {
    padding: 15px;
    border-bottom: 1px solid rgba(246, 232, 234, 0.15);
    background-color: rgba(34, 24, 28, 0.4);
    text-align: center;
}

.forfait-header h4 {
    margin: 0;
    color: #F6E8EA;
    font-size: 20px;
    letter-spacing: 0.5px;
}

.forfait-content {
    padding: 25px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Aligner le contenu en haut plutôt qu'au centre */
    padding-top: 40px; /* Ajouter plus d'espace en haut */
}

/* Classe spécifique pour le premier forfait afin de l'aligner avec les autres */
.forfait-content.no-desc {
    padding-bottom: 30px; /* Ajuste l'espace en bas */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Ajout d'un élément invisible pour combler l'espace et maintenir l'alignement */
.forfait-content.no-desc::after {
    content: "";
    display: block;
    height: 15px; /* Hauteur équivalente au texte manquant */
}

.forfait-price {
    font-size: 32px;
    font-weight: bold;
    color: #D9B88F;
    margin-bottom: 5px;
}

.forfait-rate {
    font-size: 14px; /* Réduit davantage de 16px à 14px */
    font-weight: 500; /* Légèrement moins gras pour être plus lisible en petite taille */
    margin-bottom: 15px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    border-radius: 20px;
    background: rgba(217, 184, 143, 0.15);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.forfait-content p {
    margin-top: 15px;
    font-style: italic;
    opacity: 0.9;
}

.tarif-important, .tarif-forfaits, .tarif-transport, .tarif-devis, 
.tarif-avantage, .tarif-paiement {
    max-width: 900px;
    margin: 0 auto 40px;
    padding: 0 20px;
}

.tarif-paiement {
    max-width: 900px;
    margin: 200px auto 40px; /* Augmentation de la marge supérieure de 0 à 60px */
    padding: 0 20px;
    clear: both; /* S'assurer que la section commence sous les éléments flottants précédents */
}

.important-note, .transport-important, .devis-card, .avantage-card {
    background-color: rgba(150, 112, 91, 0.1);
    border-radius: 8px;
    padding: 20px 25px;
    border-left: 4px solid #96705B;
    margin: 20px 0;
}

.important-note ul, .transport-important ul, .avantage-card ul {
    padding-left: 25px;
}

.important-note li, .transport-important li, .avantage-card li, .costs-example li {
    margin-bottom: 10px;
    position: relative;
}

.airports-list {
    text-align: center;
    font-weight: bold;
    margin: 20px 0;
    padding: 10px;
    background-color: rgba(217, 184, 143, 0.1);
    border-radius: 5px;
}

.table-container {
    overflow-x: auto;
    margin: 25px 0;
}

.tarif-table {
    width: 100%;
    border-collapse: collapse;
    margin: 10px 0 30px;
}

.tarif-table th, .tarif-table td {
    padding: 12px 15px;
    text-align: center;
    border-bottom: 1px solid rgba(246, 232, 234, 0.2);
}

.tarif-table th {
    background-color: rgba(123, 114, 99, 0.3);
    color: #D9B88F;
    font-weight: bold;
}

.tarif-table tr:nth-child(even) {
    background-color: rgba(150, 112, 91, 0.05);
}

.tarif-table tr:hover {
    background-color: rgba(217, 184, 143, 0.1);
}

.costs-example {
    background-color: rgba(123, 114, 99, 0.1);
    padding: 15px 25px;
    border-radius: 8px;
    margin: 20px 0;
}

.transport-important h4, .transport-important h5 {
    color: #D9B88F;
    margin-top: 20px;
    margin-bottom: 10px;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
    justify-content: center;
}

.payment-method {
    background-color: rgba(150, 112, 91, 0.1);
    padding: 15px 25px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 120px;
    transition: transform 0.3s ease;
}

.payment-method:hover {
    transform: translateY(-5px);
    background-color: rgba(150, 112, 91, 0.2);
}

.payment-method i {
    font-size: 28px;
    color: #D9B88F;
    margin-bottom: 10px;
}

.payment-method span {
    font-weight: bold;
}

.payment-method small {
    font-size: 12px;
    opacity: 0.8;
    margin-top: 5px;
}

/* Responsive adjustments for tarif page */
@media screen and (max-width: 768px) {
    .forfaits-container {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .tarif-table th, .tarif-table td {
        padding: 10px;
    }
    
    .payment-methods {
        justify-content: center;
    }
    
    .payment-method {
        width: calc(50% - 20px);
        min-width: 100px;
    }
}

/* Améliorations esthétiques pour la page tarifs */
.animated-section {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

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

.tarif-intro {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    border-radius: 12px;
    background: linear-gradient(145deg, rgba(123, 114, 99, 0.1), rgba(150, 112, 91, 0.15));
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}

.section-subtitle.with-icon {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #D9B88F;
    font-size: 24px;
    margin: 40px 0 15px;
    position: relative;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(217, 184, 143, 0.3);
    padding-bottom: 10px;
}

.section-subtitle.with-icon i {
    background: rgba(150, 112, 91, 0.2);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-description {
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #F6E8EA;
    opacity: 0.9;
}

.highlight-card {
    background: linear-gradient(145deg, rgba(150, 112, 91, 0.15), rgba(123, 114, 99, 0.1));
    border-left: 4px solid #D9B88F;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transform: scale(1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.highlight-card:hover {
    transform: scale(1.01);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.highlight-card::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(217, 184, 143, 0.2), transparent 400px);
    top: 0;
    left: 0;
}

.tarif-header {
    padding: 18px 22px;
    border-bottom: 1px solid rgba(246, 232, 234, 0.2);
    background-color: rgba(34, 24, 28, 0.4);
    position: relative;
}

.tarif-content {
    padding: 30px;
    text-align: center;
    position: relative;
}

.tarif-price {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #F6E8EA;
    gap: 5px;
}

.price-tag {
    font-size: 50px;
    color: #D9B88F;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    font-weight: 700;
    position: relative;
}

.price-unit {
    font-size: 20px;
    opacity: 0.9;
}

.price-info {
    margin: 5px 0 20px;
    font-size: 16px;
    opacity: 0.85;
}

.price-details {
    margin-top: 20px;
}

.price-detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    justify-content: center;
}

.price-detail-item i {
    color: #D9B88F;
}

.forfaits-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.forfait-card {
    background: linear-gradient(145deg, rgba(150, 112, 91, 0.12), rgba(123, 114, 99, 0.08));
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border-left: 4px solid #96705B;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    height: 100%;
    min-height: 200px;
    display: flex;
    flex-direction: column;
}

.forfait-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.forfait-header {
    padding: 15px;
    border-bottom: 1px solid rgba(246, 232, 234, 0.15);
    background-color: rgba(34, 24, 28, 0.4);
    text-align: center;
}

.forfait-header h4 {
    margin: 0;
    color: #F6E8EA;
    font-size: 20px;
    letter-spacing: 0.5px;
}

.forfait-content {
    padding: 25px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Aligner le contenu en haut plutôt qu'au centre */
    padding-top: 40px; /* Ajouter plus d'espace en haut */
}

.forfait-price {
    font-size: 36px;
    font-weight: bold;
    color: #D9B88F;
    margin-bottom: 10px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.forfait-rate {
    font-size: 18px;
    margin-bottom: 15px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    border-radius: 20px;
    background: rgba(217, 184, 143, 0.15);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.forfait-content p {
    margin-top: 18px;
    font-style: italic;
    opacity: 0.9;
    font-size: 15px;
}

.senior-aid-section {
    margin-bottom: 40px;
    padding: 0 20px;
}

.aid-card {
    background: linear-gradient(145deg, rgba(150, 112, 91, 0.15), rgba(123, 114, 99, 0.08));
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #D9B88F;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    isolation: isolate; /* Create a new stacking context */
    -webkit-isolation: isolate;
}

.aid-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
}

.aid-title {
    background-color: rgba(34, 24, 28, 0.4);
    color: #D9B88F;
    margin: 0;
    padding: 18px 22px;
    font-size: 22px;
    border-bottom: 1px solid rgba(246, 232, 234, 0.2);
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.aid-content {
    padding: 25px;
}

.info-box, .assistance-box {
    background-color: rgba(123, 114, 99, 0.1);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    border-left: 3px solid #96705B;
}

.info-box h4, .assistance-box h4 {
    color: #D9B88F;
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.check-list {
    list-style-type: none;
    padding-left: 5px;
    margin-top: 15px;
}

.check-list li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 28px;
}

.check-list li::before {
    content: "✓";
    color: #D9B88F;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.contact-emphasis {
    font-weight: bold;
    padding: 12px 15px;
    margin: 15px 0;
    background-color: rgba(150, 112, 91, 0.15);
    border-radius: 6px;
    display: inline-block;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.contact-emphasis i {
    color: #D9B88F;
    margin-right: 5px;
}

/* Enhance buttons with better touch targets for mobile */
.contact-button,
.hero-button,
.submit-button,
.primary-button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Add animation delay to staggered animations for sections */
.animated-section:nth-child(1) { animation-delay: 0.1s; }
.animated-section:nth-child(2) { animation-delay: 0.2s; }
.animated-section:nth-child(3) { animation-delay: 0.3s; }
.animated-section:nth-child(4) { animation-delay: 0.4s; }
.animated-section:nth-child(5) { animation-delay: 0.5s; }
.animated-section:nth-child(6) { animation-delay: 0.6s; }

/* Fix for forms on mobile */
@media screen and (max-width: 768px) {
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Prevent iOS zoom on focus */
    }
    
    .form-group {
        margin-bottom: 15px;
    }
    
    .form-group.full-width {
        margin-bottom: 20px;
    }
    
    /* Better touch targets for radio buttons */
    .radio-group {
        gap: 15px;
    }
    
    .radio-label {
        padding: 8px 0;
    }
    
    /* Improve mobile table display */
    .table-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

/* Glow effect for important CTA buttons */
.glow-effect {
    animation: glow 2s infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 0 5px rgba(217, 184, 143, 0.5);
    }
    to {
        box-shadow: 0 0 15px rgba(217, 184, 143, 0.8);
    }
}

/* Ajustements responsifs pour les prix après réduction */
@media screen and (max-width: 480px) {
    .after-tax-reduction, .after-tax-forfait, .forfait-rate {
        padding: 6px 12px;
        font-size: 12px; /* Taille réduite en version mobile */
    }
}