body{
    color: #FFFF;
}

* {
    box-sizing: border-box;
}

.logos img {
    width: 120px;     
    height: 90px;     
    object-fit: contain;
    margin: 0 10px;
    display: inline-block;
    vertical-align: middle;
    border-radius: 8px; 
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

.hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: 
        linear-gradient(120deg, rgba(16,22,36,0.95), rgba(26,35,54,0.95)), 
        url("../Vue/assets/bg.jpg") center center / cover no-repeat;
    background-attachment: scroll;
    box-shadow: 0 2px 24px rgba(0, 0, 0, 0.08);
    z-index: 1;
    margin-bottom: 40px;
    overflow-x: hidden;
}

.hero-content {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding: 40px 20px;
    background: rgba(18, 30, 54, 0.85);
    border-radius: 18px;
    box-shadow: 0 4px 32px 0 rgba(14, 14, 14, 0.1);
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
    transform: translateY(20px);
    margin-top: auto;
    margin-bottom: auto;
    overflow-x: hidden;
}

.hero-content h1 {
    font-size: 2.6rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 18px;
    color: #fff;
    margin-top: -10px;
}

.hero-content .hero-subtitle {
    font-size: 1.15rem;
    color: #bfc9d8;
    margin-bottom: 32px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.cta-button {
    background: #fff;
    color: #007bff;
    padding: 12px 32px;
    border-radius: 25px;
    font-weight: 600;
    text-transform: none;
    font-size: 1.05rem;
    border: none;
    box-shadow: 0 2px 12px rgba(0,123,255,0.08);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.cta-button:hover {
    background: #007bff;
    color: #fff;
    box-shadow: 0 6px 25px rgba(0, 114, 255, 0.18);
    transform: translateY(-2px);
}

.section {
    text-align: center;
    padding: 0px 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.section h2 {
    position: relative;
    z-index: 1;
}
.section h2::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 80%;
    background: radial-gradient(circle, rgba(0, 183, 255, 0.216), transparent 70%);
    transform: translate(-50%, -50%);
    z-index: -1;
    border-radius: 50%;
}


.section p,
.section ul {
    font-size: 1.2rem;
    color: #ccc;
}

.section ul {
    list-style: none;
    padding: 0;
}

.section ul li {
    margin: 10px 0;
}

.highlight {
    background: rgba(18, 30, 54, 0.85);
    border-left: 4px solid #00b7ff;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 0 20px rgba(0, 22, 31, 0.1);
    margin-bottom: 50px;
}

.marques .logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-top: 30px;
}

.marques .logos img {
    height: 40px;
    opacity: 0.8;
    margin: 10px 15px;
    transition: all 0.3s ease-in-out;
}

.marques .logos img:hover {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.localisation img {
    max-width: 100%;
    margin-top: 20px;
    border-radius: 10px;
    border: 2px solid #2360a8;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.section-row {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: flex-start;
    max-width: 1100px;
    margin: 0 auto 60px auto;
    flex-wrap: wrap;
}
.section-col {
    display: flex;
    flex-direction: column;
    flex: 1 1 350px;
    min-width: 300px;
    gap: 40px;
}
.section-row .section {
    flex: 1 1 350px;
    min-width: 300px;
    margin: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
@media (max-width: 900px) {
    .section-row {
        flex-direction: column;
        gap: 0;
    }
    .section-row .section,
    .section-col {
        margin-bottom: 10px;
        min-width: 100%;
        min-width: 0;
    }
    .section-col {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.4rem;
    }

    .cta-button {
        padding: 10px 24px;
        font-size: 1rem;
    }

    .section {
        padding: 40px 20px;
    }

    .marques .logos img {
        height: 40px;
    }
}

.hero-content {
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
    transform: translateY(20px);
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    z-index: 1;
}


@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (min-width: 1024px) {
    .hero {
        background-attachment: fixed;
    }
}

