 body {
            margin: 0;
            padding: 0;
            font-family: Arial, sans-serif;
            
            min-height: 100vh;
            background-color: #FAF7F2;
           
        }

        .header {
            background-color: #FAF7F2;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 50px;
            height: 85px;
        }

        .logo img {
            padding-top: 15px;
            height: 250PX; 
        }

        .nav-links {
            display: flex;
            gap: 40px;
            align-items:center;
        }

        .nav-links a {
            color:#091346;
            text-decoration: none;
            position: relative;
            transition: color 0.3s ease;
            font-size: 16px;
            font-weight: 700;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -3px;
            left: 0;
            background-color: #44AA99;
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: #44AA99;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

.button-group {
    display: flex;
    gap: 20px ;
    align-items: center;
}

.button-group button:first-child {
    /* Connect button - stays the same */
    padding: 12px 32px;
    background: linear-gradient(45deg, #091346, #061028);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: 600;
}



.button-group button:first-child:hover {
    background: linear-gradient(45deg, #061028, #030813);
    box-shadow: 0 4px 15px rgba(9, 19, 70, 0.4);
    transform: scale(1.05);
}



.button-group button:last-child {
     padding: 12px 32px;
    background: #E8EDF5;
    color: #091346;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: 600;
}

.button-group button:last-child:hover {
    background: #D0DBE8;
    box-shadow: 0 4px 15px rgba(9, 19, 70, 0.2);
    transform: scale(1.05);
}
/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 60px 50px;
    background-color: #FAF7F2;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    text-align: center;
    position: relative;
    z-index: 10;
}

/* Blob Images */
.blob-img {
    position: absolute;
    opacity: 0.15;
    animation: blob-float 15s ease-in-out infinite;
    pointer-events: none;
}

.blob-img1 {
    width: 800px;
    top:-25%;
    right:-8%;
    animation-duration: 0s;
    filter: brightness(0) saturate(100%) invert(54%) sepia(37%) saturate(1037%) hue-rotate(227deg) brightness(93%) contrast(88%);
}

.blob-img2 {
    width: 1000px;
    bottom: -90%;
    left: 8%;
    opacity: 0.2;
    animation-duration: 0s;
    animation-delay: 0s;
}

.blob-img3 {
    width: 400px;
    top: 50%;
    right: 5%;
    opacity: 0.1;
    animation-duration: 20s;
    animation-delay: 4s;
}

.blob-img4 {
    width: 200px;
    bottom: 20%;
    left: 35%;
    opacity: 0.12;
    animation-duration: 16s;
    animation-delay: 1s;
}

@keyframes blob-float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(30px, -40px) rotate(10deg);
    }
    50% {
        transform: translate(-20px, 30px) rotate(-10deg);
    }
    75% {
        transform: translate(40px, 20px) rotate(5deg);
    }
}






.hero h1 {
    font-size: 56px;
    color: #091346;
    margin-bottom: 30px;
    line-height: 1.2;
    font-weight: 700;
}

.hero p {
    font-size: 22px;
    color: #091346;
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-button {
    padding: 18px 50px;
    background: linear-gradient(45deg, #44AA99, #36897f);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 20px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-button:hover {
    background: linear-gradient(45deg, #36897f, #2a6b63);
    box-shadow: 0 6px 25px rgba(68, 170, 153, 0.5);
    transform: translateY(-3px);
}

.cta-button::after {
   
    font-size: 24px;
    transition: transform 0.3s ease;
}

.cta-button:hover::after {
    transform: translateX(5px);
}
/* ===== ÉTAPES SECTION ===== */
.etapes-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.etapes-section h2 {
    color: #091346;
    margin-bottom: 3rem;
    font-size: 2rem;
}

.etapes-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.etape-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(47, 93, 140, 0.1);
    transition: transform 0.3s;
    border: 1px solid rgba(47, 93, 140, 0.1);
}

.etape-card:hover {
    transform: translateY(-10px);
}

.etape-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #091346, #091346);
    color: #FAF7F2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.etape-card h3 {
    color: #091346;
    margin-bottom: 1rem;
}

.etape-placeholder {
    color: #999;
    font-style: italic;
}
footer {
    background-color: #FAF7F2;
    color: #091346;
    text-align: center;
    padding: 2rem;
    margin-top: auto;
}