/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #F9F9F9;
    color: #333;
    line-height: 1.6;
    font-size: 16px;
}

.container {
    width: 85%;
    margin: 0 auto;
}

/* Header */
header {
    background-color: #E60000; /* Rouge vif Maltesers */
    color: #fff;
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

header .logo h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

.navbar {
    list-style: none;
    padding: 0;
    text-align: center;
    margin-top: 15px;
}

.navbar li {
    display: inline-block;
    margin: 0 20px;
}

.navbar a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2rem;
    text-transform: uppercase;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.navbar a:hover {
    background-color: #f5a623; /* Jaune Poulain */
    color: #fff;
}

/* Main Content */
.content {
    padding: 50px 0;
    background-color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin-top: 20px;
}

.content h2 {
    color: #E60000;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.content ul {
    margin: 20px 0;
    list-style-type: disc;
    margin-left: 20px;
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
}

table th, table td {
    border: 1px solid #ddd;
    padding: 15px;
    text-align: left;
    font-size: 1rem;
}

table th {
    background-color: #f5a623; /* Jaune Poulain */
    color: #fff;
}

table tr:nth-child(even) {
    background-color: #f9f9f9;
}

table tr:hover {
    background-color: #f1f1f1;
}

/* Testimonials Section */
.testimonials {
    background-color: #f5a623; /* Rouge vif Maltesers */
    color: #fff;
    padding: 50px 0;
    text-align: center;
}

.testimonials blockquote {
    font-size: 1.3rem;
    font-style: italic;
    margin: 30px 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials p {
    font-size: 1.1rem;
    font-weight: 600;
}

/* Footer */
footer {
    background-color: #2c2c2c;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    margin-top: 50px;
}

footer .social-media {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

footer .social-media li {
    display: inline-block;
    margin: 0 10px;
}

footer .social-media a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

footer .social-media a:hover {
    color: #f5a623; /* Jaune Poulain */
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        width: 90%;
    }

    .navbar {
        text-align: left;
    }

    .navbar li {
        display: block;
        margin: 10px 0;
    }

    .content h2 {
        font-size: 2rem;
    }

    .content p {
        font-size: 1rem;
    }

    footer .social-media {
        margin-top: 30px;
    }
}

