.MainContainerCoop {
    max-width: 1200px;
    width: 100%;
    margin: 32px auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 24px;
}
.newsDivider {
    width: 100%;
    height: 1px;
    background-color: #E5E5E5;
    position: relative;
    max-width: 1160px;
}

.newsDivider::after {
    content: '';
    width: 10%;
    background-color: rgba(198, 165, 99, 1);
    position: absolute;
    height: 6px;
    left: 50%;
    transform: translateX(-50%);
    top: -6px;
}
.contentTitle {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    line-height: 64px;
    font-family: 'Vollkorn';
}

.column-flex {
    justify-content: start;
    align-items: start;
    gap: 5px;
}

.list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.list-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    line-height: 28px;
}

.number {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(to bottom, #B91C1C, #530D0D);
    flex-shrink: 0;
    color: white;
}
.internationalCoopContainer {
    display: flex;
    gap: 24px;
}
.left-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.img img {
    width: 100%;
}
.contact-info {
    display: flex;
    justify-content: flex-start;
    gap: 24px;
}
.contact-item {
    display: flex;
    gap: 10px;
    align-items: center;
    font-weight: 600;
}
.contact-item img {
    width: 40px;
    height: 40px;
}
.right-section {
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 24px;
    font-family: 'Inter';
    font-size: 18px;
    line-height: 28px;
}
@media screen and (max-width:768px) {
    .internationalCoopContainer{
        flex-direction: column;
        align-items: center;
    }
    .contact-info{
        font-size: 14px;
    }
    .list{
        padding: 16px;
    }
}