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

body {
    font-family: "Segoe UI", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #ffffff;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

/* HEADER */
.header {
    background: #0a2a43;
    padding: 20px 0;
    color: white;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 26px;
    font-weight: 600;
}

.nav {
    display: flex;
    gap: 20px;
}

.nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.nav a:hover {
    text-decoration: underline;
}

/* HERO */
.hero {
    background: #f2f2f2;
    padding: 60px 0;
    text-align: center;
}

.hero h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #0a2a43;
}

/* PRESENTATION */
.presentation {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 40px;
    margin: 60px auto;
}

.presentation-block {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.img-wrapper {
    width: 100%;
    height: 260px; /* même hauteur pour les deux images */
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    margin-bottom: 20px;
}

.img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* garantit même taille visuelle */
}

.presentation-block h3 {
    color: #0a2a43;
    margin-bottom: 10px;
    font-size: 22px;
}

.presentation-block p {
    flex-grow: 1; /* équilibre la hauteur des blocs */
    font-size: 17px;
    line-height: 1.5;
}

/* CONTENT */
.content {
    padding: 40px 0;
    font-size: 18px;
}

.content p {
    margin-bottom: 20px;
}

.citation {
    font-style: italic;
    text-align: center;
    margin-top: 40px;
    color: #0a2a43;
}

.citation span {
    display: block;
    margin-top: 5px;
    font-weight: bold;
}

/* FOOTER */
.footer {
    background: #0a2a43;
    color: white;
    padding: 20px 0;
    margin-top: 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-nav {
    display: flex;
    gap: 20px;
}

.footer-nav a {
    color: white;
    text-decoration: none;
}

.footer-nav a:hover {
    text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 800px) {
    .presentation {
        flex-direction: column;
        align-items: center;
    }

    .header-content,
    .footer-content {
        flex-direction: column;
        gap: 15px;
    }

    .nav {
        flex-wrap: wrap;
        justify-content: center;
    }
}
/* CONTACT PAGE */
.contact-section {
    display: flex;
    gap: 50px;
    margin: 60px auto;
}

.contact-info {
    flex: 1;
    background: #f2f2f2;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.contact-info h3 {
    color: #0a2a43;
    margin-bottom: 15px;
}

.contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form label {
    font-weight: 600;
    color: #0a2a43;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
}

.btn {
    background: #0a2a43;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
}

.btn:hover {
    background: #08304f;
}

/* RESPONSIVE */
@media (max-width: 800px) {
    .contact-section {
        flex-direction: column;
    }
}
