/* Hero Section */

.hero-about {
    padding: 2rem 0 0 0;
    margin: auto;
    max-width: 1224px;
}

.hero-about .section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.hero-about .content-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.hero-about img {
    margin: auto;
    max-width: 48px;
}

.hero-about .text-column {
    width: 30%;
    text-align: center;
}

.hero-about .text-column p {
    line-height: 1.6;
}

/* Training Options Section */
.training-options {
    padding: 2rem 0;
}

.training-options .section-title {
    text-align: center;
    margin-bottom: 1rem;
}

.training-options .section-subtitle {
    text-align: center;
    display: flex;
    margin: 0 auto 4rem auto;
    width: 80vw;
    max-width: 750px;
}

.options-container {
    display: flex;
    flex-direction: row;
}

.options-grid {
    width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
}

.option {
    text-align: left;
    width: 80%;
}

.option h3 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    color: #F58549;
}

.options-image {
    display: block;
    align-content: center;
    width: 55%;
}

.options-image img {
    width: 100%;
    height: auto;
    max-height: 972px;
    overflow: hidden;
    object-fit: cover;
}

/* Collaboration Process Section */
.collaboration-process .container {
    display: flex;
    align-items: start;
}

.collaboration-process .button-column {
    margin-top: 0.7rem;
    width: 45%;
    padding-right: 7rem;
}

.collaboration-process .section-text {
    margin-bottom: 1rem;
}

.collaboration-process .text-column {
    width: 45%;
}

.collaboration-process .steps {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.collaboration-process .step-row {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    align-items: flex-start;
    margin: 0.8rem 0;
}

.collaboration-process .number-column {
    width: 5%;
    display: flex;
    flex-direction: column;
    font-size: 4.5vw;
    color: #F58549;
    font-weight: 500;
    line-height: 1;
}

/* Space Section */
.space-section {
    margin: 3.5rem 0;
}

.space-grid {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.space-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.space-item:nth-child(odd) .space-image {
    order: 2;
}

.space-item:nth-child(even) .space-image {
    order: 1;
}

.space-item .space-text {
    order: 1;
    width: 45%;
}

.space-image {
    max-width: 542px;
    width: 45%;
    height: auto;
    object-fit: cover;
    overflow: hidden;
}

.space-text h3 {
    font-weight: 700;
    font-size: 1.25rem;
    color: #F58549;
    margin-bottom: 1rem;
}

@media (min-width: 1441px) {

    /* Collaboration Process Section */
    .collaboration-process .number-column {
        font-size: 64px;
    }
}

@media (max-width: 768px) {

    /* Hero Section */
    .hero-about {
        padding: 1rem 0;
    }

    .hero-about .section-title {
        margin-bottom: 2rem;
    }

    .hero-about .content-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .hero-about .text-column {
        width: 90%;
    }

    .hero-about p {
        margin-bottom: 1.5rem;
    }

    /* Training Options Section */
    .training-options .section-title {
        width: 90%;
        margin: 2vw auto 3vw auto;
    }

    .training-options .section-subtitle {
        margin-bottom: 3rem;
        width: 90%;
    }

    .training-options .options-container {
        display: flex;
        flex-direction: column-reverse;
        align-items: center;
    }

    .training-options .options-image {
        width: 90%;
    }

    .training-options .options-grid {
        width: 90%;
        gap: 0.5rem;
    }

    .training-options .option {
        width: 100%;
    }


    /* Collaboration Process Section */
    .collaboration-process .container {
        flex-direction: column;
        align-items: center;
    }

    .collaboration-process .button-column {
        width: 90%;
        margin-bottom: 2rem;
        padding-right: 0;
        text-align: center;
    }

    .collaboration-process .contact-button {
        margin-top: 2rem;
    }

    .collaboration-process .text-column {
        width: 90%;
    }

    .collaboration-process .steps {
        margin: 0.5rem 0 1rem 0;
        padding: 0;
        text-align: center;
    }

    .collaboration-process .step-row {
        margin-top: 0;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .collaboration-process li {
        margin-bottom: 1.2rem;
    }

    .collaboration-process .number-column {
        font-size: 32px;
    }

    /* Space Section */
    .space-section {
        margin: 4rem 0;
    }

    .space-grid {
        gap: 3rem;
    }

    .space-item {
        flex-direction: column-reverse;
        width: 100%;
    }

    .space-item .space-image,
    .space-item .space-text {
        order: initial;
        width: 90%;
        max-width: 542px;
    }
}