:root {
    --primary-color: #0f1419;
    --primary-light: #1a202c;
    --primary-dark: #000000;
    --gold-accent: #c9b037;
    --gold-light: #d4af37;
    --gold-dark: #b8860b;
    --secondary-color: #2c5530;
    --accent-color: #8b5a2b;
    --text-primary: #1a1a1a;
    --text-secondary: #4a5568;
    --text-light: #718096;
    --text-muted: #a0aec0;
    --background-primary: #ffffff;
    --background-secondary: #fafbfc;
    --background-accent: #f7f9fc;
    --background-luxury: #fbfbfb;
    --border-color: #e2e8f0;
    --border-light: #edf2f7;
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-luxury: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --border-radius-xl: 24px;
    --max-width: 1400px;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-family-heading: 'Playfair Display', Georgia, serif;
    --letter-spacing-tight: -0.05em;
    --letter-spacing-normal: -0.025em;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--background-primary);
    font-weight: 400;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

@media (min-width: 1200px) {
    .container {
        padding: 0 3rem;
    }
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

@media (min-width: 1200px) {
    .nav-container {
        padding: 0 3rem;
    }
}

/* Espacement pour écrans moyens - éviter collision logo/menu */
@media (max-width: 1199px) and (min-width: 769px) {
    .nav-menu {
        margin-left: 2rem;
        gap: 1.5rem;
    }

    .nav-container {
        gap: 1rem;
    }
}

/* Espacement serré pour petits écrans desktop */
@media (max-width: 1024px) and (min-width: 769px) {
    .nav-menu {
        gap: 1rem;
        margin-left: 1.5rem;
    }

    .nav-link {
        font-size: 0.9rem;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.logo-text h1 {
    font-family: var(--font-family-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: var(--letter-spacing-tight);
    margin: 0;
    line-height: 1.2;
}

.logo-subtitle {
    display: block;
    font-size: 0.8rem;
    color: var(--gold-accent);
    font-weight: 500;
    margin-top: 0.125rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta,
.nav-back {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.25rem;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: var(--shadow-md);
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold-accent), var(--gold-light));
    color: var(--primary-color);
    box-shadow: var(--shadow-luxury);
    border: 2px solid transparent;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold-accent));
    transform: translateY(-4px);
    box-shadow: 0 30px 60px -12px rgba(201, 176, 55, 0.4);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: white;
    transform: translateY(-4px);
    box-shadow: var(--shadow-luxury);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

/* Hero Section */
.hero {
    position: relative;
    height: 85vh;
    min-height: 700px;
    max-height: 900px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero {
    background-image:
        linear-gradient(
            135deg,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(15, 20, 25, 0.35) 50%,
            rgba(0, 0, 0, 0.3) 100%
        ),
        url('img/lac123.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.hero-bg-image {
    display: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(15, 20, 25, 0.25) 50%,
        rgba(0, 0, 0, 0.2) 100%
    );
    z-index: 1;
}

.hero-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 1200px) {
    .hero-container {
        padding: 0 3rem;
    }
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: white;
    padding: 4rem 3rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg,
        rgba(201, 176, 55, 0.15),
        rgba(212, 175, 55, 0.1)
    );
    color: var(--gold-light);
    padding: 0.625rem 1.25rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 2rem;
    border: 1px solid rgba(201, 176, 55, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-family: var(--font-family-heading);
    font-size: 2.75rem;
    font-weight: 400;
    margin-bottom: 1.25rem;
    letter-spacing: 0.01em;
    line-height: 1.15;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    opacity: 0.95;
    font-variant-ligatures: none;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.25rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

@media (min-width: 1200px) {
    .hero-title {
        font-size: 4rem;
    }
}

.hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2.25rem;
    font-weight: 300;
    line-height: 1.65;
    opacity: 0.85;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2.25rem;
    color: rgba(255, 255, 255, 0.9);
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.2rem;
    }
}

@media (min-width: 1024px) {
    .hero-subtitle {
        font-size: 1.25rem;
    }
}

@media (min-width: 1200px) {
    .hero-subtitle {
        font-size: 1.3rem;
    }
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.hero-trust {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    opacity: 0.7;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: var(--font-family-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 120px 0;
    background: linear-gradient(
        180deg,
        var(--background-primary) 0%,
        var(--background-secondary) 100%
    );
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--border-color),
        transparent
    );
}

.services::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 3px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--primary-color) 20%,
        var(--gold-accent) 50%,
        var(--primary-color) 80%,
        transparent 100%
    );
    border-radius: 2px;
}

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

.service-card {
    background-color: var(--background-primary);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transform: translateY(0) scale(1);
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.service-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(30, 58, 138, 0.8) 0%,
        rgba(212, 175, 55, 0.3) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-icon {
    font-size: 3rem;
    color: white;
}

.service-content {
    padding: 2rem;
}

.service-title {
    font-family: var(--font-family-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.service-features .fa-check {
    color: var(--secondary-color);
    font-size: 0.875rem;
}

.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-cta:hover {
    gap: 0.75rem;
}

/* Wealth Management Section */
.wealth-management {
    padding: 120px 0;
    background: var(--background-primary);
    position: relative;
    border-top: 3px solid var(--gold-accent);
    box-shadow: inset 0 1px 0 rgba(201, 176, 55, 0.1);
}

.wealth-management::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--gold-accent),
        var(--gold-light)
    );
    border-radius: 2px;
}

.wealth-header {
    text-align: center;
    margin-bottom: 4rem;
}

.wealth-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--gold-accent), var(--gold-light));
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.wealth-title {
    font-family: var(--font-family-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
}

.wealth-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.wealth-content {
    margin-bottom: 4rem;
}

.process-title {
    font-family: var(--font-family-heading);
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 3rem;
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    margin-top: 2rem;
    margin-bottom: 4rem;
    gap: 1rem;
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1;
    text-align: center;
}

.timeline-step:last-child .step-connector {
    display: none;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold-accent), #d4af37);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(201, 176, 55, 0.3);
    z-index: 2;
    margin-bottom: 1rem;
}

.step-details {
    flex: 1;
}

.step-details h4 {
    font-family: var(--font-family-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.step-details p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.step-connector {
    position: absolute;
    top: 30px;
    right: -50%;
    width: calc(100% - 60px);
    height: 2px;
    background: linear-gradient(to right, var(--gold-accent), rgba(201, 176, 55, 0.3));
    z-index: 1;
}

@media (max-width: 768px) {
    .process-timeline {
        flex-direction: column;
        gap: 2rem;
    }

    .step-connector {
        display: none;
    }
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background-color: var(--background-secondary);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.step-content h4 {
    font-family: var(--font-family-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.5;
}

.wealth-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.benefit-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.benefit-content h3 {
    font-family: var(--font-family-heading);
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefit-item i {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--gold-accent), var(--gold-light));
    color: var(--primary-color);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-item h4 {
    font-family: var(--font-family-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: var(--text-secondary);
    line-height: 1.5;
}

.wealth-cta {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, var(--background-secondary), var(--background-accent));
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
}

.cta-content h3 {
    font-family: var(--font-family-heading);
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* Planning Section */
.planning {
    padding: 120px 0;
    background: linear-gradient(
        135deg,
        var(--background-secondary) 0%,
        var(--background-accent) 100%
    );
    position: relative;
    border-top: 1px solid var(--border-light);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        0 -10px 20px rgba(0, 0, 0, 0.02);
}

.planning::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--primary-color) 30%,
        var(--gold-accent) 70%,
        transparent 100%
    );
}

.planning::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(201, 176, 55, 0.6) 50%,
        transparent 100%
    );
}

.planning-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.planning-title {
    font-family: var(--font-family-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
    letter-spacing: -0.025em;
}

.planning-description {
    margin-bottom: 2rem;
}

.planning-description p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.planning-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background-color: var(--background-primary);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-content h4 {
    font-family: var(--font-family-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: var(--text-secondary);
    line-height: 1.5;
}

.planning-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.planning-image {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.planning-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.planning-image:hover img {
    transform: scale(1.05);
}

/* Testimonials Section */
.testimonials {
    padding: 120px 0;
    background: var(--background-primary);
    position: relative;
    border-top: 2px solid var(--border-light);
    box-shadow: inset 0 10px 20px rgba(0, 0, 0, 0.02);
}

.testimonials::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--gold-accent) 20%,
        #d4af37 50%,
        var(--gold-accent) 80%,
        transparent 100%
    );
    border-radius: 2px;
}

.testimonials::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(201, 176, 55, 0.3) 50%,
        transparent 100%
    );
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.testimonial-card {
    background-color: var(--background-primary);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-quote {
    position: absolute;
    top: -20px;
    left: 3rem;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gold-accent), var(--gold-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.25rem;
}

.testimonial-text {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 2rem;
    margin-top: 1rem;
    font-style: italic;
}

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

.author-name {
    font-family: var(--font-family-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.author-title {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
}

.testimonial-rating i {
    color: var(--gold-accent);
}

.trust-indicators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.trust-indicators .trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background-color: var(--background-primary);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.trust-indicators .trust-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.trust-indicators .trust-item i {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-indicators .trust-item h4 {
    font-family: var(--font-family-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.trust-indicators .trust-item p {
    color: var(--text-secondary);
    line-height: 1.5;
}

/* About Section */
.about {
    padding: 120px 0;
    background: linear-gradient(
        135deg,
        var(--background-accent) 0%,
        var(--background-secondary) 100%
    );
    position: relative;
    border-top: 1px solid var(--border-light);
}

.about::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 3px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--gold-accent) 25%,
        #d4af37 50%,
        var(--gold-accent) 75%,
        transparent 100%
    );
    border-radius: 2px;
}

.about::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--border-color),
        transparent
    );
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about-header {
    margin-bottom: 2rem;
}

.about-title {
    font-family: var(--font-family-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    letter-spacing: -0.025em;
}

.about-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.about-description {
    margin-bottom: 3rem;
}

.about-description p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.about-values {
    margin-bottom: 3rem;
}

.about-values h3 {
    font-family: var(--font-family-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background-color: var(--background-secondary);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.value-item i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.value-item h4 {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.value-item p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.about-certifications h3 {
    font-family: var(--font-family-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.certification-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--gold-accent), var(--gold-light));
    color: var(--primary-color);
    border-radius: var(--border-radius-lg);
}

.certification-badge i {
    font-size: 2rem;
}

.certification-badge h4 {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.certification-badge p {
    line-height: 1.4;
}

.certifications-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

@media (min-width: 768px) {
    .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.about-image {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    max-width: 280px;
    margin: 2rem auto;
    float: right;
    margin-left: 2rem;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(15, 20, 25, 0.3) 0%,
        rgba(201, 176, 55, 0.1) 100%
    );
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.certification-badge {
    background: rgba(201, 176, 55, 0.95);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow-md);
}

.certification-badge i {
    font-size: 1rem;
}

.image-container {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.image-container img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.7));
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-container:hover .image-overlay {
    opacity: 1;
}

.quick-contact-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.quick-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: var(--background-primary);
    position: relative;
    border-top: 2px solid var(--gold-accent);
    box-shadow: inset 0 1px 0 rgba(201, 176, 55, 0.1);
}

.contact::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(
        90deg,
        var(--gold-accent),
        var(--gold-light)
    );
    border-radius: 2px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-intro {
    margin-bottom: 2rem;
}

.contact-intro h3 {
    font-family: var(--font-family-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.contact-intro p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: var(--background-primary);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-text h4 {
    font-family: var(--font-family-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.contact-text a,
.contact-text p {
    color: var(--text-secondary);
    text-decoration: none;
}

.contact-text a:hover {
    color: var(--primary-color);
}

.contact-hours {
    padding: 1.5rem;
    background-color: var(--background-primary);
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.contact-hours h4 {
    font-family: var(--font-family-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-hours p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-form {
    background-color: var(--background-primary);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h3 {
    font-family: var(--font-family-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--text-secondary);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: inherit;
    background-color: var(--background-primary);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    margin-bottom: 2rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 1px solid var(--border-color);
    border-radius: 3px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--text-primary), #374151);
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand h3 {
    font-family: var(--font-family-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-column h4 {
    font-family: var(--font-family-heading);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: white;
}

.footer-column span {
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.copyright-notice {
    font-size: 0.75rem !important;
    color: rgba(255, 255, 255, 0.5) !important;
    margin-top: 0.5rem;
}

.footer-certifications {
    display: flex;
    gap: 1rem;
}

.footer-certifications .certification-badge {
    background: linear-gradient(135deg, var(--gold-accent), var(--gold-light));
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.footer-simple p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.footer-simple a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.footer-simple a:hover {
    color: white;
}

/* Legal Pages */
.legal-page {
    padding: 100px 0 80px;
    background-color: var(--background-primary);
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
}

.legal-header h1 {
    font-family: var(--font-family-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.last-updated {
    color: var(--text-secondary);
    font-style: italic;
}

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

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-family: var(--font-family-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.legal-section h3 {
    font-family: var(--font-family-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 1.5rem 0 0.75rem;
}

.info-block,
.warning-block {
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}

.info-block {
    background-color: var(--background-secondary);
}

.warning-block {
    background-color: #fef2f2;
    border-color: #fecaca;
}

.legal-section p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section li {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.legal-section a {
    color: var(--primary-color);
    text-decoration: none;
}

.legal-section a:hover {
    text-decoration: underline;
}

/* Mobile Styles */
@media (max-width: 1024px) {
    .wealth-benefits,
    .planning-content,
    .contact-content,
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    /* Centrer la photo d'Elodie sur tablette */
    .about-image {
        float: none;
        margin: 2rem auto;
        max-width: 320px;
    }

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

    .process-steps {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    /* Trust indicators bien alignés sur tablette */
    .trust-indicators {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .trust-indicators .trust-item {
        max-width: 400px;
        width: 100%;
        justify-content: flex-start;
    }

    /* Témoignages en défilement horizontal sur tablette */
    .testimonials-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1.5rem;
        padding-bottom: 1rem;
        margin-bottom: 3rem;
    }

    .testimonial-card {
        flex: 0 0 320px;
        scroll-snap-align: start;
        margin-bottom: 0;
        padding: 2rem 1.5rem;
        font-size: 0.95rem;
        line-height: 1.5;
    }
}

@media (max-width: 768px) {
    /* Carrousel services mobile avec effet 3D */
    .services-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1rem;
        padding: 2rem 1rem;
        margin: 0 -1rem;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .services-grid::-webkit-scrollbar {
        display: none;
    }

    .service-card {
        flex: 0 0 280px;
        scroll-snap-align: center;
        transform: scale(0.85) translateY(0);
        opacity: 0.7;
        transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease;
        margin-bottom: 0;
    }

    /* Animation légère sur mobile */
    .service-card:hover {
        transform: scale(0.87) translateY(-4px);
    }

    /* Service actif (au centre) */
    .service-card.active {
        transform: scale(1) translateY(0);
        opacity: 1;
        box-shadow: var(--shadow-lg);
    }

    .service-card.active:hover {
        transform: scale(1.02) translateY(-6px);
    }

    /* Services adjacents */
    .service-card.adjacent {
        transform: scale(0.9) translateY(0);
        opacity: 0.85;
    }

    .service-card.adjacent:hover {
        transform: scale(0.92) translateY(-4px);
    }

    /* Indicateurs de carrousel */
    .services-indicators {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 2rem;
    }

    .service-indicator {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: var(--border-color);
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .service-indicator.active {
        background: var(--gold-accent);
        transform: scale(1.2);
    }

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 90px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s ease;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        z-index: 1000;
        border-bottom: 1px solid var(--border-light);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 1rem 0;
    }

    .nav-link {
        padding: 0.75rem 1rem;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .nav-link:hover {
        background-color: var(--background-accent);
        color: var(--gold-accent);
    }

    .hero {
        min-height: 70vh;
        padding-top: 90px;
    }

    .hero-content {
        padding: 3rem 2rem;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        max-width: 100%;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
        line-height: 1.2;
        white-space: normal;
        text-align: center;
        word-wrap: break-word;
        min-height: 48px;
    }

    .hero-trust {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .trust-item {
        justify-content: center;
    }

    .section-header {
        margin-bottom: 2.5rem;
        text-align: center;
    }

    .section-title {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .section-subtitle {
        font-size: 1rem;
        max-width: 100%;
        padding: 0 1rem;
    }

    .wealth-title,
    .planning-title,
    .about-title {
        font-size: 1.8rem;
        line-height: 1.3;
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .services,
    .wealth-management,
    .planning,
    .testimonials,
    .about,
    .contact {
        padding: 50px 0;
    }

    .service-card {
        margin-bottom: 1.5rem;
        box-shadow: var(--shadow-sm);
    }

    .service-content {
        padding: 1.5rem;
    }

    .service-title {
        font-size: 1.2rem;
        line-height: 1.4;
        margin-bottom: 1rem;
    }

    .service-features {
        margin-bottom: 1.5rem;
    }

    .service-features li {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }

    .contact-form {
        padding: 1.5rem;
        margin-top: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .form-group {
        margin-bottom: 1.5rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.875rem;
        font-size: 1rem;
    }

    /* Témoignages en défilement horizontal optimisé pour mobile */
    .testimonials-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1rem;
        padding: 0 1rem 1rem 1rem;
        margin: 0 -1rem 2rem -1rem;
        scrollbar-width: thin;
        scrollbar-color: var(--gold-accent) var(--background-secondary);
    }

    /* Amélioration du contenu des témoignages */
    .testimonial-text {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .testimonial-author h4 {
        font-size: 1rem;
        margin-bottom: 0.25rem;
        word-wrap: break-word;
    }

    .author-title {
        font-size: 0.85rem;
        word-wrap: break-word;
    }

    .testimonials-grid::-webkit-scrollbar {
        height: 6px;
    }

    .testimonials-grid::-webkit-scrollbar-track {
        background: var(--background-secondary);
        border-radius: 10px;
    }

    .testimonials-grid::-webkit-scrollbar-thumb {
        background: var(--gold-accent);
        border-radius: 10px;
    }

    .testimonial-card {
        flex: 0 0 320px;
        scroll-snap-align: start;
        margin-bottom: 0;
        padding: 2.5rem 1.5rem 2rem;
        font-size: 0.95rem;
        line-height: 1.5;
        margin-top: 1rem;
    }

    .testimonial-quote {
        top: -10px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    /* Photo d'Elodie parfaitement centrée sur mobile */
    .about-image {
        float: none;
        margin: 2rem auto 3rem auto;
        max-width: 280px;
        display: block;
    }

    .about-content {
        text-align: center;
    }

    .about-text {
        text-align: left;
        margin-top: 1rem;
    }

    .container {
        padding: 0 1rem;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .hero-container {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 0.75rem;
        height: 75px;
    }

    .logo {
        gap: 0.75rem;
    }

    .logo-img {
        height: 40px;
    }

    .logo-text h1 {
        font-size: 1.2rem;
    }

    .hero {
        min-height: 60vh;
        padding-top: 75px;
    }

    .hero-content {
        padding: 2rem 1rem;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .hero-cta .btn {
        padding: 0.875rem 1rem;
        font-size: 0.85rem;
        max-width: 280px;
        line-height: 1.3;
        white-space: normal;
        word-wrap: break-word;
        min-height: 44px;
    }

    /* Texte alternatif pour les boutons trop longs sur mobile */
    .hero-cta .btn .btn-text-mobile {
        display: none;
    }

    .container {
        padding: 0 0.75rem;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .section-subtitle {
        font-size: 0.95rem;
        padding: 0 0.5rem;
    }

    .services,
    .wealth-management,
    .planning,
    .testimonials,
    .about,
    .contact {
        padding: 40px 0;
    }

    .service-card {
        margin-bottom: 1.25rem;
    }

    .service-content {
        padding: 1.25rem;
    }

    .service-title {
        font-size: 1.1rem;
    }

    .contact-form {
        padding: 1.25rem;
        margin-top: 1.5rem;
    }

    .modal-content {
        margin: 0.75rem;
        width: calc(100% - 1.5rem);
    }

    /* Boutons encore plus compacts sur très petits écrans */
    .btn-large {
        padding: 0.875rem 1rem;
        font-size: 0.85rem;
        min-height: 48px;
    }

    .hero-cta .btn {
        font-size: 0.8rem;
        padding: 0.8rem 1rem;
        line-height: 1.2;
    }

    /* Témoignages plus compacts */
    .testimonials-grid {
        gap: 0.75rem;
    }

    .testimonial-card {
        flex: 0 0 300px;
        padding: 2rem 1.25rem 1.5rem;
        margin-top: 1rem;
    }

    .testimonial-quote {
        top: -10px;
    }

    .testimonial-text {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    /* Photo d'Elodie sur très petits écrans */
    .about-image {
        max-width: 240px;
        margin: 1.5rem auto 2rem auto;
    }

    .modal-header,
    .modal-body {
        padding: 1.25rem;
    }

    .service-card {
        margin-bottom: 1rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .testimonial-card {
        padding: 2rem;
    }

    .benefit-image img,
    .planning-image img,
    .image-container img {
        height: 300px;
    }

    .trust-indicators {
        grid-template-columns: 1fr;
    }
}

/* Contact Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 20, 25, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--background-primary);
    margin: 2rem;
    padding: 0;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal.show .modal-content {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h2 {
    font-family: var(--font-family-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.modal-close {
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 0.5rem;
    line-height: 1;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--text-primary);
}

.modal-body {
    padding: 1.5rem 2rem 2rem;
}

.modal-intro {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.6;
}

.contact-form-modal {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form-modal .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-form-modal .form-group {
    display: flex;
    flex-direction: column;
}

.contact-form-modal label {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.contact-form-modal input,
.contact-form-modal select,
.contact-form-modal textarea {
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    background-color: var(--background-primary);
    color: var(--text-primary);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form-modal input:focus,
.contact-form-modal select:focus,
.contact-form-modal textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-form-modal textarea {
    resize: vertical;
    min-height: 100px;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (max-width: 768px) {
    .modal-content {
        margin: 1rem;
    }

    .modal-header,
    .modal-body {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .contact-form-modal .form-row {
        grid-template-columns: 1fr;
    }
}

/* Landscape mobile optimization */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding-top: 90px;
    }

    .hero-content {
        padding: 2rem 1rem;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .hero-cta {
        flex-direction: row;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-cta .btn {
        width: auto;
        max-width: 200px;
        padding: 0.75rem 1.5rem;
    }

    .services,
    .wealth-management,
    .planning,
    .testimonials,
    .about,
    .contact {
        padding: 60px 0;
    }
}

/* Fix pour éviter les débordements horizontaux */
@media (max-width: 768px) {
    * {
        max-width: 100%;
        box-sizing: border-box;
    }

    img {
        max-width: 100%;
        height: auto;
    }

    .testimonial-card,
    .service-card,
    .contact-form {
        width: 100%;
        box-sizing: border-box;
    }

    /* Amélioration des boutons sur mobile */
    .btn {
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
        text-align: center;
        line-height: 1.3;
    }

    .btn-large {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
        min-height: 50px;
        max-width: 100%;
        width: 100%;
    }

    .btn i {
        margin-right: 0.5rem;
        flex-shrink: 0;
    }

    /* Responsive tables si présentes */
    table {
        width: 100%;
        overflow-x: auto;
        display: block;
        white-space: nowrap;
    }
}

/* ===== FAQ STYLES ===== */
.faq-hero {
    background: linear-gradient(135deg, var(--background-luxury) 0%, var(--background-accent) 100%);
    padding: 120px 0 80px;
    text-align: center;
}

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

.faq-title {
    font-family: var(--font-family-heading);
    font-size: 3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: var(--letter-spacing-tight);
}

.faq-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.6;
}

.faq-content {
    padding: 80px 0;
    background-color: var(--background-primary);
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    gap: 2rem;
    display: flex;
    flex-direction: column;
}

.faq-item {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, var(--background-primary) 0%, var(--background-accent) 100%);
    border-bottom: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, var(--background-accent) 0%, var(--background-secondary) 100%);
}

.faq-question h3 {
    font-family: var(--font-family-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    letter-spacing: var(--letter-spacing-normal);
}

.faq-toggle {
    margin-left: 1rem;
    flex-shrink: 0;
}

.faq-toggle i {
    font-size: 1.2rem;
    color: var(--gold-accent);
    transition: all 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer-content {
    padding: 2rem;
    background: white;
}

.faq-answer-content p,
.faq-answer-content h5 {
    font-family: var(--font-family-body);
    font-weight: 400;
    color: var(--text-color);
}

.faq-answer-content h5 {
    font-weight: 600;
    font-family: var(--font-family-body) !important;
}

.faq-answer-content h4 {
    font-family: var(--font-family-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.faq-answer-content h4 i {
    color: var(--gold-accent);
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.step-number {
    background: linear-gradient(135deg, var(--gold-accent), var(--gold-light));
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step-content h5 {
    font-family: var(--font-family-body);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Pricing Info */
.pricing-info {
    display: grid;
    gap: 1.5rem;
}

.pricing-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    background: var(--background-accent);
    border-radius: var(--border-radius);
}

.pricing-item i {
    color: var(--gold-accent);
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.pricing-item h5 {
    font-family: var(--font-family-body);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.pricing-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Client Types */
.client-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.client-type {
    text-align: center;
    padding: 1.5rem;
    background: var(--background-accent);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
}

.client-type:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.client-type i {
    font-size: 2.5rem;
    color: var(--gold-accent);
    margin-bottom: 1rem;
}

.client-type h5 {
    font-family: var(--font-family-body);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.client-type p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* Timeline Info */
.timeline-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.timeline-item {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.timeline-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.timeline-icon i {
    color: white;
    font-size: 1.2rem;
}

.timeline-content h5 {
    font-family: var(--font-family-body);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.timeline-content p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.9rem;
}

/* Partners Info */
.partners-info {
    display: grid;
    gap: 1.5rem;
}

.partner-benefit {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--background-accent) 0%, var(--background-secondary) 100%);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--gold-accent);
}

.partner-benefit i {
    color: var(--gold-accent);
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.partner-benefit h5 {
    font-family: var(--font-family-body);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.partner-benefit p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Quality Assurance */
.quality-assurance {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.assurance-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
}

.assurance-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.assurance-item i {
    font-size: 2rem;
    color: var(--gold-accent);
    margin-bottom: 1rem;
}

.assurance-item h5 {
    font-family: var(--font-family-body);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.assurance-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* FINMA Info */
.finma-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 1rem;
}

@media (min-width: 768px) {
    .finma-info {
        grid-template-columns: repeat(2, 1fr);
    }
}

.finma-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(201, 176, 55, 0.05);
    border-radius: var(--border-radius);
    border-left: 3px solid var(--gold-accent);
}

.finma-item i {
    color: var(--gold-accent);
    font-size: 1.25rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.finma-item h5 {
    font-family: var(--font-family-body);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.finma-item p {
    color: var(--text-color);
    margin: 0;
    line-height: 1.5;
}

.finma-document {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(201, 176, 55, 0.05);
    border-radius: var(--border-radius);
    border-left: 3px solid var(--gold-accent);
}

.finma-document p {
    margin: 0 0 1rem 0;
    font-weight: 600;
    color: var(--primary-color);
}

.document-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: var(--gold-accent);
    color: white;
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: all 0.3s ease;
}

.document-link:hover {
    background: #b8941e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 176, 55, 0.3);
}

.document-link i {
    font-size: 1.25rem;
}

/* FAQ CTA */
.faq-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem 2rem;
    background: var(--background-primary);
    border: 2px solid var(--gold-accent);
    border-radius: var(--border-radius-lg);
    color: var(--text-color);
}

.faq-cta .cta-content h3 {
    font-family: var(--font-family-heading);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.faq-cta .cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

/* Active nav link */
.nav-link.active {
    color: var(--gold-accent);
    font-weight: 600;
}

/* Thank You Page */
.thank-you-section {
    padding: 120px 0 80px;
    background: var(--background-primary);
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
}

.thank-you-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.success-icon {
    font-size: 4rem;
    color: var(--gold-accent);
    margin-bottom: 2rem;
}

.thank-you-content h1 {
    font-family: var(--font-family-heading);
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.thank-you-content .lead {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: 3rem;
}

.next-steps {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: 3rem;
    text-align: left;
}

.next-steps h3 {
    font-family: var(--font-family-heading);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.step-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-item i {
    color: var(--gold-accent);
    font-size: 1.25rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.step-item p {
    margin: 0;
    color: var(--text-color);
    line-height: 1.6;
}

.contact-info {
    background: rgba(201, 176, 55, 0.1);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin-bottom: 3rem;
}

.contact-info p {
    margin: 0.5rem 0;
}

.contact-info a {
    color: var(--gold-accent);
    font-weight: 600;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .thank-you-section {
        padding: 100px 0 60px;
    }

    .thank-you-content {
        padding: 2rem 1rem;
    }

    .thank-you-content h1 {
        font-size: 2rem;
    }

    .success-icon {
        font-size: 3rem;
    }

    .next-steps {
        padding: 2rem 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Testimonial Modal Styles */
.testimonial-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(3px);
}

.testimonial-modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 0;
    border: none;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial-modal-header {
    padding: 20px 30px 0;
    text-align: right;
}

.testimonial-modal-close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.testimonial-modal-close:hover,
.testimonial-modal-close:focus {
    color: var(--primary);
    text-decoration: none;
}

.testimonial-modal-body {
    padding: 20px 30px 40px;
}

.testimonial-quote-large {
    text-align: center;
    margin-bottom: 20px;
}

.testimonial-quote-large i {
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.3;
}

.testimonial-modal-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-primary);
    font-style: italic;
    margin-bottom: 25px;
    text-align: left;
}

.testimonial-modal-author {
    text-align: center;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.testimonial-modal-author h4 {
    color: var(--primary);
    margin: 0 0 5px 0;
    font-size: 1.1rem;
}

.testimonial-modal-author span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Read More Button */
.read-more-btn {
    background: none;
    border: none;
    color: var(--primary);
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: underline;
    padding: 0;
    margin-left: 5px;
    transition: color 0.3s ease;
}

.read-more-btn:hover {
    color: var(--primary-dark);
}

/* Form Messages Styles */
.form-message {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
}

.form-message.success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.form-message.error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

/* Submit Button Loading State */
.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn .fa-spinner {
    margin-left: 8px;
}

/* Mobile Responsive FAQ */
@media (max-width: 768px) {
    .faq-hero {
        padding: 100px 0 60px;
    }

    .faq-title {
        font-size: 2.25rem;
    }

    .faq-subtitle {
        font-size: 1.1rem;
    }

    .faq-content {
        padding: 60px 0;
    }

    .faq-question {
        padding: 1.25rem 1.5rem;
    }

    .faq-question h3 {
        font-size: 1.1rem;
    }

    .faq-answer-content {
        padding: 1.5rem;
    }

    .process-steps {
        gap: 1.25rem;
    }

    .step {
        flex-direction: row;
        gap: 0.75rem;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .client-types {
        grid-template-columns: 1fr;
    }

    .quality-assurance {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .timeline-item {
        flex-direction: row;
        text-align: left;
    }

    .timeline-icon {
        width: 45px;
        height: 45px;
    }

    .faq-cta {
        padding: 2rem 1.5rem;
    }

    .faq-cta .cta-content h3 {
        font-size: 1.5rem;
    }
}