body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}


.franc-blue {
    color: #2d7084;
}

.aide-green {
    color: #5b752d;
}

/* Navbar styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #fff;
    border-bottom: 2px solid #13438C;
}

.left-div {
    display: flex;
    align-items: center;
}

.logo-holder img {
    height: 40px;
}

.preview-title-holder h2 {
    margin-left: 10px;
    color: #13438C;
}

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

.menu-icon .menu-bar {
    width: 25px;
    height: 3px;
    background-color: #13438C;
    margin: 4px 0;
}

/* Right-div styles */
.right-div {
    margin-right: 40px;
    display: flex;
    align-items: center;
}

.menu-link {
    color: #13438C;
    text-decoration: none;
    font-size: 1em;
    margin: 0 10px;
}

/* Media queries for responsive design */
@media (max-width: 1000px) {
    .menu-icon {
        display: flex;
    }

    .right-div {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        background-color: #fff;
        width: 100%;
        padding: 20px;
        border-top: 1px solid #ddd;
    }

    .right-div.open {
        display: flex;
    }

    .menu-link {
        margin: 10px 0;
        font-size: 1.2em;
    }
}

/* Logo container */
.first-logo-container {
    display: flex;
    justify-content: center;
    text-align: center;
    gap: 50px;
    padding: 35px;
}

/* Logo styles */
.logo1 img {
    width: 360px;
    height: 130px;
}

.logo10 img {
    width: 130px;
    height: 120px;
}

.logo2 img {
    width: 250px;
    height: 150px;
}

.logo3 img {
    width: 200px;
    height: 150px;
    position: relative;
    top: 10px;
}

/* Description */
.description-fam {
    text-align: center;
    /* margin-top: 20px; */
    font-size: 1.5rem;
    /* margin: 20px; */
    border-radius: 10px;
    /* padding: 1px; */
    font-weight: bold;
    font-family: 'Arial', sans-serif;
}

/* Form container */
.form-container {
    margin: 20px auto;
    max-width: 900px;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Form step */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: fadeIn 0.5s;
}

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

.form-container h3{
    color: #000000;
    font-family: 'Barlow', sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
    display: inline-block;
}

.form-container p {
    padding: 5px;
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem;
}

.form-container img {
    filter: brightness(100%);
    padding: 30px;
    border: 3px solid rgba(2, 141, 234, 0.579);
    background: white;
    border-radius: 5px;
    box-shadow: 3px 6px rgba(1,0,36,.05);
    transition: transform 0.5s ease;
    cursor: pointer;
}

.form-container img:hover {
    filter: brightness(100%);
    border: 6px solid rgba(2, 141, 234, 0.934);
    background: #3a8dff;
    box-shadow: 5px 10px rgba(1, 0, 18, 0.05);
    transform: scale(1.1);
}

.step-abc img {
    width: 60px !important;
    height: 60px !important;
    border: none !important;
    padding: 0 !important;
    border-radius: 20px !important;
    margin-right: 20px !important;
    z-index: 1000 !important;
    box-shadow: 0 14px 18px rgba(7, 28, 124, 0.498) !important;
}


.options {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}

.option {
    text-align: center;
    cursor: pointer;
}

.option img {
    width: 150px;
    height: 150px;
    margin: auto;
}

.option p {
    margin-top: 10px;
    font-size: 1.5rem;
    font-weight: bold;
}



@media screen and (max-width: 999px) {
    .form-button {
        display: block;
        width: 100%;
        padding: 10px;
        background: linear-gradient(135deg,#5451ff,#3a8dff);
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-size: 1rem;
        margin-left: 0%;
        transition: transform 0.5s ease;
    }

    .form-row {
        margin-bottom: 15px;
    }
    
    .form-row input {
        width: 95%;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 5px;
        text-align: center;
    }
    
}

@media screen and (min-width: 1000px) {
    
    .form-button {
        display: block;
        width: 60%;
        padding: 10px;
        background: linear-gradient(135deg,#5451ff,#3a8dff);
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-size: 1rem;
        margin-left: 20%;
        transition: transform 0.5s ease;
    }

    .form-row {
        margin-bottom: 15px;
        text-align: center 
    }
    
    .form-row input {
        width: 80%;text-align: center;font-size: 1rem;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 5px;
    }
    
}

.form-button:hover {
    background: linear-gradient(135deg, #18a136, #25c137);
    transform: scale(1.1);
}

.suggestions {
    text-align: center;
    list-style-type: none;
    padding: 0;
    margin: 0;
    max-height: 150px;
    overflow-y: auto;
    background-color: white;
    position: absolute;
    z-index: 1000;
    left: 0px;
    top: 42px;
    width: calc(100% - 50px);
}

.suggestions li {
    padding: 10px;
    cursor: pointer;
}

.suggestions li:hover {
    background-color: #eee;
}


.step-data-adresse {
    font-size: 1.4rem !important;
}

.adresse-container {
    position: relative;
    display: flex;
    width: 70%;
    margin-left: 20px;
    margin: auto;
}

.adresse-container input {
    flex-grow: 1;
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

.adresse-container img {
    filter: brightness(100%);
    margin-left: 10px;
    cursor: pointer;
    position: relative !important;
    top: 10% !important;
    padding: none !important;
    border: none !important;
    width: 40px;
    height: 40px;
}

/* Progress bar styles */
.progress-bar-container {
    width: 100%;
    background-color: #ddd;
    height: 10px;
    border-radius: 5px;
    margin: 20px 0;
}

.progress-bar {
    height: 100%;
    background-color: #007bff;
    width: 0;
    border-radius: 5px;
    transition: width 0.3s ease;
}
