/* Variables de couleur */
:root {
    --vert-pastel: #c1f0c1;
    --bleu-pastel: #b5e0f5;
    --jaune-pastel: #f5e6b5;
    --vert-amazon: #a8d8b9;
    --vert-fonce: #7cb8a5;
    --texte-fonce: #2d3a3a;
    --texte-clair: #4a5e5e;
    --blanc: #f8f8f8;
}

/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--texte-fonce);
    line-height: 1.6;
    background-color: var(--blanc);
    background-image: url('img/background.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    background-blend-mode: overlay;
    background-color: rgba(255, 255, 255, 0.88);
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 20%, rgba(255,255,255,0.7) 90%);
    z-index: -1;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
}

a {
    text-decoration: none;
    color: inherit;
}

/* En-tête */
header {
    background-color: rgba(248, 248, 248, 0.95);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(5px);
    border-bottom: 1px solid var(--vert-amazon);
    height: 80px; /* Hauteur fixe pour la navbar */
}

.logo-container h1 {
    color: var(--texte-fonce);
    font-size: 1.8rem;
    position: relative;
    display: inline-block;
}

.slogan {
    color: var(--texte-clair);
    font-size: 0.9rem;
    font-style: italic;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 2rem;
    position: relative;
}

nav ul li a {
    transition: color 0.3s;
    padding: 0.5rem 0;
}

nav ul li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--vert-amazon);
    transition: width 0.3s;
}

nav ul li a:hover::after {
    width: 100%;
}

/* Section Hero */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(181, 224, 245, 0.3), rgba(193, 240, 193, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
    position: relative;
    overflow: hidden;
    padding-top: 80px; /* Compensation pour la navbar */
    margin-bottom: 40px; /* Espace pour le bouton */
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1448375240586-882707db888b?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    z-index: -1;
}

.hero-content {
    background-color: rgba(248, 248, 248, 0.95);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--vert-amazon);
    backdrop-filter: blur(2px);
    margin: 40px 0; /* Espace autour du contenu */
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--texte-fonce);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--texte-clair);
}

/* Boutons */
.btn {
    display: inline-block;
    background-color: var(--jaune-pastel);
    color: var(--texte-fonce);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-weight: 500;
    margin-bottom: 20px; /* Espace sous le bouton */
}

.btn:hover {
    background-color: var(--vert-amazon);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Sections */
section {
    padding: 5rem 2rem;
    position: relative;
}

section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1459397216852-c5500718f84e?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    z-index: -1;
}

h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--vert-amazon);
    margin: 1rem auto;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background-color: rgba(248, 248, 248, 0.95);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    border: 1px solid var(--vert-amazon);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(2px);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-card .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: var(--texte-fonce);
}

.service-card p {
    color: var(--texte-clair);
}

/* À propos */
.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.about-content {
    background-color: rgba(248, 248, 248, 0.95);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--vert-amazon);
    backdrop-filter: blur(2px);
}

.about-content p {
    margin-bottom: 1rem;
    color: var(--texte-clair);
}

.about-image {
    position: relative;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--vert-amazon);
}

.placeholder-image {
    width: 100%;
    height: 100%;
    background-image: url('img/bureau.jpg');
    background-size: cover;
    background-position: center;
}

.placeholder-image1 {
    width: 100%;
    height: 100%;
    background-image: url('img/reiki.jpg');
    background-size: cover;
    background-position: center;
}

/* Contact */
.contact {
    max-width: 800px;
    margin: 0 auto;
    background-color: rgba(248, 248, 248, 0.95);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--vert-amazon);
    backdrop-filter: blur(2px);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--texte-clair);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* Pied de page */
footer {
    background: linear-gradient(135deg, rgba(193, 240, 193, 0.9), rgba(181, 224, 245, 0.9));
    color: var(--texte-fonce);
    padding: 3rem 2rem 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.social-icons a:hover {
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--texte-clair);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    header {
        flex-direction: row;
        padding: 1rem;
        height: auto;
        flex-wrap: wrap;
    }

    nav ul {
        margin-top: 1rem;
    }

    nav ul li {
        margin-left: 1rem;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .about {
        grid-template-columns: 1fr;
    }

    .about-image {
        height: 300px;
        order: -1;
    }
    
    .hero-content {
        padding: 2rem 1rem;
        margin: 20px 0;
    }
    
    section {
        padding: 3rem 1rem;
    }

    .hero {
        min-height: calc(100vh - 80px);
        padding-top: 80px;
    }

    /* Menu mobile */
    .desktop-nav {
        display: none;
    }
    
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 30px;
        height: 40px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        margin-left: auto;
        z-index: 1001;
        position: relative;
    }
    
    .hamburger span {
        width: 30px;
        height: 3px;
        background: var(--texte-fonce);
        transition: all 0.3s ease;
        margin: 3px 0;
    }
    
    .mobile-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(248, 248, 248, 0.98);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 1000;
    }
    
    .mobile-nav.active {
        transform: translateX(0);
    }
    
    .mobile-nav ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 0;
    }
    
    .mobile-nav ul li {
        margin: 1rem 0;
        width: 100%;
        text-align: center;
    }
    
    .mobile-nav ul li a {
        display: block;
        padding: 1rem;
        font-size: 1.2rem;
        color: var(--texte-fonce);
        transition: all 0.3s ease;
    }
    
    .mobile-nav ul li a:hover {
        background-color: var(--vert-amazon);
        color: white;
    }
    
    /* Animation hamburger */
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

.heroeitalicdj {
    font-style: italic;
    color: var(--texte-fonce);
    font-size: 0.7rem;
    margin-top: 1rem;
}


:root {
    --jaune-pastel: #F9E79F;
    --vert-amazon: #A2D9A5;
    --texte-fonce: #2C3E50;
    --fond-clair: #F8F9FA;
    --bordure: #E1E5EB;
}

.about-content {
    max-width: 850px;
    margin: 30px auto;
    padding: 40px;
    padding-bottom: 80px; /* Espace pour le bouton */
    font-family: 'Arial', sans-serif;
    background-color: var(--fond-clair);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--bordure);
    line-height: 1.6;
    position: relative; /* Pour positionnement absolu du bouton */
}

.about-content h2 {
    color: var(--texte-fonce);
    text-align: center;
    margin-bottom: 25px;
    font-size: 28px;
}

.content-wrapper {
    max-height: 180px;
    overflow: hidden;
    transition: max-height 0.5s ease;
    position: relative;
}

.content-wrapper::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(to bottom, rgba(248, 249, 250, 0), rgba(248, 249, 250, 1));
}

.content-wrapper.expanded {
    max-height: 3000px;
}

.content-wrapper.expanded::after {
    display: none;
}

.see-more-btn {
    position: absolute;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--jaune-pastel);
    color: var(--texte-fonce);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-weight: 500;
    min-width: 150px;
    text-align: center;
}

.see-more-btn:hover {
    background-color: var(--vert-amazon);
    transform: translateX(-50%) translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-content p {
    margin-bottom: 15px;
    color: var(--texte-fonce);
}

.about-content strong {
    color: var(--texte-fonce);
    font-weight: 600;
}

/* Section Tarifs */
.pricing {
    padding: 5rem 2rem;
    background-color: rgba(248, 248, 248, 0.95);
    position: relative;
}

.pricing::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1459411552884-841db9b3cc2a?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.03;
    z-index: -1;
}

.payment-info {
    background-color: rgba(248, 241, 233, 0.9);
    border: 1px solid #e0c9a6;
    border-radius: 8px;
    padding: 20px;
    margin: 20px auto;
    max-width: 800px;
    text-align: center;
    color: #8e6c5a;
    font-size: 1rem;
    line-height: 1.6;
}

.payment-info p {
    margin-bottom: 15px;
}

.payment-info ul {
    text-align: left;
    margin: 15px auto;
    max-width: 400px;
}

.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto;
}

.pricing-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--vert-amazon);
    position: relative;
    transition: transform 0.3s;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.pricing-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px dashed var(--vert-amazon);
}

.pricing-header h3 {
    color: var(--vert-fonce);
    font-size: 1.4rem;
}

.leaf-icon {
    font-size: 2rem;
    margin-top: 0.5rem;
    color: var(--vert-amazon);
}

.pricing-features {
    list-style: none;
}

.pricing-features li {
    padding: 0.8rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
}

.price {
    font-weight: 500;
    color: var(--vert-fonce);
    font-size: 1.1rem;
}

/* Carte mise en avant */
.pricing-card.highlight {
    border: 2px solid var(--jaune-pastel);
    background-color: rgba(245, 230, 181, 0.1);
}

.economy-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background-color: var(--jaune-pastel);
    color: var(--texte-fonce);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.pricing-footer {
    text-align: center;
    margin-top: 3rem;
    color: var(--texte-clair);
}

/* Responsive */
@media (max-width: 768px) {
    .pricing-container {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
}

.promo-banner {
    background-color: #f8f1e9;
    border: 1px solid #e0c9a6;
    border-radius: 5px;
    padding: 12px;
    margin: 20px auto;
    text-align: center;
    font-weight: bold;
    color: #8e6c5a;
    max-width: 80%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

/* Contact Section */
.contact {
    max-width: 800px;
    margin: 0 auto;
    background-color: rgba(248, 248, 248, 0.95);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--vert-amazon);
    backdrop-filter: blur(2px);
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--texte-clair);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    background-color: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-group:last-child,
.checkbox-group,
.form-group:nth-last-child(2) {
    grid-column: 1 / -1;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.checkbox-group input {
    width: auto;
}

.form-status {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    display: none;
}

.form-status.success {
    background-color: rgba(162, 217, 165, 0.3);
    color: var(--texte-fonce);
    display: block;
}

.form-status.error {
    background-color: rgba(255, 0, 0, 0.1);
    color: var(--texte-fonce);
    display: block;
}

@media (max-width: 768px) {
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .contact {
        padding: 2rem 1rem;
    }
}

/* Section Contact */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
}

.contact-method {
    background: rgba(248, 248, 248, 0.95);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--vert-amazon);
    transition: transform 0.3s;
}

.contact-method:hover {
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-method h3 {
    color: var(--vert-fonce);
    margin-bottom: 1rem;
}

.contact-method a {
    color: var(--texte-fonce);
    word-break: break-all;
}

.contact-method a:hover {
    color: var(--vert-fonce);
    text-decoration: underline;
}

@media (max-width: 600px) {
    .contact-info {
        grid-template-columns: 1fr;
    }
}
.surligne {
    background-color: yellow;
    text-decoration: underline;
  }

  /* Navigation principale */
.main-nav {
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
    position: relative;
}

.nav-links li a {
    transition: color 0.3s;
    padding: 0.5rem 0;
}

.nav-links li a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--vert-amazon);
    transition: width 0.3s;
}

.nav-links li a:hover::after {
    width: 100%;
}

/* Menu hamburger - caché par défaut */
.hamburger {
    display: none;
}

@media (max-width: 768px) {
    /* Cacher la nav principale en mobile */
    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(248, 248, 248, 0.98);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 1000;
    }
    
    .main-nav.active {
        transform: translateX(0);
    }
    
    .nav-links {
        flex-direction: column;
        align-items: center;
        width: 100%;
        padding: 0;
    }
    
    .nav-links li {
        margin: 1rem 0;
        width: 100%;
        text-align: center;
    }
    
    .nav-links li a {
        display: block;
        padding: 1rem;
        font-size: 1.2rem;
    }
    
    /* Afficher le hamburger en mobile */
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 30px;
        height: 40px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        margin-left: auto;
        z-index: 1001;
        position: relative;
    }
    
    /* Animation hamburger */
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

/* Section pleine largeur sans image */
.about-fullwidth {
    display: block;
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.about-content-full {
    background-color: rgba(248, 248, 248, 0.95);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--vert-amazon);
    backdrop-filter: blur(2px);
    width: 100%;
}

.initiation-card {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    border-left: 3px solid var(--vert-amazon);
}

.initiation-card h3 {
    color: var(--vert-fonce);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.initiation-card p {
    margin-bottom: 0.8rem;
    color: var(--texte-clair);
}

/* Ajustement pour le bouton "Voir plus" */
.about-content-full .see-more-btn {
    display: block;
    margin: 20px auto 0;
    background-color: var(--jaune-pastel);
    color: var(--texte-fonce);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.about-content-full .see-more-btn:hover {
    background-color: var(--vert-amazon);
}

/* Pour la section dixvertues seulement */
#dixvertues .about-content-full {
    padding-bottom: 60px; /* Ajoute plus d'espace en bas */
    position: relative; /* Permet un positionnement absolu enfant */
}

#dixvertues .see-more-btn {
    position: absolute;
    bottom: 30px; /* Augmentez cette valeur si nécessaire */
    left: 50%;
    transform: translateX(-50%);
    margin-top: 30px; /* Espace supplémentaire au-dessus du bouton */
}

/* Version mobile - max-width: 768px */
@media (max-width: 768px) {
    #dixvertues .about-content-full {
        padding-bottom: 80px; /* Plus d'espace sur mobile */
    }

    #dixvertues .see-more-btn {
        bottom: 40px; /* Position plus basse sur mobile */
        width: 90%; /* Largeur plus importante */
        max-width: 200px; /* Mais limitée */
        padding: 12px 0; /* Plus de hauteur pour faciliter le clic */
    }

    #dixvertues .content-wrapper.expanded {
        padding-bottom: 20px; /* Espace supplémentaire avant le bouton */
    }
}   

.payment-notice {
    text-align: center;
    margin: 20px auto;
    padding: 12px;
    max-width: 80%;
    background-color: rgba(248, 241, 233, 0.9);
    border: 1px solid #e0c9a6;
    border-radius: 8px;
    color: #8e6c5a;
    font-weight: 500;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    backdrop-filter: blur(2px);
}

/* Animation subtile au survol */
.payment-notice:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

/* Version mobile */
@media (max-width: 768px) {
    .payment-notice {
        max-width: 90%;
        font-size: 0.9rem;
        padding: 10px;
    }
}

/* Ajoutez ceci à votre fichier style.css */
.pricing-subsection {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px dashed #e0e0e0;
}

.pricing-subsection:last-child {
    border-bottom: none;
}

.pricing-subsection h4 {
    color: var(--vert-fonce);
    font-size: 1rem;
    margin-bottom: 0.8rem;
    text-align: center;
}

.pricing-description {
    font-size: 0.85rem;
    color: var(--texte-clair);
    margin-top: 1rem;
    font-style: italic;
    text-align: center;
}

@media (max-width: 768px) {
    .pricing-subsection h4 {
        font-size: 0.9rem;
    }
    
    .pricing-description {
        font-size: 0.8rem;
    }
}

/* Style détaillé pour les tarifs */
.pricing-container-detailed {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.pricing-card-detailed {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--vert-amazon);
    position: relative;
}

.pricing-header-detailed {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px dashed var(--vert-amazon);
}

.pricing-header-detailed h3 {
    color: var(--vert-fonce);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.pricing-modality {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: rgba(248, 248, 248, 0.7);
    border-radius: 10px;
}

.pricing-modality h4 {
    color: var(--texte-fonce);
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    text-align: center;
}

.modality-description {
    font-size: 0.9rem;
    color: var(--texte-clair);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.pricing-features-detailed {
    list-style: none;
    margin: 1.5rem 0;
}

.pricing-features-detailed li {
    padding: 0.8rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    font-size: 0.95rem;
}

.sub-service {
    margin: 1.5rem 0;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    border-left: 3px solid var(--vert-amazon);
}

.sub-service h5 {
    color: var(--texte-fonce);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.service-description {
    font-size: 0.85rem;
    color: var(--texte-clair);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.global-description {
    font-size: 0.9rem;
    color: var(--texte-clair);
    margin: 1.5rem 0;
    line-height: 1.6;
    padding: 0 1rem;
}

.procedure {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.procedure h5 {
    color: var(--vert-fonce);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.procedure ol {
    padding-left: 1.2rem;
    font-size: 0.85rem;
    color: var(--texte-clair);
    line-height: 1.5;
}

.procedure li {
    margin-bottom: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .pricing-card-detailed {
        padding: 1.5rem;
    }
    
    .pricing-header-detailed h3 {
        font-size: 1.2rem;
    }
    
    .pricing-modality {
        padding: 1rem;
    }
    
    .pricing-modality h4 {
        font-size: 1rem;
    }
    
    .global-description, .modality-description {
        font-size: 0.85rem;
    }
    
    .procedure ol {
        font-size: 0.8rem;
    }
}

/* Séparateurs entre les sections tarifs */
.pricing-card-detailed {
    position: relative;
    padding-bottom: 2.5rem;
    margin-bottom: 2.5rem;
}

.pricing-card-detailed:not(:last-child)::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--vert-amazon), transparent);
    border-radius: 2px;
}

/* Espacement supplémentaire entre les modalités */
.pricing-modality:not(:last-child) {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px dashed rgba(162, 216, 165, 0.3);
}

/* Style pour les sous-sections */
.sub-service:not(:last-child) {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px dashed rgba(162, 216, 165, 0.2);
}

/* Ajoutez ce CSS pour les interlignes */
.pricing-header-detailed {
    margin-bottom: 2.5rem; /* Espace après le titre principal */
}

.pricing-modality h4 {
    margin: 1.5rem 0 1rem; /* Espace avant et après les sous-titres */
}

.modality-description {
    margin: 1rem 0 1.5rem; /* Espace autour des descriptions */
    line-height: 1.6; /* Interligne plus aérée */
}

.pricing-features-detailed {
    margin: 1.5rem 0;
}

.pricing-features-detailed li {
    padding: 1rem 0; /* Plus d'espace entre les tarifs */
}

.sub-service {
    margin: 2rem 0; /* Espace entre les sous-services */
}

.sub-service h5 {
    margin: 1rem 0 0.8rem; /* Espace autour des titres de sous-service */
}

.service-description {
    margin: 0.8rem 0 1rem;
    line-height: 1.6;
}

.global-description {
    margin: 2rem 0;
}

.procedure {
    margin: 1.5rem 0;
}

.procedure h5 {
    margin: 1rem 0;
}

.procedure ol {
    margin: 1rem 0;
}

.procedure li {
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

/* Version mobile */
@media (max-width: 768px) {
    .pricing-header-detailed {
        margin-bottom: 2rem;
    }
    
    .pricing-modality h4 {
        margin: 1.2rem 0 0.8rem;
    }
    
    .modality-description {
        margin: 0.8rem 0 1.2rem;
    }
    
    .sub-service {
        margin: 1.5rem 0;
    }
}