body {
    font-family: Arial, sans-serif;
    margin: 0;
    margin-top: 150px;
    padding: 0;
    background-color: #EBF1FF;
    text-align: center;
}
.navbar {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: auto;
    max-width: 1000px;
    background-color: #0057b8; /* Bleu similaire à ton image */
    padding: 15px 30px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    color: white;
    font-size: 18px;
    font-weight: bold;
    font-family: Playfair;
}

.logo img {
    width: 50px; /* Ajuste la taille du logo */
    height: 50px;
    margin-right: 10px;
    border-radius: 50%; /* Pour un effet arrondi */
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    font-weight: bold;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #D99307;
    font-size: 20px;
}

/* Menu burger */
.burger {
    display: none;
    font-size: 26px;
    color: white;
    cursor: pointer;
}

@media screen and (max-width: 768px) {
    .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        right: 0;
        background-color: #0057b8;
        width: 200px;
        border-radius: 15px;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
        padding: 10px 0;
        opacity: 0;
        transform: scaleY(0);
        transform-origin: top;
        transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    }

    .nav-links.active {
        opacity: 1;
        transform: scaleY(1);
    }

    .nav-links li {
        text-align: center;
        padding: 10px 0;
    }

    .burger {
        display: block;
    }
}

.box {
    background: white;
    padding: 20px;
    margin: 50px auto;
    display: block;
    width: 70%;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
    border: 5px solid #D99307;
}

.logo-img {
    display: block;
    margin: 0 auto;
    height: 200px;
}

.btn {
    background-color: #0056b3;
    color: white;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: auto;
    height: auto;
    width: auto;
    padding: 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
}
.btn:hover {
    color: #D99307;
}

.details {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 20px;
    width: 100%;
    box-sizing: border-box;
}
.details div {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 180px;
    flex: 1 1 180px;
    box-sizing: border-box;
}
.app-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    width: 100%;
    box-sizing: border-box;
}

.details div {
    flex: 1 1 100px; /* Assure que les éléments s'ajustent bien */
}

.app-links img {
    width: auto;
    height: 50px;
}

@media screen and (max-width: 600px) {
    .details {
        flex-direction: column;
        align-items: center;
    }
    .details div {
        width: 100%;
        min-width: unset;
        flex: unset;
        align-items: center;
    }
    .details svg {
        width: 70px;
        height: 70px;
    }
    .btn {
        width: 100%;
    }
    .app-links {
        flex-direction: column;
        align-items: center;
    }
    .app-links img {
        width: 70%;
        height: auto;
    }
}

