@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* General Styles */
*, *::before, *::after {
  box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #333;
    width: 100%;
    max-width: 100vw;   
    background-color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3, h4 {
    color: #333;
    word-break: break-word;
}

p, h1, h2, h3, h4, h5, h6, a, span {
  word-break: break-word;
}

img, svg, video {
  max-width: 100%;
  height: auto;
  display: block;
}

.section-title  {
    font-size: 3.1em;
    color: #666;
    margin-bottom: 60px;
    text-align: center;
    }


.section-subtitle {
    font-size: 1.1em;
    color: #666;
    margin-bottom: 60px;
    text-align: center;
}

/* Header */
.header {
    background-color: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 20px;
    color: #5a3dbe;
}

.logo img {
    height: 30px;
    margin-right: 8px;
}

.nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.nav ul li {
    margin-left: 30px;
}

.nav ul li a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav ul li a:hover,
.nav ul li a.active {
    color: #5a3dbe;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    text-align: center; /* Ensure text is centered for full-width buttons */
}

.btn-primary {
    background-color: #b4a2df;
    color: #fff;
    border: none;
}

.btn-primary:hover {
    background-color: #9a6fd9;
    cursor: pointer; 
}

.btn-secondary {
    background-color: #fff;
    color: #b185e6;
    border: 1px solid #b185e6;
}

.btn-secondary:hover {
    background-color: #f0e6fa;
}

.btn-light-blue {
    background-color: #c1dcfe; /* Light blue from image */
    color: #ffffff; /* Dark purple text to match button in image */
    border: 1px solid #e0f2f7;
}

.btn-light-blue:hover {
    background-color: #b5d0f1;
    cursor: pointer; 
}

.btn-centered {
    display: block;
    margin: 0 auto;
    width: fit-content;
}

/* Icon Background Colors (Reused for consistency) */
.purple-bg { background-color: #b4a2df; } /* Light Purple */
.light-purple-bg { background-color: c0b3e6; } /* Lighter Purple, used for some cards */
.pink-bg { background-color: #fea1c2; } /* Light Pink */
.orange-bg { background-color: #ffcc81; } /* Light Orange */
.light-blue-bg { background-color: #c3dcfc; } /* Light Blue */
.light-green-bg { background-color: #7ed9c8; } /* Light Green */
.dark-purple-bg { background-color: #c0b3e6; } /* Slightly darker purple for some specific icons */

.card-icon.purple i { color: #8C6AFF; }
.card-icon.blue i { color: #6A9CFF; }
.card-icon.pink i { color: #FF6AB2; }
.card-icon.orange i { color: #FFD700; }
.card-icon.green i { color: #00BF63; }


/* Style pour la section avec le fond #f9fbff */
#method-4-steps-section {
    background-color: #f9fbff;
}

/* Hero Section (Home Page) */
.hero-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background-color: #fcfcfc; /* Consistent background for hero */
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
    text-align: left;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-text h1 {
    font-size: 3.2em;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text h1 .highlight-purple {
    color: #b4a2df;
}

.hero-text p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #666;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    background-color: #fcf3ea; /* Card-like background for image */
}

.hero-image img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Decorative Shapes for Hero */
.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
}

.shape-top-right {
    width: 120px;
    height: 120px;
    background-color: #c9e6e8; /* Light blue/green */
    top: 20%;
    right: 5%;
}

.shape-bottom-right {
    width: 80px;
    height: 80px;
    background-color: #f7d5e4; /* Light pink */
    bottom: 10%;
    right: 15%;
}

.shape-left { /* Added for home page image */
    width: 90px;
    height: 90px;
    background-color: #e6e6fa; /* Light purple */
    top: 60%;
    left: 5%;
}

/* For Who Section (Home Page) and Why Invest Section (Enterprise Page) */
.for-who-section, .why-invest-section {
    padding: 80px 0;
    text-align: center;
    background-color: #fcf3ec;
}

.for-who-section h2, .why-invest-section h2 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 15px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.card .icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.card .icon-wrapper img {
    width: 30px;
    height: 30px;
}

.card h3 {
    font-size: 1.15em;
    font-weight: 600; /* Plus de gras */
    color: #000000;
    margin-top: 0;
    margin-bottom: 10px;
}

.card p {
    font-size: 0.95em;
    color: #666;
    line-height: 1.6;
}

.bottom-card { /* Specific to Why Invest Section */
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.bottom-card h3 {
    font-size: 1.6em;
    color: #5a3dbe;
    margin-top: 0;
    margin-bottom: 15px;
}

.bottom-card p {
    font-size: 1em;
    color: #666;
    line-height: 1.6;
}

/* Our Journey Section (Home Page) */
.our-journey-section {
    padding: 80px 0;
    text-align: center;
    background-color: #fff;
}

.our-journey-section h2 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 15px;
}

.journey-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.journey-card {
    background-color: #fcfcfc;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: left;
    display: flex;
    flex-direction: column;
}

.journey-card .icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.journey-card .icon-wrapper img {
    width: 30px;
    height: 30px;
}

.journey-card h3 {
    font-size: 1.15em;
    color: #000000;
    margin-top: 0;
    margin-bottom: 15px;

}

.journey-card p {
    font-size: 0.95em;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.journey-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.journey-card ul li {
    font-size: 0.95em;
    color: #666;
    margin-bottom: 10px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.journey-card ul li img {
    width: 18px; /* Size for checkmark */
    height: 18px;
    flex-shrink: 0;
}

.more-info-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #b4a2df;
    font-weight: 600;
    transition: color 0.3s ease;
    margin-top: auto;
}

.more-info-link:hover {
    color: #452a8a;
}

.more-info-link .arrow {
    margin-left: 8px;
    font-size: 1.1em;
}

.more-info-link.coming-soon {
    opacity: 0.7;
    pointer-events: none; /* Make it unclickable */
}

/* Approach & Method Section (Home Page) */
.approach-method-section {
    padding: 80px 0;
    text-align: center;
    background-color: #f9fbff;
}

.approach-method-section h2 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 15px;
}

.approach-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.approach-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.approach-card .icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.approach-card .icon-wrapper img {
    width: 30px;
    height: 30px;
}

.approach-card h3 {
    font-size: 1.4em;
    color: #000000;
    margin-top: 0;
    margin-bottom: 10px;
}

.approach-card p {
    font-size: 0.95em;
    color: #666;
    line-height: 1.6;
}

/* What is UNMAYO Section (Home Page) */
.what-is-unmayo-section {
    padding: 80px 0;
    text-align: center;
    background-color: #fcf3ec;
}

.what-is-unmayo-section h2 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 15px;
}

.what-is-unmayo-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.what-is-unmayo-card {
    background-color: #fcfcfc;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


.what-is-unmayo-card .icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.what-is-unmayo-card .icon-wrapper img {
    width: 30px;
    height: 30px;
}

.what-is-unmayo-card h3 {
    font-size: 1.4em;
    color: #000000;
    margin-top: 0;
    margin-bottom: 10px;
}

.what-is-unmayo-card p {
    font-size: 0.95em;
    color: #666;
    line-height: 1.6;
}

/*#what-is-unmayo-section.section-subtitle {
    color: #666;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1em;
    line-height: 1.6;
}*/

.white-icon {
    /* Step 1: Invert the colors (turns black to white, white to black) */
    filter: invert(100%);
    /* Step 2: Apply a sepia filter to clean up any yellowish tint from inversion */
    /* You might need to adjust the percentage (e.g., 80%, 90%) for the best result */
    filter: invert(100%) sepia(100%);
    /* Step 3: Optional - adjust brightness/contrast if needed */
    filter: invert(100%) sepia(100%) brightness(1.5);
}

//* Section "Les signes que ce coaching est pour vous" */
.signs-for-you-section {
    /*padding: 80px 0;*/
    /*text-align: center;*/
    background-color: #fcf3ec;
}

.signs-for-you-section h2 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 15px;
}

/*.signs-for-you-section h3 {
    font-size: 1.4em;
    color: #000000;
    margin-top: 0;
    margin-bottom: 10px;
}

#signs-for-you-section.section-subtitle {
    color: #666;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1em;
    line-height: 1.6;
}*/

.signs-for-you-section p {
    font-size: 0.95em;
    color: #666;
    line-height: 1.6;
}

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

.sign-card {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 30px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.sign-card:hover {
    transform: translateY(-5px);
}

.sign-card .icon-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

/* Nouveau style pour le cercle coloré autour de l'icône */
.sign-card .icon-circle {
    width: 32px; /* Taille du cercle */
    height: 32px; /* Taille du cercle */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px; /* Espacement entre le cercle et le texte */
    flex-shrink: 0; /* Empêche le cercle de rétrécir */
}

.sign-card .checkmark-icon {
    width: 18px; /* Taille de l'icône de coche à l'intérieur du cercle */
    height: 18px;
    /* Assurez-vous que votre checkmark.png est blanc ou transparent pour bien apparaître sur les fonds colorés */
}

/* Styles spécifiques pour les couleurs de fond de chaque carte */
/* J'ai ajusté les couleurs pour qu'elles se rapprochent de la maquette.
   Vous devrez peut-être affiner les codes hexadécimaux pour une correspondance parfaite. */

/* Card 1: Neuroatypiques (Violet clair) */
.sign-card:nth-child(1) {
    background-color: #f7f4fa; /* Fond de la carte */
}
.sign-card:nth-child(1) .icon-circle {
    background-color: #b4a3db /* Cercle de la coche */
}
.sign-card:nth-child(1) .sign-title {
    color: #6a40a6; /* Couleur du titre spécifique à la carte */
}


/* Card 2: Masquage Social (Bleu très clair) */
.sign-card:nth-child(2) {
    background-color: #f4fbfd;
}
.sign-card:nth-child(2) .icon-circle {
    background-color: #c3dcfc;
}
.sign-card:nth-child(2) .sign-title {
    color: #3b88b4;
}

/* Card 3: Suradaptation (Rose très clair) */
.sign-card:nth-child(3) {
    background-color: #fffafb;
}
.sign-card:nth-child(3) .icon-circle {
    background-color: #fea1c2;
}
.sign-card:nth-child(3) .sign-title {
    color: #ce5a78;
}

/* Card 4: Résonance (Jaune très clair) */
.sign-card:nth-child(4) {
    background-color: #fffbf5;
}
.sign-card:nth-child(4) .icon-circle {
    background-color: #ffcc81;
}
.sign-card:nth-child(4) .sign-title {
    color: #a7803a;
}

/* Card 5: Adultes (Vert très clair) */
.sign-card:nth-child(5) {
    background-color: #f5fcf8;
}
.sign-card:nth-child(5) .icon-circle {
    background-color: #7dd8c7;
}
.sign-card:nth-child(5) .sign-title {
    color: #559f77;
}

/* Card 6: Désir d'Authenticité (Violet très clair, similaire au premier) */
.sign-card:nth-child(6) {
    background-color: #f7f4fa;
}
.sign-card:nth-child(6) .icon-circle {
    background-color: #b4a3da;
}
.sign-card:nth-child(6) .sign-title {
    color: #6a40a6;
}

/* Styles généraux pour les titres et descriptions des cartes */
.sign-card .sign-title {
    font-size: 1.15em; /* Ajuster la taille du titre de la carte */
    font-weight: 600; /* Plus de gras */
    color: #333; /* Couleur par défaut */
}

.sign-card .sign-description {
    font-size: 0.9em; /* Réduire légèrement la taille de la description */
    color: #555;
    line-height: 1.6;
}

/* Style pour le texte d'appel à l'action final */
.cta-text {
    font-size: 1.1em;
    color: #333;
    margin-top: 50px;
    margin-bottom: 20px;
    text-align: center;
}

/* Styles du bouton (pas de changement majeur, mais pour la cohérence) */
.button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.primary-button {
    background-color: #7d4ee7; /* Un violet plus clair pour correspondre à la maquette */
    color: #ffffff;
    border: none;
    font-size: 1.05em; /* Ajuster la taille du texte du bouton */
}

.primary-button:hover {
    background-color: #6a3ece; /* Violet plus foncé au survol */
    cursor: pointer;
}

/* Responsive design pour les petits écrans */
@media (max-width: 768px) {
    .signs-grid {
        grid-template-columns: 1fr;
    }

    .sign-card {
        padding: 25px;
    }

    #signs-for-you-section {
        padding: 60px 20px;
    }
}

/* Method in 4 Steps Section (Home Page) */
.method-4-steps-section {
    padding: 80px 0;
    text-align: center;
    background-color: #f9fbff;
}

.method-4-steps-section h2 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 15px;
}

.steps-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 50px;
}

.timeline-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    background-color: #b185e6;
    height: calc(100% - 100px); /* Adjust height based on first/last item padding */
    top: 50px; /* Start below the first number */
    bottom: 50px; /* End above the last number */
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #b4a3db; 
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5em;
    font-weight: 700;
    flex-shrink: 0;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.timeline-number1 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #b4a2df;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5em;
    font-weight: 700;
    flex-shrink: 0;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.timeline-number2 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #ffa0c3; 
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5em;
    font-weight: 700;
    flex-shrink: 0;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.timeline-number3 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #fecb82; 
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5em;
    font-weight: 700;
    flex-shrink: 0;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.timeline-number4 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #7dd9c8; 
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5em;
    font-weight: 700;
    flex-shrink: 0;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}


.timeline-item:nth-child(odd) .timeline-number {
    margin-right: 30px;
}

.timeline-item:nth-child(even) .timeline-number {
    margin-left: 30px;
}

.timeline-content {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    flex-grow: 1;
    text-align: left;
}

.timeline-item .timeline-content1 {
    background-color: #f7f6fb;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    flex-grow: 1;
    text-align: left;
}

.timeline-item .timeline-content2 {
    background-color: #fff6f9;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    flex-grow: 1;
    text-align: left;
}

.timeline-item .timeline-content3 {
    background-color: #fffaf2;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    flex-grow: 1;
    text-align: left;
}

.timeline-item .timeline-content4 {
    background-color: #f2fbf9;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    flex-grow: 1;
    text-align: left;
}

.timeline-content h3 {
    font-size: 1.4em;
    color: #b4a3db;
    margin-top: 0;
    margin-bottom: 10px;

.purple-bg { background-color: #b4a2df; } /* Light Purple */
.light-purple-bg { background-color: #c0b3e6; } /* Lighter Purple, used for some cards */
.pink-bg { background-color: #fea1c2; } /* Light Pink */
.orange-bg { background-color: #ffcc81; } /* Light Orange */
.light-blue-bg { background-color: #c3dcfc; } /* Light Blue */
.light-green-bg { background-color: #7ed9c8; } /* Light Green */
.dark-purple-bg { background-color: #c0b3e6; } /* Slightly darker purple for some specific icons */

.card-icon.purple i { color: #8C6AFF; }
.card-icon.blue i { color: #6A9CFF; }
.card-icon.pink i { color: #FF6AB2; }
.card-icon.orange i { color: #FFD700; }
.card-icon.green i { color: #00BF63; }

}

.timeline-content p {
    font-size: 0.95em;
    color: #666;
    line-height: 1.6;
}

/* Complete Structured Journey Section (Home Page) */
.complete-structured-journey-section {
    padding: 80px 0;
    text-align: center;
    background-color: #fcf3ec; /* Light purple background */
}

.complete-structured-journey-section .info-box {
    background-color: #fff;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    max-width: 800px;
    margin: 0 auto;
}

.complete-structured-journey-section .info-box h2 {
    font-size: 2.2em;
    color: #5a3dbe;
    margin-bottom: 20px;
}

.complete-structured-journey-section .info-box p {
    font-size: 1.1em;
    color: #666;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Solutions Section (Home Page) */
.solutions-section {
    padding: 80px 0;
    text-align: center;
    background-color: #f7f6fb;
}

.solutions-section h2 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 15px;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
}

.solution-card {
    border-top: 5px solid #d6e5ea;
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    display: flex;
    flex-direction: column;
}

.icon-wrapper.circle-icon {
    width: 70px;
    height: 70px;
    margin: auto;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    background-color: #b4a2df;
}

.solution-card:nth-child(2) .icon-wrapper.circle-icon {
    background-color: #b7d1f0;
}


.solution-card .icon-wrapper img {
    width: 40px;
    height: 40px;
}


.solution-card h3 {
    font-size: 1.15em;
    color: #000000;
    margin-top: 0;
    margin-bottom: 15px;
}

.solution-card p {
    font-size: 1em;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.solution-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.solution-card ul li {
    font-size: 0.95em;
    color: #666;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.solution-card ul li img {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    background-color: white;
}

/* Phases Section (Home Page) */
.phases-section {
    padding: 80px 0;
    text-align: center;
    background-color: #fcf3ec;
}

.phases-section h2 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 15px;
}

.phases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.phase-card {
    background-color: #fcfcfc;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: left;
    display: flex;
    flex-direction: column;
}

.phase-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.phase-icon-wrapper img {
    width: 30px;
    height: 30px;
}

.phase-purple { background-color: #b4a2df; }
.phase-light-green { background-color: #7ed9c8; }
.phase-orange { background-color: #ffcc81; }
.phase-pink { background-color: #fea1c2; }
.phase-light-blue { background-color: #c3dcfc; }
.phase-dark-purple { background-color: #c0b3e6; }

.phase-card h3 {
    font-size: 1.4em;
    color: #000000;
    margin-top: 0;
    margin-bottom: 10px;
    text-align: center ;
}

.phase-card h3 span {
    display: block;
    font-size: 0.8em;
    color: #888;
    font-weight: 400;
    margin-top: 5px;
}

.phase-card p {
    font-size: 0.95em;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1;
}

.phase-card .benefit {
    color: #000000;
    margin: auto;
    margin-top: auto; /* Pushes benefit to the bottom */
}

.benefit-area1 {
    padding: 12px;
    border-radius: 10px;
    background-color: #f7f6fb;
}

.benefit-area2 {
    padding: 12px;
    border-radius: 10px;
    background-color: #f2fbf9;
}

.benefit-area3 {
    padding: 12px;
    border-radius: 10px;
    background-color: #fffaf2;
}

.benefit-area4 {
    padding: 12px;
    border-radius: 10px;
    background-color: #fff6f9;
}

.benefit-area5 {
    padding: 12px;
    border-radius: 10px;
    background-color: #f9fbff;
}

.benefit-area6 {
    padding: 12px;
    border-radius: 10px;
    background-color: #f7f6fb;
}

/* Our Offer Section (Enterprise Page) */
.our-offer-section {
    padding: 80px 0;
    text-align: center;
    background-color: #fff;
}

.our-offer-section h2 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 15px;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 30px;
}

.offer-card {
    background-color: #fcfcfc;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: left;
    display: flex;
    flex-direction: column;
}

.offer-card .icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.offer-card .icon-wrapper img {
    width: 30px;
    height: 30px;
}

.offer-card h3 {
    font-size: 1.5em;
    color: #000000;
    margin-top: 0;
    margin-bottom: 15px;
}

.offer-card p {
    font-size: 0.95em;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.offer-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.offer-card ul li {
    font-size: 0.95em;
    color: #666;
    margin-bottom: 10px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.offer-card ul li img {
    width: 18px; /* Size for checkmark */
    height: 18px;
    flex-shrink: 0;
}

/* UNMAYO Approach Section (Enterprise Page) */
.unmayo-approach-section {
    padding: 80px 0;
    text-align: center;
    background-color: #f9fbff;
}

.unmayo-approach-section h2 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 15px;
}

.approach-steps {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 80px;
}

.step-item {
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    width: 30%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-item .icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.step-item .icon-wrapper img {
    width: 40px;
    height: 40px;
}

.step-item h3 {
    font-size: 1.3em;
    color: #000000;
    margin-top: 0;
    margin-bottom: 10px;
}

.step-item p {
    font-size: 0.9em;
    color: #666;
    line-height: 1.5;
}

/* Benefit section (Enterprise Page) */

.benefits-title {
    margin-top: 50px;
    margin-bottom: 40px;
    font-size: 1.2em;
    color: #333;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    text-align: left;
}

.benefit-column {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.benefit-column1 {
    background-color: #000000;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.benefit-column h3 {
    font-size: 1.5em;
    color: #000000;
    margin-top: 0;
    margin-bottom: 20px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px; /* Space between icon and text */
}

.benefit-column h3 img { /* Icons for benefit columns */
    width: 30px;
    height: 30px;
    flex-shrink: 0;
}


.benefit-column ul {
    list-style: none;
    padding: 0;
}

.benefit-column ul li {
    font-size: 0.95em;
    color: #666;
    margin-bottom: 10px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefit-column ul li img {
    width: 15px; /* Size for dot bullets */
    height: 15px;
    flex-shrink: 0;
}

.benefit-item .icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.beneit-item .icon-wrapper img {
    width: 40px;
    height: 40px;
}

.benefit-item h3 {
    font-size: 1.3em;
    color: #000000;
    margin-top: 0;
    margin-bottom: 10px;
}

/* Testimonials Section (Enterprise Page) */
.testimonials-section {
    padding: 80px 0;
    text-align: center;
    background-color: #fff;
}

.testimonials-section h2 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 15px;
}

.testimonial-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.testimonial-card {
    background-color: #fcfcfc;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: left;
    max-width: 550px;
    flex: 1;
}

.testimonial-card h3 {
    font-size: 1.8em;
    color: #000000;
    margin-top: 0;
    margin-bottom: 5px;
}

.testimonial-card .company-info {
    font-size: 0.95em;
    color: #888;
    margin-bottom: 25px;
}

.testimonial-card h4 {
    font-size: 1.1em;
    color: #333;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.testimonial-card .challenge p,
.testimonial-card .intervention p,
.testimonial-card .results p {
    font-size: 0.95em;
    color: #666;
    line-height: 1.6;
}

.testimonial-card .rating {
    margin-top: 25px;
    margin-bottom: 15px;
}

.testimonial-card .rating .star {
    color: #fdd835;
    font-size: 1.5em;
    margin-right: 2px;
}

.testimonial-card .quote {
    font-style: italic;
    font-size: 1.1em;
    color: #5a3dbe;
    margin-top: 20px;
    border-left: 3px solid #b185e6;
    padding-left: 15px;
}

/* FAQ Section (Enterprise Page) */
.faq-section {
    padding: 80px 0;
    text-align: center;
    background-color: #f8f8f8;
}

.faq-section h2 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 15px;
}

.faq-items {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #fff;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    overflow: hidden;
}

.faq-toggle {
    display: none;
}

.faq-question {
    display: block;
    padding: 20px 25px;
    font-size: 1.1em;
    font-weight: 600;
    color: #5a3dbe;
    cursor: pointer;
    position: relative;
    text-align: left;
    user-select: none;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #efedf9;
}

.faq-question::after {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    transition: transform 0.3s ease;
    color: #888;
}

.faq-toggle:checked + .faq-question::after {
    transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 25px;
}

.faq-toggle:checked ~ .faq-answer {
    max-height: 200px;
    padding-bottom: 20px;
}

.faq-answer p {
    font-size: 0.95em;
    color: #666;
    line-height: 1.6;
    margin-top: 0;
    margin-bottom: 0;
}

  /* Section "Contactez-nous" */
        .contact-section {
            background-color: #fcf3ec; /* Couleur de fond correcte */
            padding: 80px 0;
            text-align: center;
        }
        .contact-content {
            display: flex;
            gap: 40px;
            justify-content: center;
            flex-wrap: wrap;
        }
        .contact-form {
            flex: 2;
            min-width: 300px;
            background-color: white; /* Fond du formulaire */
            padding: 40px;
            border-radius: 12px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
            text-align: left;
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--color-text);
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px;
            border: 1px solid var(--color-input-border);
            border-radius: 8px;
            font-family: 'Montserrat', sans-serif;
            font-size: 1em;
            box-sizing: border-box; /* Include padding in width */
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: var(--color-primary);
            outline: none;
            box-shadow: 0 0 0 3px rgba(140, 106, 255, 0.2);
        }
        .form-group.half-width {
            display: flex;
            gap: 20px;
        }
        .form-group.half-width > div {
            flex: 1;
        }
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        .contact-form .btn-primary {
            width: auto; /* Override full width from generic .btn */
            padding: 15px 40px;
            margin-top: 10px;
            cursor: pointer;
            text-align: center;
        }

        .contact-info-block {
            flex: 1;
            min-width: 280px;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .contact-card-info {
            background-color: ffffff;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
            text-align: left;
        }
        .contact-card-info h3 {
            font-size: 1.4em;
            color: var(--color-text);
            margin-top: 0;
            margin-bottom: 20px;
        }
        .info-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            color: #555;
            font-size: 1em;
        }
        .info-item i {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-right: 15px;
            font-size: 1.2em;
            flex-shrink: 0;
            background-color: var(--color-light-purple);
            color: var(--color-icon-purple);
        }
        .info-item.address i { background-color: var(--color-light-purple); color: var(--color-icon-purple); }
        .info-item.phone i { background-color: var(--color-light-blue); color: var(--color-icon-blue); }
        .info-item.email i { background-color: var(--color-light-pink); color: var(--color-icon-pink); }
        .info-item.hours i { background-color: var(--color-light-orange); color: var(--color-icon-orange); }

        .info-item span {
            display: block;
        }
        .info-item strong {
            display: block;
            color: var(--color-text);
            font-weight: 600;
        }
        .remote-consultations-card {
            background-color: var(--color-light-purple); /* Background violet clair */
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
            text-align: left;
            color: #555; /* Texte plus foncé sur le fond clair */
        }
        .remote-consultations-card h4 {
            font-size: 1.3em;
            color: var(--color-text);
            margin-top: 0;
            margin-bottom: 15px;
        }
        .remote-consultations-card p {
            font-size: 0.95em;
            margin-bottom: 20px;
        }
        .remote-consultations-card a {
            color: var(--color-primary);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95em;
            transition: color 0.3s ease;
        }
        .remote-consultations-card a:hover {
            color: #7a5cd4;
        }


        /* Footer */
        .footer {
            background-color: var(--color-footer-bg); /* Couleur de fond du footer */
            color: var(--color-footer-text); /* Couleur de texte générale */
            padding: 60px 20px;
            font-size: 0.9em;
            margin-top: 80px;
        }
        .footer .container {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 30px;
        }
        .footer-col {
            flex: 1;
            min-width: 200px;
            max-width: 300px;
        }
        .footer-col .logo {
            margin-bottom: 20px;
        }
        .footer-col .logo img {
            height: 35px; /* Ajustez la taille du logo du footer */
        }
        .footer-col p {
            margin-bottom: 15px;
            line-height: 1.8;
            color: var(--color-footer-text);
        }
        .footer-socials a {
            color: var(--color-footer-text);
            font-size: 1.2em;
            margin-right: 15px;
            transition: color 0.3s ease;
        }
        .footer-socials a:hover {
            color: var(--color-footer-link);
        }
        .footer-col h4 {
            color: var(--color-footer-link);
            font-size: 1.2em;
            margin-bottom: 25px;
            font-weight: 600;
        }
        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-col ul li {
            margin-bottom: 10px;
        }
        .footer-col ul li a {
            text-decoration: none;
            color: var(--color-footer-text);
            transition: color 0.3s ease;
        }
        .footer-col ul li a:hover {
            color: var(--color-footer-link);
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            margin-top: 50px;
            text-align: center;
            color: var(--color-footer-text);
        }
        .footer-bottom p {
            margin: 0;
        }

/* Contact Section (Shared) */
.contact-section {
    padding: 80px 0;
    text-align: center;
    background-color: #fdf2ed; /* Light purple background */
}

.contact-section h2 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 15px;
}

.contact-content-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
}

.contact-form-container {
    background-color: #fdf2ed;
    padding: 40px;
}

.contact-form {
    flex: 1.5;
}

.form-group {
    flex: 1 1 calc(50% - 10px);
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    flex: 1 1 100%;
}

.form-group label {
    font-size: 0.95em;
    color: #555;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1em;
    color: #333;
    background-color: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #5a3dbe;
    outline: none;
    box-shadow: 0 0 0 3px rgba(90, 61, 190, 0.2);
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    width: auto;
    margin-top: 20px;
    padding: 15px 30px;
    cursor: pointer;
    border: none;
}

.contact-info-how-we-work {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.how-we-work {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.how-we-work h3 {
    font-size: 1.6em;
    color: #5a3dbe;
    margin-top: 0;
    margin-bottom: 30px;
}

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

.step-number {
    width: 35px;
    height: 35px;
    background-color: #b185e6;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.1em;
    flex-shrink: 0;
    margin-right: 15px;
}

.step-details h4 {
    font-size: 1.2em;
    color: #333;
    margin-top: 0;
    margin-bottom: 5px;
}

.step-details p {
    font-size: 0.9em;
    color: #666;
    line-height: 1.5;
}

.our-contact-details {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.our-contact-details h3 {
    font-size: 1.6em;
    color: #5a3dbe;
    margin-top: 0;
    margin-bottom: 25px;
}

.our-contact-details ul {
    list-style: none;
    padding: 0;
}

.our-contact-details ul li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1em;
    color: #666;
}

.our-contact-details ul li img {
    width: 25px;
    height: 25px;
    margin-right: 15px;
    flex-shrink: 0;
}

.our-contact-details ul li a {
    color: #5a3dbe;
    text-decoration: none;
    transition: color 0.3s ease;
}

.our-contact-details ul li a:hover {
    color: #452a8a;
}

/* Footer (Shared) */
.footer {
    background-color: #33394b;
    color: #e0e0e0;
    padding-top: 60px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    padding-bottom: 50px;
}

.footer-brand {
    flex: 1;
    min-width: 250px;
}

.footer-brand .logo {
    color: #fff;
    margin-bottom: 15px;
}

.footer-brand .logo img {
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: 0.9em;
    line-height: 1.6;
    color: #b0b0b0;
    margin-bottom: 20px;
}

.social-icons a {
    display: inline-block;
    margin-right: 15px;
}

.social-icons img {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.social-icons img:hover {
    transform: translateY(-3px);
}

.footer-nav,
.footer-legal {
    flex: 1;
    min-width: 180px;
}

.footer-nav h4,
.footer-legal h4 {
    font-size: 1.2em;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
}

.footer-nav h4::after,
.footer-legal h4::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background-color: #b185e6;
    margin-top: 8px;
}

.footer-nav ul,
.footer-legal ul {
    list-style: none;
    padding: 0;
}

.footer-nav ul li,
.footer-legal ul li {
    margin-bottom: 10px;
}

.footer-nav ul li a,
.footer-legal ul li a {
    text-decoration: none;
    color: #b0b0b0;
    font-size: 0.9em;
    transition: color 0.3s ease;
}

.footer-nav ul li a:hover,
.footer-legal ul li a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85em;
    color: #b0b0b0;
    margin: 0;
}


/* --- Responsive Styles --- */

/* Tablet & Smaller Desktop */
@media (max-width: 1200px) {
    .testimonial-card {
        max-width: 48%;
    }
}

/* Tablet Portrait & Smaller */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5em;
    }

    .hero-buttons {
        justify-content: center;
    }

    .offer-grid, .solutions-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    }

    .approach-steps {
        flex-wrap: wrap;
        justify-content: center;
    }

    .contact-content-grid {
        grid-template-columns: 1fr;
    }
    .contact-form-container,
    .how-we-work,
    .our-contact-details {
        padding: 30px;
    }

    .testimonial-cards {
        flex-direction: column;
        align-items: center;
    }
    .testimonial-card {
        max-width: 600px;
        width: 100%;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-brand, .footer-nav, .footer-legal {
        min-width: auto;
        width: 100%;
    }
    .footer-nav h4, .footer-legal h4 {
        text-align: center;
    }
    .footer-nav h4::after, .footer-legal h4::after {
        margin: 8px auto 0;
    }
    .social-icons {
        justify-content: center;
        display: flex;
    }

    .timeline-line {
        left: 25px; /* Move timeline line to the left */
        height: calc(100% - 60px);
        top: 30px;
        bottom: 30px;
    }
    .timeline-item {
        flex-direction: row !important; /* Force all items to align left */
        margin-bottom: 40px;
    }
    .timeline-number {
        margin-right: 20px !important; /* Ensure consistent spacing */
        margin-left: 0 !important;
    }
}

/* Mobile Large */
@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2em;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        width: 100%;
        padding: 12px 20px;
    }

    h2 {
        font-size: 2em;
    }
    .section-subtitle {
        margin-bottom: 40px;
    }

    .cards-grid, .offer-grid, .benefits-grid, .journey-cards-grid,
    .approach-cards-grid, .what-is-unmayo-cards, .signs-grid, .solutions-grid, .phases-grid {
        grid-template-columns: 1fr;
    }

    .card, .offer-card, .testimonial-card, .journey-card, .approach-card,
    .what-is-unmayo-card, .sign-item, .phase-card {
        padding: 25px;
    }
    .card h3, .journey-card h3, .approach-card h3, .what-is-unmayo-card h3,
    .sign-item h3, .offer-card h3, .benefit-column h3, .phase-card h3,
    .solution-card h3 {
        font-size: 1.3em;
    }
    .bottom-card {
        padding: 30px;
    }

    .approach-steps {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }
    .step-item {
        width: 80%;
    }
    .benefit-column {
        padding: 25px;
    }
    .testimonial-card {
        padding: 25px;
    }
    .testimonial-card h3 {
        font-size: 1.6em;
    }
    .testimonial-card h4 {
        font-size: 1em;
    }
    .testimonial-card p {
        font-size: 0.9em;
    }
    .testimonial-card .quote {
        font-size: 1em;
    }

    .faq-question {
        padding: 18px 20px;
        font-size: 1em;
    }
    .faq-question::after {
        right: 20px;
    }
    .faq-answer {
        padding: 0 20px;
    }
    .faq-answer p {
        font-size: 0.9em;
    }

    .form-group {
        flex: 1 1 100%;
    }
    .contact-form-container {
        padding: 25px;
    }
    .how-we-work, .our-contact-details {
        padding: 25px;
    }
    .step-number {
        width: 30px;
        height: 30px;
        font-size: 1em;
    }
    .step-details h4 {
        font-size: 1.1em;
    }
    .step-details p {
        font-size: 0.85em;
    }
    .our-contact-details ul li {
        font-size: 0.9em;
    }
    .our-contact-details ul li img {
        width: 20px;
        height: 20px;
    }

    .complete-structured-journey-section .info-box {
        padding: 30px;
    }
    .complete-structured-journey-section .info-box h2 {
        font-size: 1.8em;
    }
    .complete-structured-journey-section .info-box p {
        font-size: 1em;
    }

    .timeline-item:nth-child(odd) .timeline-content {
        padding-right: 0; /* Adjust for stacked layout */
    }
    .timeline-item:nth-child(even) .timeline-content {
        padding-left: 0; /* Adjust for stacked layout */
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    .nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    .nav ul li {
        margin: 0 10px 10px;
    }
    .hero-section {
        padding: 60px 0;
    }

    .card, .offer-card, .testimonial-card, .journey-card, .approach-card,
    .what-is-unmayo-card, .sign-item, .phase-card {
        padding: 20px;
    }

    .bottom-card h3 {
        font-size: 1.4em;
    }

    .journey-card ul li img {
        width: 16px;
        height: 16px;
    }

    .offer-card p, .offer-card ul li {
        font-size: 0.9em;
    }

    .step-item {
        width: 150px;
        padding: 15px;
    }
    .step-item h3 {
        font-size: 1.1em;
    }
    .step-item p {
        font-size: 0.85em;
    }
    .benefit-column {
        padding: 20px;
    }
    .benefit-column h3 {
        font-size: 1.3em;
        gap: 10px;
    }
    .benefit-column h3 img {
        width: 25px;
        height: 25px;
    }

    .faq-question {
        padding: 15px;
    }
    .faq-question::after {
        right: 15px;
    }
    .faq-answer {
        padding: 0 15px;
    }

    .contact-form-container, .how-we-work, .our-contact-details {
        padding: 20px;
    }

    .solution-card {
        padding: 30px;
    }
    .solution-card h3 {
        font-size: 1.4em;
    }
    .solution-card p, .solution-card ul li {
        font-size: 0.9em;
    }

    .phases-card h3 {
        font-size: 1.2em;
    }
    .phases-card p, .phases-card .benefit {
        font-size: 0.9em;
    }
}

/* Section "Témoignages" */
.testimonials-section {
    background-color: #fcf3ec;
    padding: 80px 0;
    text-align: center;
}
.testimonials-section .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.testimonials-section .testimonial-card {
    background-color: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
    text-align: left;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonials-section .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}
.testimonials-section .testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.testimonials-section .profile-initials {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #b4a3db; /* Default for initials */
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5em;
    font-weight: 600;
    margin-right: 15px;
    flex-shrink: 0;
}
.testimonials-section .profile-initials.blue { background-color: #c2dbfc; }
.testimonials-section .profile-initials.pink { background-color: #7ed9c8; }

.testimonials-section .author-info h4 {
    margin: 0;
    font-size: 1.2em;
    color: #000000;
}
.testimonials-section .author-info p {
    margin: 0;
    font-size: 0.9em;
    color: #888;
}
.testimonials-section .stars {
    color: #FFD700; /* Gold color for stars */
    font-size: 1.1em;
    margin-bottom: 15px;
}
.testimonials-section .testimonial-card p {
    font-size: 1em;
    color: #666;
    line-height: 1.6;
    flex-grow: 1; /* Allow content to grow */
}

/* Section "Notre Application Mobile" */
.app-section {
    background-color: #f7f6fb;
    padding: 80px 0;
}
.app-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}
.app-content {
    flex: 1;
    min-width: 300px;
    max-width: 550px;
}
.app-content h2 {
    font-size: 2.5em;
    color: #000000;
    margin-bottom: 20px;
    font-weight: 700;
}
.app-content p {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 30px;
}
.app-features ul {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}
.app-features li {
    display: flex;
    align-items: center;
    font-size: 1em;
    color: #666;
    margin-bottom: 15px;
}
.app-features li i {
    color: #b4a2df;
    margin-right: 15px;
    font-size: 1.2em;
}
.app-buttons {
    display: flex;
    gap: 20px;
}
.app-buttons a {
    display: flex;
    align-items: center;
    background-color: #b4a2df;
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}
.app-buttons a:hover {
    background-color: #b4a2df;
    transform: translateY(-2px);
}
.app-buttons i {
    font-size: 1.5em;
    margin-right: 10px;
}
.app-mockup {
    flex: 1;
    min-width: 300px;
    background-color: #FFFFFF; /* Fond de l'image de la maquette */
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}
.app-mockup-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 2;
}
.app-mockup-header {
    display: flex;
    align-items: center;
    gap: 15px;
}
.app-mockup-header .initials {
    width: 50px;
    height: 50px;
    background-color: #b4a3db;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.8em;
    font-weight: 700;
}
.app-mockup-header .text-block h4 {
    margin: 0;
    font-size: 1.5em;
    color: #000000;
}
.app-mockup-header .text-block p {
    margin: 0;
    font-size: 0.9em;
    color: #888;
}
.app-mockup-item {
    width: 70%;
    background-color: #F8F8F8;
    border-radius: 10px;
    padding: 15px 20px;
    font-size: 1em;
    color: #333;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    display: flex; /* Permet d'aligner icône et texte */
    align-items: center;
    justify-content: center;
    gap: 10px; /* Espace entre icône et texte */
}
.app-mockup-item .card-icon { /* Styliser l'icône dans la maquette */
    width: 30px;
    height: 30px;
    margin-bottom: 0;
    flex-shrink: 0;
}
.app-mockup-item .card-icon i {
    font-size: 16px; /* Taille de l'icône dans la maquette */
}

/* Abstract shapes within the mockup */
.app-mockup .mockup-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
    z-index: 1;
}
.mockup-shape.circle1 {
    width: 150px;
    height: 150px;
    background-color: #feb1cb;
    top: 10%;
    left: -5%;
}
.mockup-shape.circle2 {
    width: 100px;
    height: 100px;
    background-color: #99decf;
    bottom: 5%;
    right: 0%;
}
.mockup-shape.circle3 {
    width: 80px;
    height: 80px;
    background-color: #ffd397;
    top: 0;
    right: 10%;
    opacity: 0.1;
}

/* Section "Questions Fréquentes" */
.faq-section {
    background-color: #FFFFFF; /* Couleur de fond correcte */
    padding: 80px 0;
    text-align: center;
}
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}
.faq-item {
    background-color: #fcf3ea;
    border: 1px solid #fcf3ea;
    border-radius: 10px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.03);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.faq-item:hover {
    background-color: #fcf3ea;
    box-shadow: 0 8px 16px rgba(0,0,0,0.07);
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.1em;
    font-weight: 600;
    color: #000000;
    cursor: pointer;
}
.faq-question i {
    transition: transform 0.3s ease;
}
.faq-question.active i {
    transform: rotate(180deg);
}
.faq-answer {
    /*padding: 0 20px 20px;*/
    font-size: 1em;
    color: #555;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out, padding 0.5s ease-in-out;
    text-align: left;
}
.faq-answer.open {
    max-height: 200px; /* Adjust as needed for content, or use JS to calculate */
    padding-top: 10px;
}

/* About me section */

.body {
  margin: 0;
  font-family: "Helvetica Neue", sans-serif;
  background: #ffffff;
  color: #333;
  line-height: 1.6;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 50px auto;
  padding: 20px;
  align-items: flex-start;
  gap: 40px;
}

.about-image img {
  width: 380px;
  height: auto;
  padding-top: 20;

  border-radius: 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-text h2 {
  font-size: 28px;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

.about-text h3,
.about-text h4 {
  margin-top: 25px;
  font-size: 20px;
  color: #444;
}

/* Qualifications section*/

.qualifications {
  margin-top: 15px;
  display: flex;  
  flex-wrap: center;
  gap: 20px;
}

.qualification {
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 10px;
  padding: 10px 15px;
  gap: 50px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  max-width: 300px;
}

/* Bouton LinkedIn */
.linkedin-button-container {
  margin-top: 30px;
}

.linkedin-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 30px;
  background-color: #b4a2df; /* violet pastel */
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 30px;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  text-align: center; /* Ensure text is centered for full-width buttons */

}

.linkedin-button:hover {
  background-color: #c59ae9; /* teinte plus foncée au survol */
}

@media screen and (max-width: 768px) {
  .about-container {
    flex-direction: column;
    align-items: center;
    text-align: left;
  }

  .qualifications {
    justify-content: center;
  }

  .linkedin-button {
    display: block;
    text-align: center;
    width: fit-content;
    margin: 0 auto;
  }
}



/* Styles spécifiques à la section Contact */
.contact-section {
    padding: 60px 0;
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.contact-header p {
    color: #6c757d;
    font-size: 1rem;
}

.contact-body {
    display: flex;
    gap: 40px;
}

/* Style du formulaire (partie gauche) */
.contact-form {
    flex: 1.5; /* Le formulaire prend plus de place que la colonne d'infos */
}

.form-row {
    display: flex; /* Aligne les éléments enfants (les .form-group) horizontalement */
    gap: 20px;     /* Crée un espace entre les deux champs */
}

/* Règle pour les champs à l'intérieur de .form-row */
.form-row .form-group {
    flex: 1; /* Fait en sorte que chaque champ grandisse pour occuper l'espace disponible de manière égale */
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    color: #6c757d;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    background-color: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #c8bfe7;
    box-shadow: 0 0 0 2px #c8bfe780; /* Ombre légère au focus */
}

.form-group select {
    appearance: none;
    background: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23666%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E') no-repeat right 15px center;
    background-size: 12px;
    background-color: #ffffff;
    cursor: pointer;
}

.form-group textarea {
    resize: vertical; /* Permet de redimensionner verticalement */
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background-color: #c8bfe7;
    color:  #3f3d56;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #b3a6d9; /* Une teinte légèrement plus foncée au survol */
}

/* Style des infos (partie droite) */
.contact-info {
    flex: 1;
}

.info-box {
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.info-box-consultation {
    border-radius: 8px;
    margin-bottom: 25px;
}

.coordinates {
    background-color:  #ffffff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.coordinates h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.coordinates ul {
    list-style: none;
}

.coordinates li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.coordinates li:last-child {
    margin-bottom: 0;
}

.coordinates .icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #E8E2F7; /* Version plus claire du violet pour le fond des icônes */
    color: #6c757d;
    border-radius: 50%;
    margin-right: 15px;
    font-size: 1rem;
}

.coordinates .text strong {
    display: block;
    font-size: 1rem;
    font-weight: 500;
}
.coordinates .text p {
    margin: 0;
    font-size: 0.9rem;
    color: #6c757d;
}

.remote-consultation {
    background-color: #fff;
    color: #3f3d56;
}

.remote-consultation h4 {
    margin-bottom: 15px;
    font-weight: 600;
}

.remote-consultation p {
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.remote-consultation a {
    color: #3f3d56;
    font-weight: 500;
    text-decoration: none;
    font-size: 0.9rem;
}
.remote-consultation a:hover {
    text-decoration: underline;
}

/* Responsive Design pour les mobiles et tablettes */
@media (max-width: 992px) {
    .contact-body {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    .contact-header h2 {
        font-size: 2rem;
    }
}
