.info-tab {
    padding-top: 50px;   
}

.info {
    padding-top: 70px;
	padding-bottom: 85px;    
}

/* Tab Bar */
.tabs {
    border-bottom: 1px solid #ACACAC;
}

.tab-list {
    display: flex;
    list-style-type: none;
    justify-content: space-around;
    padding: 0;
    margin: 0;
}

.tab-item {
    padding-bottom: 10px;
    text-align: center;
}

.tab-item a {
    text-decoration: none;
    font-weight: 600;
    color: #141414;
    font-size: 18px;
    display: inline-block;
    padding: 5px;
}

.tab-item a:hover {
    color: #141414; /* Hover color */
}

.tab-item.active a {
    background-color: #f4af00;
    border-radius: 20px;
}

/* Active tab underlined */
.tab-item.active a {
    text-decoration: none;
    border-bottom: none;
}

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

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

.info-content-header{
    font-family: 'Work Sans', serif;
    font-weight: bold;
    font-size: 32px;
    line-height: 150%;
    margin-bottom: 20px;
}

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

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

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

.info-sections {
    display: flex;
    justify-content: space-around;
    margin-top: 96px;
    background-color: #fff;
    border-top: 1px solid #ccc;
    grid-template-columns: repeat(4, 1fr);
}

.section {
    text-align: center;
    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;
}