.info {
    padding-top: 100px;
    padding-bottom: 50px;
}

.info-heading {
    align-items: center;
    text-align: center;
    margin-bottom: 70px;
    text-transform: uppercase;
    font-family: 'Work Sans', serif;
    font-weight: 800;
    font-size: 48px;
    line-height: 140%;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.flag img {
    width: 100px;
    height: auto;
    vertical-align: middle;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.info-content {
    margin-right: 30px;
    max-height: 580px;
}

.info-content-header {
    font-weight: 600;
    line-height: 150%;
    margin-bottom: 15px;
}

.info-text {
    width: 540px;
    line-height: 32px;
}

.info-text+* {
    margin-top: 64px;
}

.info-btn {
    display: flex
}

.image {
    flex: 1;
    border-radius: 3px;
    overflow: hidden;
    height: 100%;
    width: 100%;
}

.info-sections {
    display: flex;
    justify-content: center;
    margin-top: 50px;
    margin-left: 0px;
    border-top: 0px solid white;
    background-color: white;
    padding: 0px 20px;
    flex-wrap: wrap;
    gap: 20px;
}

.section {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}

.section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.section:hover img {
  transform: scale(1.1); /* увеличение */
}

.section h2 {
    position: absolute;
    inset-inline-start: 60px;
    inset-block-start: 40px;
    bottom: 10px;
    left: 10px;
    margin: 0;
    color: white;
    font-size: 20px;
    font-weight: bold;
    background: rgba(0, 0, 50, 0.5);
    padding: 5px 10px;
    border-radius: 4px;
}

.section p {
    font-size: 16px;
    margin-top: 10px;
}

.section:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background-color: #ffffff;
}

.section:last-child::after {
    display: none;
}

.section {
    flex: 1;
    padding-top: 15px;
    padding-left: 0px;
}

.section:last-child {
    border-right: none;
}