* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Global Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #0B0D59;
    color: #fff;
}

header {
    background-color: skyblue;
    padding: 20px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

header h1 {
    font-size: 24px;
    color: #fff;
}

header nav ul {
    list-style: none;
    display: flex;
}

header nav ul li {
    margin-left: 20px;
}

header nav ul li a {
    color: black;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    border: 2px solid white;
    box-shadow: 0px 0px 19px white;
    background-color: white;
    border-radius: 5px;
    padding: 5px 10px;
}

header nav ul li a:hover {
    text-shadow: 0px 0px 10px white;
    background-color : black;
    color : blue;
}

/* About Section */
#about {
    background-color: #fff;
    padding: 60px 20px;
    color: #333;
}

.about .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.about h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

.about-content {
    font-size: 18px;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 800px;
    text-align: left;
}

.about-content p {
    margin-bottom: 20px;
    color: #555;
}

/* Footer */
.foot {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
}

.containerfooter {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.footer-section {
    flex: 1;
    padding: 10px;
}

.footer-section h3 {
    margin-bottom: 10px;
}

.footer-section a {
    color: #00BFFF;
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
}

.footer-section a:hover {
    text-decoration: underline;
}

.footer-section p {
    margin-bottom: 5px;
}

.title {
    text-shadow: 0px 0px 8px #0B0D59;
    font-size: 33px;
    text-align: center;
}

.about-content ul {
    list-style-type: disc;
    margin-left: 20px;
}

.about-content ul li {
    margin-bottom: 10px;
}

.about h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.about-content p {
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 15px;
}




/* Responsive Styles */
@media (max-width: 768px) {
    header .container {
        flex-direction: column; /* Empile les éléments de l'en-tête verticalement */
        align-items: center;
    }

    header nav ul {
        flex-direction: row; /* Changer la direction en colonne pour mieux s'adapter */
        margin-top: 10px;
        padding: 0; /* Réinitialiser le padding */
        
    }

    header nav ul li {
        margin-left: 0;
        margin-bottom: 10px;
        padding: 5px 0; /* Ajuster le padding */
        border: 1px solid black;
    }

    header nav ul li a {
        padding: 10px; /* Augmente le padding pour un meilleur confort de clic */
        font-size: 14px; /* Ajustez la taille de la police pour les petits écrans */
    }

    #about {
        padding: 40px 10px;
    }

    .about h2 {
        font-size: 28px;
    }

    .about-content {
        font-size: 16px;
    }

    .containerfooter {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-section {
        margin-bottom: 20px;
        width: 100%;
    }

    .footer-section h3 {
        font-size: 16px;
    }

    .footer-section a, .footer-section p {
        font-size: 14px;
    }
}

