/* Style global */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f9fb;
    color: #333;
}

h1, h2, h3 {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Header */
header {
    background-color: #0277bd; /* Bleu professionnel */
    padding: 15px 30px;
    color: white;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    margin: 0;
    font-size: 2.5em;
}

.contact-info p {
    font-size: 1.1em;
}

/* Sections */
section {
    padding: 40px 20px;
    margin: 20px 0;
}

.section-title h2 {
    text-align: center;
    font-size: 2.5em;
    color: #0277bd;
    margin-bottom: 20px;
}

p {
    font-size: 1.2em;
    line-height: 1.6;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Nos Actions */
.actions-container {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
}

.action-item {
    text-align: center;
    max-width: 280px;
}

.action-img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.action-img:hover {
    transform: scale(1.05);
}

h3 {
    font-size: 1.5em;
    margin-top: 10px;
    color: #0277bd;
}

/* Témoignages */
.testimonials-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.testimonial-item {
    background-color: #ffffff;
    border: 1px solid #ddd;
    padding: 20px;
    margin: 10px;
    max-width: 400px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-style: italic;
    color: #555;
}

/* Footer */
footer {
    background-color: #0277bd;
    color: white;
    text-align: center;
    padding: 20px;
}

footer p {
    margin: 0;
    font-size: 1.1em;
}

footer a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .actions-container {
        flex-direction: column;
        align-items: center;
    }

    .action-item {
        margin-bottom: 20px;
    }

    .testimonials-container {
        flex-direction: column;
    }

    .testimonial-item {
        max-width: 100%;
    }
}
