main > header {
    background-color: var(--labodoc-beige);
}

main > header > div {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

main > header > div > img {
    width: 600px;
    height: 400px;
}

section {
    padding-top: 30px;
    padding-bottom: 24px;
}

details {
    border-bottom: 2px solid;
    padding: 10px;
    cursor: pointer;
}

details div {
    margin: 20px 0;
}

details p {
    margin: 0;
}

.split {
    display: flex;
}

.split section {
    flex: 1;
}

.split section:first-child {
    background-color: var(--labodoc-light-blue);
    border-radius: 0 50px 50px 0;
}

@media screen and (max-width: 1000px) {
    main > header > div > img {
        width: 400px;
        height: 266px;
    }

    .split {
        display: block;
    }
}

@media screen and (max-width: 700px) {
    main > header > div > img {
        display: none;
    }
}
