.cc-journey-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.cc-journey-left {
    width: 45%;
}

.cc-journey-right {
    width: 55%;
}

.cc-timeline {
    position: relative;
    padding-left: 60px;
    /* space for line + icon */
    border-left: 2px solid #e0e0e0;
}


.cc-timeline-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.cc-timeline-item:first-child {
    align-items: start;
}

.cc-timeline-item:last-child {
    align-items: end;
}

.cc-timeline-icon {
    position: absolute;
    left: -20px;
    /* pull icon over border line */
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #e0e0e0;
    /* optional nice touch */
    display: flex;
    align-items: center;
    justify-content: center;
}

.cc-company-card {
    padding: 20px;
    background: #f8f8f8;
    border-radius: 12px;
    margin-bottom: 20px;
}

.cc-map iframe {
    width: 100%;
    height: 300px;
    border: 0;
    border-radius: 12px;
}

@media(max-width: 991px) {
    .cc-journey-wrapper {
        flex-direction: column;
    }

    .cc-journey-left,
    .cc-journey-right {
        width: 100%;
    }
}