.ancrages-contact-section {
    display: flex;
    gap: 30px;
}

.contact-section-first-column {
    width: 50%;
    padding: 50px;
    background-color: #F7F7F7;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-section-image {
    width: 50%;
    height: 100%;
    border-radius: 30px;
    object-fit: cover;
}

p.contact-section-list {
    font-size: 34px;
    font-weight: 400;
    line-height: 46px;
    margin-bottom: 30px;
}

.yellow-point::before {
    content: "";
    display: inline-block;
    width: 13px;
    height: 13px;
    border-radius: 13px;
    background-color: #FFB946;
    vertical-align: middle;
    margin-right: 20px;
}

.blue-point::before {
    content: "";
    display: inline-block;
    width: 13px;
    height: 13px;
    border-radius: 13px;
    background-color: #3F63FF;
    vertical-align: middle;
    margin-right: 20px;
}

.green-point::before {
    content: "";
    display: inline-block;
    width: 13px;
    height: 13px;
    border-radius: 13px;
    background-color: #64D796;
    vertical-align: middle;
    margin-right: 20px;
}

p.contact-section-text {
    font-size: 20px;
    line-height: 31px;
    color: #00000080; 
    margin-bottom: 30px;
  
}

/* RESPONSIVE */

@media screen and (max-width: 980px) {
    .ancrages-contact-section {
        flex-direction: column;
    }
    
    .ancrages-contact-section span {
        display: flex;
        align-items: center;
    }

    .ancrages-contact-section span:not(:last-child) {
        margin-bottom: 5px;
    }

    .contact-section-first-column {
        width: 100%;
        padding: 30px;
    }

    .contact-section-image {
        width: 100%;
        height: 100%;
    }

    p.contact-section-list {
        font-size: 20px;
        line-height: 24px;
        margin-bottom: 15px;
    }

    p.contact-section-list br {
        display: none; 
    }

    .yellow-point::before,
    .blue-point::before,
    .green-point::before {
        width: 8px;
        height: 8px;
        margin-top: 2px;
    }

    p.contact-section-text {
        font-size: 15px;
        line-height: 24px;
        margin-bottom: 15px;
    }

}
