body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

header {
    position: relative;
    width: 100%;
    height: 340px; /* Augmenter la hauteur de 300px à 340px */
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.header-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.baseline {
    margin-top: 100px;
}

.baseline p {
    font-size: 36px; /* Taille de la police plus grande */
    font-weight: bold; /* Texte en gras */
    line-height: 1.2;
    color: #fff;
    margin: 0;
}

main {
    max-width: 1200px;
    margin: 2em auto;
    padding: 2em;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center; /* Centrer le texte */
}

.intro {
    background-color: #f9f9f9; /* Fond différent pour la section intro */
    padding: 2em;
    border-radius: 4px;
    margin-bottom: 2em;
}

.products {
    background-color: #023753; /* Fond différent pour la section produits */
    padding: 2em;
    border-radius: 4px;
    margin-bottom: 2em;
}

.pictos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 2em;
}

.picto-item {
    text-align: center;
    flex: 1 1 120px;
    max-width: 120px;
    box-sizing: border-box;
}

.picto-item img {
    width: 100%;
    height: auto;
}

.picto-item p {
    color: white; /* Set text color to white */
}

.product-columns {
    display: flex;
    justify-content: space-between;
    margin-top: 2em;
    gap: 15px; /* Espace de 15px entre les colonnes */
}

.product-column {
    width: 48%;
    text-align: left;
    background-color: #fff;
    padding: 1em;
    padding-bottom: 1em; /* Increase bottom padding */
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: relative; /* Position relative pour placer les boutons */
    min-height: calc(100% + 20px); /* Increase container height by 20px */
}

.product-column h3 {
    color: orange; /* Couleur des titres en orange */
}

.product-column .cta-button {
    margin-right: 20px; /* Marge de 20px à droite */
    position: absolute;
    bottom: 20px; /* Placer les boutons en bas des colonnes */
    right: 20px; /* Placer les boutons à droite des colonnes */
}

.cta {
    background-color: #023753; /* Fond bleu foncé pour la section CTA */
    padding: 1em;
    border-radius: 4px;
    margin-bottom: 2em;
    color: white; /* Typo blanche */
}

.cta h2 {
    color: white; /* Couleur du titre en blanc */
}

.cta .contact-text {
    background-color: transparent; /* Enlever le fond bleu */
    color: white; /* Changer la typo en blanc */
}

h1 {
    color: #fff;
}
h2 {
    color: #fff;
}

ul {
    padding-left: 20px;
    text-align: left; /* Pour aligner à gauche les éléments de la liste */
    display: inline-block; /* Pour centrer la liste elle-même */
}

.cta-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #007BFF;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #0056b3;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 20px;
}

.contact-text {
    flex: 1 1 100%;
    padding: 20px;
    text-align: left; /* Aligner à gauche */
    margin-bottom: 20px; /* Espace en bas pour les petits écrans */
}

.contact-map {
    flex: 1 1 100%;
}

/* Ajout de padding à droite pour le texte */
.contact-text p {
    padding-right: 20px;
}

/* Responsive styles */
@media (min-width: 768px) {
    .contact-text {
        flex: 1 1 48%;
        margin-bottom: 0;
    }
    .contact-map {
        flex: 1 1 48%;
    }
}

@media (max-width: 767px) {
    .product-columns {
        flex-direction: column;
        align-items: center;
    }
    .product-column {
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
        padding-bottom: 30px; /* Add extra padding for buttons */
    }
    .cta-button img {
        height: 60px; /* Adjust the image height */
    }
    .picto-item p {
        display: none; /* Hide text under images */
    }
}
