* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #000;
    color: white;
    line-height: 1;
}

/* Header styles */
.top-header {
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: #000;
    border-bottom: 1px solid #ffffff;
}

.logo-left, .logo-right {
    width: 150px;
    height: 100px;
}

.logo-left img, .logo-right img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.site-title {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    flex-grow: 1;
    color: white;
    text-decoration: none;
}

/* Navigation styles */
.main-nav {
    font-family: 'Oswald';
    background-color: #000000;
    padding: 15px 0;
    margin-bottom: 30px;
}

.main-nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 50px;
}

.main-nav a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
}

.main-nav a.active {
    color: red;
}

/* Main content styles */
.main-content {
    text-align: center; /* Centre le contenu textuel */
    max-width: 600px; /* Limite la largeur du texte */
    margin: 0 auto; /* Centre horizontalement */
    text-align: center; /* Aligne le texte au centre */
    padding: 20px; /* Ajoute de l'espace autour */
}

/* Image styles */
.section-image {
    display: block;
    margin: 20px auto; /* Centre les images */
    max-width: 98%;
    height: auto;
}

/* Specific sections */
.licencies-section, 
.analyse-section, 
.principales-enseignes-section, 
.impact-section {
    margin-bottom: 40px;
}

h1, h2 {
    color: white;
}

ul {
    text-align: left; /* Texte aligné à gauche pour les listes */
    margin: 20px auto;
    max-width: 800px;
}

li {
    margin-bottom: 10px;
}

/* Responsive design */
@media (max-width: 768px) {
    .top-header {
        padding: 15px;
    }

    .logo-left, .logo-right {
        width: 60px;
    }

    .site-title {
        font-size: 24px;
    }

    .main-nav ul {
        gap: 20px;
        padding: 0 15px;
    }

    .main-content {
        padding: 0 10px;
    }
}
.footer {
    background-color: #111;
    text-align: center;
   
color: white;
    


   
text-align: center;
    
   
padding: 20px 0;
    margin-top: 50px;
    border-top: 1px solid #333;
}



.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}



.footer p {
    
  
margin-bottom: 10px;
    font-size: 14px;
}

.footer-link {
    color: #f5a623;
   

   text-decoration: none;
    
   
font-size: 14px;
}



.footer-link:hover {
    


    text-decoration: underline;
}

