.info {
    padding-top: 120px;
	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; /* optional, aligns nicely with text */
}

.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: space-around;
    margin-top: 96px;
    border-top: 1px solid #ccc;
    grid-template-columns: repeat(4, 1fr);
}

.section {
    max-width: 23%;
    padding: 20px;
    position: relative;
}

.section img {
    width: 100%;
    height: auto;
    border-radius: 3px;
}

.section h2 {
    font-size: 20px;
    font-weight: bold;
    margin-top: 20px;
}

.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: #ACACAC;
}
.section:last-child::after {
    display: none;
}

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

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