:root {
    --primary-color: #D4AF37;
    --primary-dark: #B8941F;
    --secondary-color: #F8F6F0;
    --accent-color: #FFD700;
    --text-primary: #2C2C2C;
    --text-secondary: #666666;
    --text-light: #999999;
    --white: #FFFFFF;
    --background: #FEFEFE;
    --background-alt: #F9F7F4;
    --border-color: #E5E5E5;
    --shadow-light: rgba(212, 175, 55, 0.1);
    --shadow-medium: rgba(212, 175, 55, 0.2);
    --shadow-strong: rgba(212, 175, 55, 0.3);
    --gradient-primary: linear-gradient(135deg, #D4AF37 0%, #FFD700 100%);
    --gradient-secondary: linear-gradient(135deg, #F8F6F0 0%, #FFFFFF 100%);
    --gradient-red: linear-gradient(135deg, #FF0000 0%, #CC0000 100%);
    --success-green: #28a745; /* New green color for checkmarks */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 14px;
}

body {
    font-family: 'Playfair Display', serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background);
    overflow-x: hidden;
}

.main-content {
    position: relative;
    z-index: 2;
    background-color: var(--background);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 1px 8px rgba(0,0,0,0.03);
    min-height: 50px; /* Reduced header height */
    overflow: visible; /* Ensure content is not clipped */
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px; /* Removed vertical padding */
    overflow: visible; /* Ensure content is not clipped */
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem; /* Space between logo and text */
}

.nav-logo {
    height: 40px; /* Increased logo size */
    width: auto;
    vertical-align: middle;
}

.nav-right {
    display: flex;
    align-items: center;
    margin-left: auto; /* Push to the right */
    gap: 2rem; /* Space between menu and CTA */
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-brand h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.brand-accent {
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-cta {
    display: flex;
    align-items: center;
}

.nav-brand-link {
    text-decoration: none;
    color: inherit; /* Inherit color from parent */
}

.btn-golden-link {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 0 !important; /* Removed border-radius and added !important to override .btn */
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px var(--shadow-light);
}

.btn-golden-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-medium);
}

.btn-small {
    padding: 0.05rem 0.4rem; /* Further reduced padding for height and width */
    font-size: 0.85rem;
    min-width: 80px;
}

/* HERO centré verticalement et horizontalement */
.hero {
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative; /* Changed to relative to position video */
    overflow: hidden; /* Hide overflow from video */
    padding: 0 !important;
    font-size: 16px;
}

.hero-video-background {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1; /* Send video to background */
    transform: translate(-50%, -50%);
    background-size: cover;
    filter: brightness(0.5); /* Darken the video for better text readability */
}

.hero-content {
    position: relative; /* Ensure content is above the video */
    z-index: 1;
    color: var(--white); /* Change text color for readability on dark background */
    text-shadow: 0 2px 4px rgba(0,0,0,0.5); /* Add text shadow for readability */
}

.hero-title,
.hero-subtitle,
.hero-stats .stat-label {
    color: var(--white); /* Ensure all text elements are white */
}

.hero-title {
    color: var(--white); /* Explicitly set hero title to white */
}

.hero-title .text-accent,
.hero-stats .stat-number {
    color: var(--accent-color); /* Keep accent color for specific elements */
}

.hero-title .underline-accent::after {
    background: var(--accent-color); /* Adjust underline color for contrast */
}

.hero-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
}

.hero-text.centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--white); /* Changed to white */
}

.text-accent {
    color: var(--primary-color);
    position: relative;
}


.underline-accent::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}
/* Program Benefits Section */
.program-benefits .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.program-benefits .benefit-card ul {
    list-style: none;
    padding: 0;
    margin-top: 0.6rem;
    text-align: left; /* Aligner les listes à gauche */
    width: 100%; /* S'assurer que la liste prend toute la largeur disponible */
}

.program-benefits .benefit-card li {
    position: relative;
    padding-left: 1.3rem; /* Further reduced padding */
    margin-bottom: 0.2rem; /* Further reduced margin */
    color: var(--text-secondary);
}

.program-benefits .benefit-card li::before {
    content: '•'; /* Unicode for a bullet point */
    position: absolute;
    left: 0;
    color: var(--primary-color); /* Golden color */
    font-size: 1em; /* Further reduced font size for bullet */
    line-height: 1;
}

.program-benefits .benefit-card .benefit-note {
    font-weight: 600;
    color: var(--primary-color);
    margin-top: auto; /* Pousser la note vers le bas pour l'alignement */
    text-align: left; /* Aligner la note à gauche */
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--white); /* Changed to white */
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 15px var(--shadow-light);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-medium);
}

.btn-secondary {
    background: var(--white); /* Set background to white */
    color: var(--text-primary); /* Change text color to primary text color (black) */
    border: 2px solid var(--primary-color); /* Set border to golden color */
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    border-color: var(--primary-color); /* Change border color on hover */
}

.btn-full {
    width: 100%;
}

.btn-urgent {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 4px 15px var(--shadow-light); }
    50% { box-shadow: 0 8px 25px var(--shadow-medium); }
    100% { box-shadow: 0 4px 15px var(--shadow-light); }
}

/* HERO STATS */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    margin-top: 3rem;
    width: 100%;
    max-width: 1000px;
}

@media (max-width: 768px) {
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--white); /* Changed to white */
    text-align: center;
    line-height: 1.3;
}

/* Target Audience Section */
.target-audience {
    background: var(--white);
}

/* Remove the separate background element as it's no longer needed */
.target-audience-background {
    display: none;
}

.target-audience .container {
    position: relative;
    z-index: 1;
}

/* Section Styling */
section {
    padding: 40px 0;
}

section:nth-of-type(even) {
    background-color: var(--background-alt);
}

section:nth-of-type(odd) {
    background-color: var(--background);
}

.why-dan {
    padding-top: 1.5rem;
}

/* Video Presentation Section */
.video-presentation-section {
    padding: 60px 0;
    background-color: var(--background); /* Or choose a suitable background */
    text-align: center;
}

.video-presentation-section .section-title {
    margin-bottom: 1rem;
}

.video-presentation-section .section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 40%; /* Adjusted based on user feedback */
    height: 0 !important; /* Force height to 0 to enable padding-bottom aspect ratio */
    overflow: hidden;
    margin: 0 auto 2.5rem auto; /* Center the video and add bottom margin */
    max-width: 800px; /* Control overall width */
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-presentation-section .cta-section {
    margin-top: 2.5rem;
}

/* Difference DAN Section - New styles */
.difference-dan-section {
    padding: 60px 0;
    background-color: var(--background-alt);
}

.coteacote-comparison {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 2.5rem;
    max-width: 1050px;
    margin: 2rem auto;
}

.coteacote-card {
    background: var(--white);
    border-radius: 18px;
    box-shadow: 0 8px 32px var(--shadow-light);
    padding: 2.3rem 2rem 2rem 2rem;
    width: 400px;
    border: 2px solid var(--primary-color); /* Changed to full golden border */
    display: flex;
    flex-direction: column;
    align-items: stretch;
    transition: box-shadow 0.19s, transform 0.16s, border-color 0.16s; /* Added border-color to transition */
}

.coteacote-card:hover {
    box-shadow: 0 16px 44px var(--shadow-medium);
    transform: translateY(-3px) scale(1.018);
    border-color: var(--accent-color); /* Change border color on hover for a more golden effect */
}

.coteacote-title {
    font-size: 1.37rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    text-align: center;
    color: var(--text-primary);
}

.coteacote-item {
    margin-bottom: 1.18rem;
    text-align: center;
}

.coteacote-item-title {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1.06rem;
    margin-bottom: 0.12rem;
    white-space: normal;
    word-break: break-word;
}

.coteacote-item-desc {
    font-weight: 600; /* Added to make text bold */
    color: var(--text-primary); /* Changed to primary text color for better visibility */
    font-size: 1.06rem; /* Adjusted font size to match coteacote-item-title */
    line-height: 1.6;
    overflow-wrap: break-word;
    white-space: normal;
    word-break: break-word;
}

@media screen and (max-width: 900px) {
    .coteacote-comparison {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    .coteacote-card {
        width: 100%;
        max-width: 430px;
    }
}
.comparison-item p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Responsive adjustments for comparison section */
@media (max-width: 768px) {
    .comparison-grid {
        grid-template-columns: 1fr;
    }
}

/* Override for specific sections if needed */
.hero {
    background-color: transparent !important; /* Hero section has video background */
}

.target-audience {
    background: var(--white); /* Keep target audience white as it has a background image */
}

.method-details {
    padding-top: 0; /* Removed padding-top as requested */
    padding-bottom: 0; /* Removed padding from the bottom of the section */
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.25rem; /* Increased font size */
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.6;
}

.subsection-title {
    font-size: 1.75rem;
    font-weight: 600;
    text-align: center;
    margin: 0 0 2rem; /* Removed margin-top */
    color: var(--text-primary);
}

.cta-section {
    text-align: center;
    margin-top: 3rem;
    padding: 0 20px;
    position: relative; /* Ensure z-index works */
    z-index: 2; /* Place above the overlay */
}

/* Target Audience Section */

.audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    justify-content: center;
    align-items: stretch;
}

.audience-card {
    background: var(--background-alt);
    padding: 2.5rem 2rem; /* Consistent padding */
    border-radius: 16px; /* Consistent border-radius */
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05); /* Consistent shadow */
    transition: all 0.3s ease; /* Consistent transition */
    border: 1px solid var(--border-color); /* Consistent border */
    box-sizing: border-box; /* Ensure consistent box model */
}


.audience-card .card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    text-align: center;
}

.audience-card .card-icon img {
    width: 12rem; /* Increased image size */
    height: 12rem; /* Increased image size */
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.audience-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.audience-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Why Choose DAN Section */
.why-dan {
    background: var(--background);
}

.why-content {
    text-align: center;
    margin-bottom: 3rem;
}

.why-text {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.why-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.why-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--background-alt);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}


.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    text-align: center;
}

.feature-card h3 {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Program Benefits Section */
.program-benefits {
    background: var(--background-alt);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: var(--background-alt);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    text-align: center; /* Center all text by default */
    display: flex; /* Enable flexbox for vertical alignment */
    flex-direction: column; /* Stack items vertically */
}


.benefit-card .card-icon {
    font-size: 2.5rem;
    margin-bottom: 0;
    display: block;
    text-align: center;
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: var(--text-primary);
    flex-grow: 0; /* Prevent title from growing */
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.4;
    margin-bottom: 0.2rem;
    flex-grow: 1; /* Allow paragraphs to take available space */
}

.benefit-card ul {
    list-style: none;
    padding: 0;
    margin-top: 0.6rem;
    text-align: left; /* Align lists to the left */
    width: 100%; /* Ensure list takes full width */
}

.benefit-card li {
    position: relative;
    padding-left: 1.3rem; /* Further reduced padding */
    margin-bottom: 0.2rem; /* Further reduced margin */
    color: var(--text-secondary);
}

.benefit-card li::before {
    content: '•'; /* Unicode for a bullet point */
    position: absolute;
    left: 0;
    color: var(--primary-color); /* Golden color */
    font-size: 1em; /* Further reduced font size for bullet */
    line-height: 1;
}

.benefit-card .benefit-note {
    font-weight: 600;
    margin-top: auto; /* Push the note to the bottom for alignment */
    color: var(--primary-color);
    margin-top: 0.6rem; /* Further reduced margin */
}

/* Testimonials Section */
.testimonials {
    background: var(--background);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.testimonial-card {
    background: var(--background);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.testimonial-content {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.author-info span {
    font-size: 0.9rem;
    color: var(--text-light);
}

.case-study {
    background: var(--gradient-secondary);
    padding: 3rem; /* Reduced padding */
    border-radius: 20px;
    margin-top: 4rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 2px solid var(--primary-color); /* Added golden border */
}

.case-study-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.case-study h3 {
    font-size: 1.75rem; /* Reverted font size */
    font-weight: 700; /* Reverted font weight */
    margin-bottom: 1rem; /* Reverted margin */
    color: var(--text-primary);
}

.case-study p {
    font-size: 1.1rem; /* Reverted font size */
    color: var(--text-secondary);
    margin-bottom: 2rem; /* Reverted margin */
    line-height: 1.6; /* Reverted line height */
}

.case-results {
    display: flex;
    justify-content: center;
    gap: 3rem; /* Reverted gap */
    flex-wrap: wrap;
}

.result-item {
    text-align: center;
}

.result-number {
    font-size: 2.5rem; /* Reverted font size */
    font-weight: 700; /* Reverted font weight */
    color: var(--primary-color);
    margin-bottom: 0; /* Removed margin */
}

.result-label {
    font-size: 1rem; /* Reverted font size */
    color: var(--text-light); /* Reverted color */
    max-width: none; /* Removed max-width */
}

/* Method Details Section */
.method-details {
    background: var(--background-alt);
}

.method-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Strict 50/50 split */
    gap: 0; /* Removed spacing between grid columns */
    align-items: stretch; /* Ensure both columns stretch to the same height */
    width: 100%; /* Ensure full width */
    margin: 0; /* Remove any external margins */
    box-sizing: border-box; /* Ensure padding is included in width */
}

.method-steps {
    display: flex; /* Change to flexbox for vertical stacking */
    flex-direction: column; /* Stack cards vertically */
    gap: 2rem;
    padding: 0 40px 40px 40px; /* Set padding to 0 top, 40px right, 40px bottom, 40px left */
    align-items: center; /* Center cards horizontally within their column */
    justify-content: center; /* Center cards vertically if there's extra space */
}

.step-card {
    background: var(--background);
    padding: 2.5rem; /* Adjusted padding for horizontal rectangle */
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05); /* Added box-shadow back */
    transition: all 0.3s ease; /* Added transition back */
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center; /* Align items horizontally within the card */
    gap: 1.5rem;
    width: 100%; /* Ensure horizontal rectangular shape */
    max-width: 800px; /* Limit width for better readability */
    flex-direction: row; /* Ensure content is in a row */
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.step-objective {
    font-style: italic;
    color: var(--text-primary);
}

.method-image {
    position: relative;
    overflow: hidden; /* Ensure image doesn't overflow its container */
}

.method-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover the entire area */
    border-radius: 0; /* Remove border-radius for full edge */
    box-shadow: none; /* Remove shadow for full edge */
    position: absolute; /* Position absolutely to fill container */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

@media (max-width: 768px) {
    .method-content-wrapper {
        grid-template-columns: 1fr; /* Stack columns on small screens */
        gap: 2rem;
    }

    .method-steps {
        padding: 40px; /* Set padding to 40px on all sides for mobile */
        max-width: 100%; /* Allow cards to take full width */
    }

    .method-image {
        height: 300px; /* Set a fixed height for mobile */
        position: relative;
    }

    .method-image img {
        position: relative;
        border-radius: 16px; /* Re-add border-radius for mobile */
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1); /* Re-add shadow for mobile */
    }
}

.stats-card {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px var(--shadow-medium);
    position: relative;
    overflow: hidden;
}

.stats-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.stat-large {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.stat-large .stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
}

.stat-large .stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.stat-small {
    display: flex;
    justify-content: space-around;
    position: relative;
    z-index: 1;
}

.stat-small .stat {
    text-align: center;
}

.stat-small .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.stat-small .stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Journey and Tools Section */
.journey-and-tools-section {
    background-image: url('img/woman_half_face_chill.webp');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    padding: 60px 0; /* Standard padding for sections */
    min-height: 500px; /* Ensure enough height */
}

.journey-and-tools-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Darker overlay */
    /* Removed backdrop-filter to ensure background image is sharp */
    z-index: 1; /* Place above background image, below content */
}

.journey-and-tools-section .container {
    position: relative;
    z-index: 2; /* Ensure content is above the overlay */
}

.journey-and-tools-section .section-title,
.journey-and-tools-section .journey-key-card h4,
.journey-and-tools-section .journey-key-card p,
.journey-and-tools-section .journey-key-source {
    color: var(--white); /* Ensure text is white */
}

.journey-keys-section {
    margin-top: 0; /* Drastically reduced top margin */
    padding: 0; /* Removed padding */
}

.journey-keys-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Default to 4 cards on large screens */
    gap: 2rem;
}

@media (max-width: 1200px) { /* For screens smaller than 1200px, show 2 cards */
    .journey-keys-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) { /* For screens smaller than 768px, show 1 card */
    .journey-keys-grid {
        grid-template-columns: 1fr;
    }
}

.journey-key-card {
    background: rgba(255, 255, 255, 0.1); /* Semi-transparent white background for cards */
    backdrop-filter: blur(5px); /* Apply blur to the card itself */
    box-shadow: 0 16px 44px rgba(255, 255, 255, 0.2); /* Lighter shadow on hover */
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--primary-color); /* Golden border */
    transition: all 0.3s ease; /* Add transition for hover effect */
}

.journey-key-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color); /* Make icons golden */
}

.journey-key-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.journey-key-card h4,
.journey-key-card p,
.journey-key-card .journey-key-source {
    color: var(--white); /* Ensure text inside cards is white */
}

.count-up {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .header {
        padding: 0; /* Remove padding on header for mobile */
    }

    .nav {
        padding: 0 20px; /* Keep horizontal padding for nav */
    }
}

.journey-key-source {
    font-size: 0.8rem;
    color: var(--text-light);
    font-style: italic;
}

.pillars-section {
    margin-top: 4rem;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Changed to 2 columns */
    gap: 2rem;
}

@media (max-width: 768px) {
    .pillars-grid {
        grid-template-columns: 1fr;
    }
}

.pillar-card {
    background: var(--background);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border-color);
}

.pillar-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.pillar-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.pillar-card p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.pillar-quote {
    font-style: italic;
    font-weight: 600;
    color: var(--primary-color);
}

.tools-section {
    margin-top: 4rem;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.tool-card {
    background: var(--background);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--border-color);
}

.tool-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.tool-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.tool-card .tool-subtitle {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.tool-card p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.tool-source {
    font-size: 0.8rem;
    color: var(--text-light);
    font-style: italic;
}

/* Offers Section */
.offers {
    background: var(--background);
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.offer-card {
    background: var(--background);
    padding: 1rem; /* Further reduced padding */
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Align content and CTA */
}


.offer-card.featured {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px var(--shadow-medium);
    position: relative;
    transform: scale(1.03);
    z-index: 10;
}

.offer-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.1) 0%, transparent 50%, rgba(212, 175, 55, 0.1) 100%);
    z-index: 0;
    pointer-events: none;
}

.offer-badge {
    position: absolute;
    top: -15px; /* Positioned on top of the card */
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 700;
    z-index: 2;
    white-space: nowrap;
}

.offer-header {
    text-align: center;
    margin-bottom: 0.8rem; /* Further Reduced margin */
    position: relative;
    z-index: 1;
    min-height: 60px; /* Alignment - Reduced height */
}

.offer-card.featured .offer-header {
    padding-top: 1.5rem; /* Add space for the badge */
}

.offer-header h3 {
    font-size: 1.3rem; /* Further Reduced font size */
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.offer-subtitle {
    font-size: 0.8rem; /* Further Reduced font size */
    color: var(--text-secondary);
}

.offer-features {
    list-style: none;
    padding: 0;
    margin-bottom: 0.8rem; /* Further Reduced margin */
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.offer-features li {
    margin-bottom: 0.8rem; /* Reduced margin */
}

.offer-features h4 {
    font-size: 1rem; /* Reduced font size */
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.offer-features ul {
    list-style: none;
    /* padding-left: 1.5rem; */
}

.offer-features ul li {
    position: relative;
    padding-left: 1.8rem; /* Re-add padding-left */
    margin-bottom: 0.7rem; /* Adjusted margin */
    font-size: 1.1rem; /* Increased font size */
    color: var(--text-secondary);
    padding-left: 25px; /* Space for the checkmark */
    line-height: 1.4; /* Reduced line-height */
    font-size: 0.9rem; /* Reduced font size */
}

.offer-features ul li .fas {
    color: var(--success-green); /* Green checkmark */
    position: absolute;
    left: 0;
    top: 6px; /* Fine-tuned alignment */
}

.offer-price {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.price-value span {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.price-note {
    font-size: 0.9rem;
    color: var(--text-light);
}

.offer-cta {
    text-align: center;
    position: relative;
    z-index: 1;
    margin-top: auto; /* Pushes CTA to the bottom */
}

.golden-banner {
    border-top: 2px solid var(--primary-dark);
    border-bottom: 2px solid var(--primary-dark);
    color: var(--text-primary);
    font-weight: 600;
    padding: 0.5rem 1rem;
    margin: 0 -1rem 1rem; /* Span full width of the card padding */
    width: calc(100% + 2rem); /* Span full width */
    box-sizing: border-box;
    text-align: center;
}

/* FAQ Section */
.faq {
    background-image: url('img/woman_speech_pro_crowd.webp');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    padding: 60px 0; /* Standard padding for sections */
    min-height: 500px; /* Ensure enough height */
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Darker overlay */
    z-index: 1; /* Place above background image, below content */
}

.faq .container {
    position: relative;
    z-index: 2; /* Ensure content is above the overlay */
}

.faq .section-title,
.faq-item h3,
.faq-item p {
    color: var(--white); /* Ensure text is white */
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.1); /* Semi-transparent white background for cards */
    backdrop-filter: blur(5px); /* Apply blur to the card itself */
    box-shadow: 0 16px 44px rgba(255, 255, 255, 0.2); /* Lighter shadow on hover */
    border: 1px solid var(--primary-color); /* Golden border */
    border-radius: 12px;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white); /* Set question text to white */
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: transparent; /* Remove white background on hover */
}

.faq-question .icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-question.active .icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    color: var(--white); /* Set answer text to white */
    line-height: 1.6;
}

.faq-answer.active {
    max-height: 200px; /* Adjust as needed */
    padding-bottom: 1.5rem;
}

/* About Section */
/* About Section */
.about {
    background: var(--background);
    padding: 60px 0;
}

.about-title {
    text-align: center;
    margin-bottom: 4rem;
    line-height: 1.4;
}

.about-title::after {
    content: none;
}

.underline-center {
    position: relative;
    display: inline-block;
}

.underline-center::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    align-items: center;
    gap: 5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.about-visual {
    /* Container for the image */
}

.about-image {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.about-text {
    /* Container for text content */
}

.about-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.about-text blockquote {
    margin-top: 2.5rem;
    padding-left: 1.5rem;
    border-left: 3px solid var(--primary-color);
    font-size: 1.15rem;
    font-style: italic;
    color: var(--text-primary);
    font-weight: 500;
    line-height: 1.7;
}

.about-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Contact Section */
.contact {
    background: var(--background-alt);
}

.contact-grid-revised {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two columns */
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    align-items: stretch; /* Changed to stretch to make both columns the same height */
}

.contact-form-container,
.contact-card-small {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.07);
    border: 1px solid var(--border-color);
    text-align: left;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.contact-form-container h3,
.contact-card-small h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact-form-container p,
.contact-card-small p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.contact-cards-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: space-between; /* Align items to the top and bottom */
}

.contact-card-small {
    padding: 1.5rem; /* Reduced padding for vertical space */
}

.contact-card-small .btn {
    width: 100%;
}

/* Footer */
.footer {
    background: #000000; /* Black background for footer */
    color: var(--white);
    padding: 20px 0; /* Reduced padding for a thinner footer */
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem; /* Reduced gap */
    margin-bottom: 1rem; /* Reduced margin */
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo {
    height: 30px; /* Smaller logo */
    width: auto;
    filter: brightness(0) invert(1); /* Make logo white for dark background */
}

.footer-brand p {
    font-size: 0.8rem; /* Smaller text */
    color: rgba(255,255,255,0.7);
    margin: 0;
}


.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 10px; /* Reduced padding */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem; /* Reduced gap */
}

.footer-bottom p {
    font-size: 0.8rem; /* Smaller text */
    color: rgba(255,255,255,0.7);
}

.footer-social {
    display: flex;
    gap: 0.8rem; /* Reduced gap */
}

.footer-social a {
    color: var(--white);
    font-size: 1.2rem; /* Smaller icons */
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--primary-color);
}

/* About Section */
.about {
    background: var(--background-alt);
    padding: 60px 0;
    position: relative;
}

.about-title {
    text-align: center;
    margin-bottom: 2rem;
}

.about-title .underline-center {
    display: inline-block;
    position: relative;
}

.about-title .underline-center::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.about-container {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    padding: 2.5rem;
    transition: all 0.4s ease-in-out;
}

.about-grid {
    display: grid;
    gap: 2rem;
    align-items: flex-start;
}

.about-image-1, .about-image-2 {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

.about-img-main, .about-img-secondary {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.about-text-1, .about-text-2 {
    line-height: 1.7;
}

.about-text-1 p, .about-text-2 p {
    margin-bottom: 1rem;
}

.about-text-1 h4, .about-text-2 h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Default (collapsed) state */
.about-container:not(.expanded) .about-grid {
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
}

.about-container:not(.expanded) .about-image-1 {
    grid-column: 1 / 2;
}

.about-container:not(.expanded) .about-text-1 {
    grid-column: 2 / 3;
}

.about-container:not(.expanded) .about-more-text,
.about-container:not(.expanded) .about-text-2,
.about-container:not(.expanded) .about-image-2,
.about-container:not(.expanded) .about-buttons-expanded {
    display: none;
}

.about-buttons-collapsed {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
}

/* Expanded state */
.about-container.expanded .about-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
}

.about-container.expanded .about-buttons-collapsed {
    display: none;
}

.about-container.expanded .about-more-text {
    display: block;
}

.about-container.expanded .about-image-1 {
    grid-area: 1 / 1 / 2 / 2;
}
.about-container.expanded .about-text-1 {
    grid-area: 1 / 2 / 2 / 3;
}
.about-container.expanded .about-text-2 {
    display: block;
    grid-area: 2 / 1 / 3 / 2;
    padding-top: 1rem;
}
.about-container.expanded .about-image-2 {
    display: block;
    grid-area: 2 / 2 / 3 / 3;
}

.about-buttons-expanded {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .nav-menu {
        display: none; /* Hide menu on smaller screens */
    }

    .nav-right {
        gap: 1rem;
    }

    .nav-toggle {
        display: flex; /* Show toggle button */
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .audience-grid,
    .why-features-grid,
    .benefits-grid,
    .testimonials-grid,
    .offers-grid,
    .pillars-grid,
    .tools-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .contact-grid-revised {
        grid-template-columns: 1fr;
    }

    .contact-cards-container {
        margin-top: 0; /* Remove top margin on mobile */
        grid-template-columns: 1fr; /* Ensure single column on mobile */
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .about-visual {
        order: -1; /* Move image to top on mobile */
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }

    .subsection-title {
        font-size: 1.5rem;
    }

    .audience-grid,
    .why-features-grid,
    .benefits-grid,
    .testimonials-grid,
    .offers-grid,
    .pillars-grid,
    .tools-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .case-study {
        padding: 2rem;
    }

    .case-results {
        gap: 1.5rem;
    }

    .result-number {
        font-size: 2rem;
    }

    .result-label {
        font-size: 0.8rem;
    }

    .step-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }

    .step-number {
        font-size: 2.5rem;
    }

    .journey-key-card {
        padding: 1.5rem;
    }

    .pillar-card,
    .tool-card,
    .offer-card {
        padding: 1.5rem;
    }

    .offer-header h3 {
        font-size: 1.5rem;
    }

    .offer-price .price-value {
        font-size: 2rem;
    }

    .offer-price .price-value span {
        font-size: 1.2rem;
    }

    .faq-question {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .faq-answer {
        padding: 0 1.5rem;
    }

    .contact-form-container {
        padding: 2rem;
    }

    .contact-form-container h2 {
        font-size: 1.5rem;
    }

    .contact-card-small {
        padding: 1.5rem;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
    }
}

/* Mobile Navigation */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001; /* Ensure it's above other content */
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.nav-menu.active {
    transform: translateX(0);
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 1024px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background: var(--background);
        flex-direction: column;
        padding-top: 80px;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        z-index: 999;
        align-items: flex-start; /* Align menu items to the left */
        gap: 1.5rem; /* Space out menu items */
        padding-left: 20px; /* Add padding to the left */
    }

    .nav-menu li {
        width: 100%; /* Full width for menu items */
    }

    .nav-menu a {
        display: block; /* Make links block-level for full clickable area */
        padding: 0.5rem 0; /* Add some padding */
    }

    .nav-cta {
        margin-top: 2rem; /* Space from menu items */
        width: 100%;
        padding: 0 20px; /* Match menu padding */
        box-sizing: border-box;
    }

    .btn-golden-link {
        width: 100%; /* Full width button */
    }
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.appear {
    opacity: 1;
    transform: translateY(0);
}

.fade-in {
    opacity: 0;
    transition: opacity 0.6s ease-out;
}

.fade-in.appear {
    opacity: 1;
}

.zoom-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.zoom-in.appear {
    opacity: 1;
    transform: scale(1);
}

/* Generic Card Hover Effect */
.card-hover-gold:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

/* Styles pour les icônes SVG */
.card-icon svg,
.feature-icon svg,
.journey-key-icon svg {
    width: 3rem; /* Taille augmentée pour les icônes générales */
    height: 3rem; /* Taille augmentée pour les icônes générales */
}

.offer-header svg {
    width: 1.5rem; /* Taille spécifique pour les icônes d'offres */
    height: 1.5rem; /* Taille spécifique pour les icônes d'offres */
}

/* Conversion Banner */
.conversion-banner {
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
    margin: 0; /* Removed margin as per feedback */
    font-size: clamp(1.2rem, 2.5vw, 2rem);
    font-weight: 700;
    white-space: nowrap; /* Keep text on a single line */
    overflow: hidden; /* Hide overflow text */
    text-overflow: ellipsis; /* Add ellipsis for overflow text */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.conversion-banner p {
    margin-bottom: 0; /* Remove bottom margin for single line */
    max-width: 100%; /* Allow full width */
    margin-left: auto;
    margin-right: auto;
    white-space: nowrap; /* Keep text on a single line */
    overflow: hidden; /* Hide overflow text */
    text-overflow: ellipsis; /* Add ellipsis for overflow text */
}


/* Responsive adjustments for conversion banner */
@media (max-width: 768px) {
    .conversion-banner {
        margin: 0;
        font-size: clamp(1rem, 3vw, 1.5rem);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

@media (max-width: 480px) {
    .conversion-banner {
        margin: 0;
        font-size: clamp(0.9rem, 4vw, 1.2rem);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

.about-text .about-intro {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.about-more-content {
    margin-bottom: 2rem;
}

.about-more-content h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.about-text .btn {
    display: block;
    width: fit-content;
    margin-top: 1rem;
    margin-right: 0;
}

.cross-icon {
    color: #dc3545; /* Red for cross */
    margin-right: 0.5rem;
}

.check-icon {
    color: var(--success-green); /* Use the new green color */
    margin-right: 0.5rem;
}

/* Why DAN Section */
.why-dan .why-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.why-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
}

@media (max-width: 992px) {
    .why-features-grid {
        grid-template-columns: 1fr;
    }
}

/* Difference DAN Section */
#difference-dan .coteacote-item-title,
#difference-dan .coteacote-item-desc,
#difference-dan .coteacote-title {
    font-weight: bold;
}



/* Global Card Hover */
.card-hover-gold:hover, .testimonial-card:hover, .offer-card:hover, .audience-card:hover, .benefit-card:hover, .journey-key-card:hover, .step-card:hover {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Programme Section */
.program-benefits .benefit-card {
    padding: 1.5rem;
}

/* Offers Section */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.offer-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 8px 32px var(--shadow-light);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.offer-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.offer-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.offer-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
}

.offer-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.offer-description {
    text-align: center;
    margin-bottom: 1.5rem;
    min-height: 3em;
}

.offer-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.offer-features li {
    display: flex;
    flex-direction: column; /* Stack items vertically */
    align-items: flex-start; /* Align items to the start */
    gap: 0.25rem; /* Reduced gap between title and list */
    margin-bottom: 1rem;
}

.offer-cta {
    margin-top: auto;
}

/* About Section */
.about-more-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.about-image-col {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image-col img {
    max-width: 100%;
    border-radius: 16px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}

.faq-item.active .faq-answer {
    max-height: 500px; /* Adjust as needed */
}

/* Contact Section - Bento Layout */
.contact-bento-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.bento-item {
    background: var(--background-alt);
    padding: 2rem;
    border-radius: 16px;
}

.bento-vertical-stack {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Styles for the new section */
.testimonials-background-image {
    background-image: url('img/mixed_teamwork_congratulation.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    color: var(--white); /* Ensure text is readable */
    text-shadow: 0 2px 4px rgba(0,0,0,0.5); /* Add text shadow for readability */
    padding: 60px 0; /* Added padding to match other sections */
    min-height: 500px; /* Added min-height to ensure consistent sizing */
}

.testimonials-background-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Dark overlay */
    z-index: 1;
}

.testimonials-background-image .container {
    position: relative;
    z-index: 2;
}

.testimonials-background-image .section-title,
.testimonials-background-image .testimonial-content p,
.testimonials-background-image .testimonial-author .author-info h4,
.testimonials-background-image .testimonial-author .author-info span,
.testimonials-background-image .case-study-content h3,
.testimonials-background-image .case-study-content p,
.testimonials-background-image .result-number,
.testimonials-background-image .result-label,
.testimonials-background-image .faq-question,
.testimonials-background-image .faq-answer p,
.testimonials-background-image .journey-key-card h4,
.testimonials-background-image .journey-key-card p,
.testimonials-background-image .journey-key-source {
    color: var(--white); /* Ensure all text elements are white */
}

.testimonials-background-image .section-title::after {
    background: var(--gradient-primary); /* Keep golden line */
}

.testimonials-background-image .testimonial-card,
.testimonials-background-image .case-study,
.testimonials-background-image .faq-item,
.testimonials-background-image .journey-key-card {
    background: rgba(255, 255, 255, 0.1); /* Semi-transparent white background for cards */
    backdrop-filter: blur(5px); /* Optional: blur effect for cards */
    border-color: var(--primary-color); /* Keep golden border */
}

.testimonials-background-image .faq-item:hover {
    box-shadow: 0 16px 44px var(--shadow-medium); /* Use golden shadow on hover */
}

.testimonials-background-image .testimonial-card:hover,
.testimonials-background-image .case-study:hover {
    box-shadow: 0 16px 44px rgba(255, 255, 255, 0.2); /* Lighter shadow on hover */
}

.testimonials-background-image .testimonial-author img {
    border-color: var(--primary-color); /* Keep golden border for images */
}

.testimonials.no-background-image {
    background-image: none;
    background-color: var(--background); /* Revert to original background color */
    color: var(--text-primary); /* Revert text color */
    text-shadow: none; /* Remove text shadow */
}

.testimonials.no-background-image .section-title,
.testimonials.no-background-image .testimonial-content p,
.testimonials.no-background-image .testimonial-author .author-info h4,
.testimonials.no-background-image .testimonial-author .author-info span,
.testimonials.no-background-image .case-study-content h3,
.testimonials.no-background-image .case-study-content p,
.testimonials.no-background-image .result-number,
.testimonials.no-background-image .result-label {
    color: var(--text-primary); /* Revert text color */
}

.testimonials.no-background-image .testimonial-card,
.testimonials.no-background-image .case-study,
.testimonials.no-background-image .faq-item,
.testimonials.no-background-image .journey-key-card {
    background: var(--white); /* Revert card background */
    backdrop-filter: none; /* Remove blur effect */
    border-color: var(--primary-color); /* Keep golden border */
}

.testimonials.no-background-image .testimonial-card:hover,
.testimonials.no-background-image .case-study:hover {
    box-shadow: 0 16px 44px var(--shadow-medium); /* Revert shadow on hover */
}

.testimonials.no-background-image .testimonial-author img {
    border-color: var(--primary-color); /* Keep golden border for images */
}

/* New duplicated section styles */
.why-dan-alt {
    background-image: url('img/man_sit_desk_afro_2.webp'); /* Image directly on section */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative; /* Needed for pseudo-element positioning */
    overflow: hidden; /* Hide overflow from pseudo-element */
    padding: 60px 0;
    min-height: 500px; /* Changed from 400px to match testimonials */
    color: var(--white); /* Ensure text is readable */
    text-shadow: 0 2px 4px rgba(0,0,0,0.5); /* Add text shadow for readability */
}

.why-dan-alt::before { /* This will be the overlay with blur */
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Darker overlay */
    z-index: 1; /* Place above background image, below content */
}

.why-dan-alt .container {
    position: relative;
    z-index: 2; /* Ensure content is above the overlay */
}

.why-dan-alt .section-title,
.why-dan-alt .why-description,
.why-dan-alt .feature-card h3,
.why-dan-alt .feature-card p {
    color: var(--white); /* Set title color to white */
}


.why-dan-alt .why-description {
    color: var(--white);
    font-size: 1.5rem; /* Increased font size for subtitle */
    max-width: 100%; /* Allow it to take full width */
    margin: 0 auto 2rem auto;
    line-height: 1.2; /* Even tighter line height */
}

.why-text-alt {
    text-align: center;
    margin-bottom: 2rem;
}

.centered-text {
    text-align: center;
}

.why-features-grid-alt {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Responsive grid */
    gap: 2rem;
    margin-top: 2rem;
}


/* Adjust feature card styles for the new section if needed */
.why-dan-alt .feature-card {
    background: rgba(255, 255, 255, 0.1); /* Semi-transparent white background for cards */
    backdrop-filter: blur(5px); /* Apply blur to the card itself */
    box-shadow: 0 16px 44px rgba(255, 255, 255, 0.2);
    border-color: var(--primary-color); /* Keep golden border */
}


.why-dan-alt .feature-card .feature-icon svg {
    stroke: var(--primary-color); /* Keep icon color golden */
}

/* New style for why-text-alt card */
.why-text-card {
    background: rgba(255, 255, 255, 0.1); /* Semi-transparent white background for cards */
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px var(--shadow-light);
    backdrop-filter: blur(5px); /* Add blur effect */
    border: 1px solid var(--primary-color); /* Full golden border */
    text-align: center;
    max-width: 900px; /* Limit width for better readability */
    margin: 0 auto 2.5rem auto; /* Center the card and add bottom margin */
    width: 100%; /* Ensure it takes full width on smaller screens */
}

.why-text-card:hover {
    box-shadow: 0 16px 44px var(--shadow-medium);
    transform: translateY(-3px) scale(1.005);
}

/* Social Media Cards in Contact Section */
.social-media-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Four columns for mini cards */
    gap: 1rem; /* Space between cards */
    margin-top: 1.5rem; /* Adjust as needed */
}

.social-card {
    display: flex;
    flex-direction: column; /* Arrange icon and text in a column for a more square look */
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem 1rem; /* Adjusted padding for a more square appearance */
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    min-height: 120px; /* Set a minimum height to make them more square */
    min-width: 120px; /* Set a minimum width to make them more square */
    text-align: center; /* Center text */
}

.social-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
}

.social-card .fab {
    font-size: 2.8rem; /* Slightly larger icon size */
    color: var(--primary-color); /* Golden color for icons */
    margin-right: 0; /* Remove right margin */
    margin-bottom: 0.5rem; /* Add bottom margin to separate icon and text */
}

.social-card span {
    font-size: 1.1rem; /* Slightly smaller font size for social media name */
    font-weight: 600;
    color: var(--text-primary);
}

/* Responsive adjustments for social media cards */
@media (min-width: 769px) { /* For screens larger than 768px */
    .social-media-cards {
        grid-template-columns: repeat(2, 1fr); /* Two columns for mini cards on larger screens */
    }
}

@media (max-width: 768px) { /* For screens smaller than 768px, show 2 columns */
    .social-media-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .social-media-cards {
        grid-template-columns: 1fr; /* Single column on very small screens */
    }
}
