.home-section {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    /* max-width: 1200px; */
    margin: 60px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 2px 15px 2px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1s forwards;
}

/* Left section */
.left-head {
    width: 35%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px 0 50px 50px;
}

.bienvenue {
    font-size: 30px !important;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.left-head p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.cta-btn {
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
}

.cta-neuf {
    background-color: #be1212;
    color: white;
}

.cta-occasion {
    background-color: #333;
    color: white;
}

.cta-btn:hover {
    transform: translateY(-5px);
}

.cta-neuf:hover {
    background-color: #e65100;
}

.cta-occasion:hover {
    background-color: #000;
}

/* Right section */
.right-head {
    width: 60%;
    position: relative;
    align-items: center;
    justify-content: center;
    display: flex
;
}
