
    .idera-page {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    .idera-hero {
        background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #2a2a2a 100%);
        color: white;
        padding: 80px 20px;
        text-align: center;
        position: relative;
        overflow: hidden;
        border-bottom: 5px solid #BE6B0D;
    }

    .idera-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 20% 50%, rgba(190, 107, 13, 0.1) 0%, transparent 50%),
                    radial-gradient(circle at 80% 80%, rgba(190, 107, 13, 0.15) 0%, transparent 50%);
        opacity: 0.6;
    }

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

    .idera-hero h1 {
        font-size: 3em;
        margin-bottom: 15px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 4px;
        color: #BE6B0D;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    }

    .idera-hero-tagline {
        font-size: 1.5em;
        margin-bottom: 30px;
        font-weight: 300;
        font-style: italic;
        color: #f5f5f5;
    }

    .idera-hero-description {
        font-size: 1.1em;
        margin-bottom: 40px;
        line-height: 1.8;
        color: #e0e0e0;
    }

    .idera-cta-button {
        display: inline-block;
        background: linear-gradient(135deg, #BE6B0D 0%, #D67C0F 100%);
        color: white;
        padding: 18px 50px;
        text-decoration: none;
        border-radius: 50px;
        font-size: 1.2em;
        font-weight: bold;
        transition: all 0.3s;
        box-shadow: 0 4px 20px rgba(190, 107, 13, 0.4);
    }

    .idera-cta-button:hover {
        background: linear-gradient(135deg, #D67C0F 0%, #E88D11 100%);
        transform: translateY(-2px);
        box-shadow: 0 6px 30px rgba(190, 107, 13, 0.6);
        color: white;
        text-decoration: none;
    }

    .idera-stats-banner {
        background: linear-gradient(135deg, #BE6B0D 0%, #D67C0F 100%);
        color: white;
        padding: 50px 20px;
        text-align: center;
        box-shadow: inset 0 3px 10px rgba(0,0,0,0.2);
    }

    .idera-stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 40px;
        max-width: 1000px;
        margin: 0 auto;
    }

    .idera-stat-item {
        text-align: center;
        padding: 20px;
        background: rgba(0,0,0,0.2);
        border-radius: 15px;
        transition: transform 0.3s;
    }

    .idera-stat-item:hover {
        transform: scale(1.05);
        background: rgba(0,0,0,0.3);
    }

    .idera-stat-number {
        font-size: 3em;
        font-weight: bold;
        margin-bottom: 10px;
    }

    .idera-stat-label {
        font-size: 1.1em;
        opacity: 0.95;
    }

    .idera-section {
        padding: 60px 20px;
    }

    .idera-section:nth-child(even) {
        background: #f8f8f8;
    }

    .idera-section-title {
        font-size: 2.5em;
        color: #000000;
        margin-bottom: 15px;
        text-align: center;
        font-weight: 700;
        position: relative;
        display: inline-block;
        width: 100%;
    }

    .idera-section-title::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 4px;
        background: linear-gradient(90deg, transparent, #BE6B0D, transparent);
    }

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

    .idera-objectives-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .idera-objective-card {
        background: white;
        padding: 30px;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        transition: all 0.3s;
        border-top: 4px solid #BE6B0D;
    }

    .idera-objective-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(190, 107, 13, 0.3);
    }

    .idera-objective-icon {
        font-size: 3em;
        margin-bottom: 15px;
        color: #BE6B0D;
    }

    .idera-objective-card h3 {
        color: #000000;
        margin-bottom: 10px;
        font-size: 1.3em;
    }

    .idera-eligibility-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        margin-top: 40px;
    }

    .idera-eligibility-list {
        background: white;
        padding: 35px;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        border-left: 5px solid #BE6B0D;
    }

    .idera-eligibility-list h3 {
        color: #000000;
        margin-bottom: 20px;
        font-size: 1.5em;
        padding-bottom: 15px;
        border-bottom: 2px solid #BE6B0D;
    }

    .idera-eligibility-list ul {
        list-style: none;
        padding-left: 0;
    }

    .idera-eligibility-list li {
        padding: 12px 0;
        padding-left: 30px;
        position: relative;
        line-height: 1.6;
    }

    .idera-eligibility-list li:before {
        content: '✓';
        position: absolute;
        left: 0;
        color: #BE6B0D;
        font-weight: bold;
        font-size: 1.3em;
    }

    .idera-bonus-box {
        background: linear-gradient(135deg, #FFF8F0 0%, #FFE9D5 100%);
        padding: 25px;
        border-radius: 10px;
        border-left: 5px solid #BE6B0D;
        margin-top: 20px;
    }

    .idera-bonus-box strong {
        color: #BE6B0D;
    }

    .idera-support-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .idera-support-card {
        background: white;
        padding: 35px;
        border-radius: 12px;
        border-top: 4px solid #000000;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        transition: all 0.3s;
    }

    .idera-support-card:hover {
        border-top-color: #BE6B0D;
        box-shadow: 0 6px 20px rgba(190, 107, 13, 0.2);
    }

    .idera-support-card h3 {
        color: #000000;
        margin-bottom: 15px;
        font-size: 1.4em;
    }

    .idera-support-card ul {
        list-style: none;
        padding-left: 0;
    }

    .idera-support-card li {
        padding: 8px 0;
        padding-left: 25px;
        position: relative;
    }

    .idera-support-card li:before {
        content: '→';
        position: absolute;
        left: 0;
        color: #BE6B0D;
        font-weight: bold;
    }

    .idera-timeline {
        max-width: 900px;
        margin: 50px auto;
        position: relative;
    }

    .idera-timeline:before {
        content: '';
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 4px;
        height: 100%;
        background: linear-gradient(180deg, #BE6B0D, #D67C0F);
    }

    .idera-timeline-item {
        margin-bottom: 50px;
        position: relative;
        display: flex;
        align-items: center;
    }

    .idera-timeline-item:nth-child(odd) {
        flex-direction: row;
    }

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

    .idera-timeline-content {
        background: white;
        padding: 25px;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        width: 45%;
        border-left: 3px solid #BE6B0D;
    }

    .idera-timeline-number {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, #BE6B0D, #D67C0F);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5em;
        font-weight: bold;
        border: 5px solid white;
        box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    }

    .idera-timeline-content h3 {
        color: #000000;
        margin-bottom: 10px;
    }

    .idera-calendar-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
        margin-top: 40px;
    }

    .idera-calendar-item {
        background: white;
        padding: 30px;
        border-radius: 10px;
        text-align: center;
        box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        border-top: 5px solid #BE6B0D;
        transition: all 0.3s;
    }

    .idera-calendar-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 20px rgba(190, 107, 13, 0.3);
    }

    .idera-calendar-icon {
        font-size: 2.5em;
        margin-bottom: 15px;
        color: #BE6B0D;
    }

    .idera-calendar-item h3 {
        color: #000000;
        margin-bottom: 10px;
        font-size: 1.2em;
    }

    .idera-calendar-date {
        color: #BE6B0D;
        font-weight: bold;
        font-size: 1.1em;
    }

    .idera-contact-section {
        background: linear-gradient(135deg, #222222 0%, #222222 100%);
        color: white;
        padding: 60px 20px;
        text-align: center;
        border-top: 5px solid #BE6B0D;
    }

    .idera-contact-section h2 {
        color: #BE6B0D;
        margin-bottom: 30px;
    }

    .idera-contact-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        max-width: 900px;
        margin: 0 auto;
    }

    .idera-contact-card {
        background: rgba(190, 107, 13, 0.1);
        padding: 30px;
        border-radius: 10px;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(190, 107, 13, 0.3);
        transition: all 0.3s;
    }

    .idera-contact-card:hover {
        background: rgba(190, 107, 13, 0.2);
        border-color: #BE6B0D;
    }

    .idera-contact-card h3 {
        margin-bottom: 15px;
        font-size: 1.3em;
        color: #BE6B0D;
    }

    .idera-contact-card a {
        color: #d3d3d3;
        text-decoration: none;
        font-weight: bold;
        transition: opacity 0.3s;
    }

    .idera-contact-card a:hover {
        opacity: 0.8;
        color: #BE6B0D;
    }

    .idera-contact-card p {
        color: #e0e0e0;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .idera-hero h1 {
            font-size: 2em;
            letter-spacing: 2px;
        }

        .idera-hero-tagline {
            font-size: 1.2em;
        }

        .idera-section-title {
            font-size: 2em;
        }

        .idera-eligibility-content {
            grid-template-columns: 1fr;
            gap: 30px;
        }

        .idera-timeline:before {
            left: 30px;
        }

        .idera-timeline-item {
            flex-direction: row !important;
        }

        .idera-timeline-content {
            width: calc(100% - 80px);
            margin-left: 60px;
        }

        .idera-timeline-number {
            left: 30px;
        }
    }

/* ----------------------------------------------
Styles spécifiques à la page de remerciement 
--------------------------------------------------*/

    .thank-you-page {
        position: relative;
        padding: 100px 0 0;
        background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    }

    .thank-you-container {
        max-width: 900px;
        margin: 0 auto;
        text-align: center;
    }

    .thank-you-icon {
        width: 120px;
        height: 120px;
        background: linear-gradient(135deg, #BE6B0D 0%, #D67C0F 100%);
        border-radius: 50%;
        margin: 0 auto 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        animation: scaleIn 0.5s ease-out;
        box-shadow: 0 10px 40px rgba(190, 107, 13, 0.3);
    }

    .thank-you-icon i {
        font-size: 60px;
        color: #ffffff;
    }

    @keyframes scaleIn {
        0% {
            transform: scale(0);
            opacity: 0;
        }
        50% {
            transform: scale(1.1);
        }
        100% {
            transform: scale(1);
            opacity: 1;
        }
    }

    .thank-you-title {
        font-size: 48px;
        color: #000000;
        font-weight: 700;
        margin-bottom: 20px;
        font-family: 'Poppins', sans-serif;
    }

    .thank-you-subtitle {
        font-size: 24px;
        color: #BE6B0D;
        margin-bottom: 30px;
        font-weight: 400;
        font-family: 'Poppins', sans-serif;
    }

    .thank-you-message {
        font-size: 18px;
        color: #848484;
        line-height: 32px;
        margin-bottom: 50px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    .thank-you-message strong {
        color: #000000;
        font-weight: 600;
    }

    .info-boxes {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        margin: 60px 0;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto;
    }

    .info-box {
        background: #ffffff;
        padding: 35px 25px;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        border-top: 4px solid #BE6B0D;
    }

    .info-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(190, 107, 13, 0.2);
    }

    .info-box-icon {
        font-size: 40px;
        color: #BE6B0D;
        margin-bottom: 20px;
    }

    .info-box h4 {
        font-size: 20px;
        color: #000000;
        margin-bottom: 15px;
        font-weight: 600;
    }

    .info-box p {
        font-size: 16px;
        color: #848484;
        line-height: 26px;
        margin: 0;
    }

    .next-steps {
        background: #ffffff;
        padding: 50px 40px;
        border-radius: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        margin: 60px 0;
        border-left: 5px solid #BE6B0D;
    }

    .next-steps h3 {
        font-size: 28px;
        color: #000000;
        margin-bottom: 30px;
        font-weight: 600;
        text-align: left;
    }

    .steps-list {
        text-align: left;
        max-width: 700px;
        margin: 0 auto;
    }

    .step-item {
        display: flex;
        align-items: flex-start;
        margin-bottom: 25px;
        padding-bottom: 25px;
        border-bottom: 1px solid #f4f4f4;
    }

    .step-item:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .step-number {
        width: 40px;
        height: 40px;
        background: linear-gradient(135deg, #BE6B0D 0%, #D67C0F 100%);
        color: #ffffff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 18px;
        margin-right: 20px;
        flex-shrink: 0;
    }

    .step-content h5 {
        font-size: 18px;
        color: #000000;
        margin-bottom: 8px;
        font-weight: 600;
    }

    .step-content p {
        font-size: 16px;
        color: #848484;
        line-height: 26px;
        margin: 0;
    }

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

    .thm-btn-idera {
        position: relative;
        background: linear-gradient(135deg, #BE6B0D 0%, #D67C0F 100%);
        font-size: 16px;
        line-height: 50px;
        font-weight: 600;
        color: #ffffff;
        border: 2px solid #BE6B0D;
        text-transform: uppercase;
        font-family: 'Poppins', sans-serif;
        display: inline-block;
        padding: 0 40px;
        transition: all 0.3s ease;
        border-radius: 50px;
        box-shadow: 0 4px 15px rgba(190, 107, 13, 0.3);
    }

    .thm-btn-idera:hover {
        background: #000000;
        color: #BE6B0D;
        border-color: #000000;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    }

    .thm-btn-secondary {
        background: transparent;
        color: #000000;
        border: 2px solid #000000;
        box-shadow: none;
    }

    .thm-btn-secondary:hover {
        background: #000000;
        color: #ffffff;
        border-color: #000000;
    }

    .contact-banner {
        background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
        padding: 40px;
        border-radius: 12px;
        margin-top: 60px;
        text-align: center;
    }

    .contact-banner h4 {
        font-size: 24px;
        color: #BE6B0D;
        margin-bottom: 15px;
        font-weight: 600;
    }

    .contact-banner p {
        font-size: 16px;
        color: #cccccc;
        margin-bottom: 25px;
    }

    .contact-banner a {
        color: #BE6B0D;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .contact-banner a:hover {
        color: #D67C0F;
    }

    .contact-banner .contact-links {
        display: flex;
        justify-content: center;
        gap: 30px;
        flex-wrap: wrap;
        margin-top: 20px;
    }

    .contact-links .contact-item {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .contact-links .contact-item i {
        font-size: 20px;
        color: #BE6B0D;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .thank-you-title {
            font-size: 36px;
        }

        .thank-you-subtitle {
            font-size: 20px;
        }

        .thank-you-icon {
            width: 100px;
            height: 100px;
        }

        .thank-you-icon i {
            font-size: 50px;
        }

        .info-boxes {
            grid-template-columns: 1fr;
        }

        .next-steps {
            padding: 30px 20px;
        }

        .action-buttons {
            flex-direction: column;
        }

        .thm-btn-idera {
            width: 100%;
            text-align: center;
        }
    }

