body {
    font-family: Arial, sans-serif;
    background: linear-gradient(to bottom, #f0f4f8, #ffffff);
    margin: 0;
    padding: 0;
    color: #333;
}

.conception-section {
    max-width: 1200px;
    margin: auto;
    padding: 60px 20px;
}

.conception-header {
    text-align: center;
    margin-bottom: 40px;
}

.conception-header h2 {
    font-size: 2.5em;
    color: #005F73;
    margin-bottom: 10px;
}

.conception-header p {
    font-size: 1.1em;
}

.gallery {
    flex-wrap: wrap;
    justify-content: center;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    margin-bottom: 60px;
    gap: 30px;
    /* au lieu de 60px */

}


.gallery img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    border-radius: 12px;
    max-width: 100%;
    height: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
    max-height: 200px;
}


.gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.form-container {
    background-color: #ffffffcc;
    backdrop-filter: blur(4px);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    text-align: center;
    color: #005F73;
    margin-bottom: 30px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

form label {
    font-weight: bold;
    margin-bottom: 5px;
}

form input,
form select,
form textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 12px;
    font-size: 1em;
    width: 100%;
}

form button {
    background-color: #049FBA;
    color: white;
    border: none;
    padding: 14px;
    font-size: 1.1em;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.3s ease;
}

form button:hover {
    background-color: #0a9396;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .gallery img {
        width: 100%;
        height: auto;
    }

    .conception-header h2 {
        font-size: 2em;
    }

    .form-container {
        padding: 30px 20px;
    }
}

@media screen and (max-width: 480px) {
    .conception-header h2 {
        font-size: 1.6em;
    }

    .conception-header p {
        font-size: 1em;
    }

    .form-container {
        padding: 20px 15px;
    }

    form button {
        font-size: 1em;
        padding: 12px;
    }
}