﻿.journey-header-wrapper,
.journey-text {
    width: 100%;
    max-width: 1000px;
}

.journey-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    padding: 0 20px;
}

.journey-header {
    font-size: 32px;
    text-align: center;
    margin-bottom: 10px;
}

.journey-divider {
    border: none;
    border-top: 2px solid #000;
    width: 75px;
    margin: 0 auto;
}

.journey-content {
    flex: 1 1 65%;
    max-width: 750px;
}

.journey-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
}

.journey-section {
    flex: 1 1 60%; /* Takes up 60% of the width */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    gap: 20px;
}

.journey-text {
    flex: 2 1 65%;
    font-size: 18px;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 900px;
}

    .journey-text p {
        margin-bottom: 20px;
        width: 100%;
    }

/* Responsive tweaks */
@media (max-width: 768px) {
    .journey-header {
        width: 40%; /* Match journey-text width */
        margin: 0 auto 10px auto; /* Center horizontally */
        text-align: center;
    }

    .journey-flex {
        flex-direction: column;
        align-items: center;
    }

    .journey-content,
    .about-video {
        flex: 1 1 100%;
        max-width: 100%;
    }
}
