.jumbotron-header {
    height: 400px;
    background: url("/resources/jumbotron-header.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: var(--neutral-white);
}

.jumbotron-footer {
    height: 300px;
    background: url("/resources/jumbotron-footer.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: var(--black-text);
}

.section-container {
    display: flex;
    align-items: center;
    padding-inline: 7.5rem;
    color: var(--black-text);
    gap: 5rem;
    justify-content: center;
}

.section-container:nth-of-type(3) {
    height: 500px;
    background-color: var(--screen-bg);
}

.section-container__copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 40%;
}

.section-container__copy h3 {
    width: 78%;
}

.section-container__image img {
    display: flex;
    max-width: 100%;
    height: auto;
}

/* .section-container__image img:first-child {
    position: relative;
    top: -4rem;
}

.section-container__image img:last-child {
    position: absolute;
    right: 30%;
} */

.faq {
    padding-block: 6rem;
    gap: 1.25rem;
}

.faq-questions {
    display: flex;
    flex-direction: column;
    width: 60%;
    gap: 10px;
    overflow: hidden;
}

summary {
    display: flex;
    background-color: var(--screen-bg);
    font-size: 20px;
    color: var(--black-text);
    padding: 15px 20px;
    gap: 20px;
    justify-content: space-between;
    cursor: pointer;
}

summary div {
    display: flex;
}

summary span {
    color: var(--blue-500);
    font-weight: 600;
}

.details-content {
    display: flex;
    flex-direction: column;
    padding: 15px 20px;
    gap: 20px;
    color: var(--black-text);
}

.details-content div:has(img) {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.details-content div img {
    height: max-content;
    max-width: 100%;
}

.details-content ol {
    padding-inline-start: 16px;
}

.details-content ol ul {
    padding-inline-start: 16px;
    list-style-type: disc;
}

@media only screen and (max-width: 1500px) {
    .section-container__copy h3 {
        text-wrap: balance;
    }
}

@media screen and (max-width: 1200px) {
    .section-container {
        padding-inline: 4rem;
        gap: 2rem;
    }

    .section-container__copy h3 {
        width: 100%;
    }

    .section-container__image img {
        max-height: 60vh;
    }
}

@media screen and (max-width: 992px) {
    .section-container {
        flex-direction: column;
        padding: 3rem;
        gap: 1rem;
    }

    .section-container__copy,
    .section-container__copy h3 {
        width: 100%;
    }

    .section-container:nth-of-type(3) {
        height: auto;
    }

    .faq {
        padding-block: 3rem;
    }

    .faq-questions {
        width: 80%;
    }

    .section-container__image img {
        max-height: none;
    }
}

@media screen and (min-width: 820px) and (max-width:992px) {
    .section-container__copy {
        padding-inline: 2rem;
    }
}