* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Montserrat", sans-serif;
    background-color: #f5f5f5;
}

.banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #2c3e50;
    color: white;
    padding: 30px 60px;
    position: relative;
    overflow: hidden;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(0,0,0,0.2));
    pointer-events: none;
}

.logo-section {
    flex: 1;
    z-index: 2;
}

.logo-image {
    max-height: 80px;
    height: auto;
    width: auto;
    max-width: 300px;
}


.content-section {
    flex: 1;
    text-align: right;
    z-index: 2;
    max-width: 450px;
}

.content-section p {
    font-size: 16px;
    line-height: 1.4;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Images d'arrière-plan (optionnel) */
.banner-image {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 50%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 1;
}

/* Responsive */
/* Responsive */
@media (max-width: 768px) {
    .banner {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .logo-section {
        text-align: center;
    }

    .logo-image {
        max-height: 60px;
    }

    .content-section {
        text-align: center;
        margin-top: 30px;
        max-width: 100%;
    }

    .content-section p {
        font-size: 14px !important;
    }
}