* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background-color: black;
    color: white;
}

/* NAVBAR */
header {
    background-color: #C41BAB;
    padding: 10px 20px;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-links {
    display: flex;
    gap: 15px;
}

.nav-links a {
    color: black;
    text-decoration: none;
    background-color: #C41BAB;
    padding: 6px 12px;
    font-weight: bold;
}

.nav-links a:hover {
    background-color: #a0178f;
}

.nav-links .active {
    background-color: rgb(150, 6, 54);
}

.time {
    color: black;
}


/* INDEX */
.logo_index {
    display: block;
    margin: auto;
    margin-top: 200px;
}


/* OFFRES */
.offres {
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
    text-align: justify;
}

.offres>.item {
    width: 33.33%;
    padding: 20px;
}

.offres>.item img {
    width: 90%;
    max-width: 300px;
}



/* ONLY-PART */
.only_part_page {
    display: flex;
    flex-wrap: wrap;
    margin: 20px;
}

.only_part_page>.left {
    width: 40%;
    text-indent: 20px;
}

.only_part_page>.left img {
    width: 100%;
    max-width: 500px;
}

.only_part_page>.right {
    width: 55%;
}

.logo_only_part {
    margin: auto;
}

.separator {
    width: 3px;
    background-color: #a000a0;
}


.card {
    background-color: #111;
    padding: 15px;
    border-radius: 6px;
}

.logo {
    margin: 10px;
}

.logo img {
    margin-right: 50px;
}


/* LIVRAISON */
.livraison img {
    width: 200px;
}

.livraison h1 {
    text-align: center;
    margin-top: 20px;
}


.partenaires {
    display: flex;
    flex-wrap: wrap;
}

.partenaires>.item {
    width: 33.33%;
    padding: 20px;
}


/*REMBOURSEMENT RETOUR*/
.remboursement-retour {
    display: flex;
    flex-wrap: wrap;
    margin: 20px;
}

.remboursement-retour>.left {
    width: 40%;
}

textarea {
    display: block;
    margin: 10px;
}

.remboursement-retour>.right {
    width: 55%;
    margin-left: 20px;
}



/* RESPONSIVE */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 10px;
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
    }

    .nav-links a {
        text-align: center;
    }

    .offres {
        flex-direction: column;
        gap: 10px;
    }

    .offres>.item {
        width: 100%;
    }

    .only_part_page,
    .remboursement-retour {
        flex-direction: column;
        gap: 10px;
    }


    .only_part_page>.left,
    .remboursement-retour>.left {
        width: 100%;
    }


    .only_part_page>.right,
    .remboursement-retour>.right {
        width: 100%;
    }

    .separator {
        display: none;
    }

    .partenaires {
        flex-direction: column;
        gap: 10px;
    }

    .partenaires>.item {
        width: 100%;
    }



}