#guide {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: #efece8;
}

#guidePicture {
    height: 100%;
    width: 100%;
}

#guideImage {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#guideContent {
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    min-width: fit-content;
}

#guideIcon {
    margin-bottom: 20px;
    width: 100%;
    max-width: 200px;
}

#guideTitle {
    font-size: 37px;
    margin-bottom: 13px;
    font-family: 'Playfair Display', serif;
    text-align: center;
}

#guideSubtitle {
    font-size: 25px;
    margin-bottom: 25px;
    font-weight: 800;
}

#guideDescription {
    margin-bottom: 50px;
    line-height: 1.5;
    text-align: center;
    max-width: 540px;
}

#guideFormEmail {
    background-color: white;
    color: #aa6348;
}

#guideFormButton {
    background-color: #aa6348;
    color: white;
}

@media (max-width: 800px) {
    #guide {
        grid-template-columns: 1fr;
    }

    #guidePicture {
        order: 1;
        position: relative;
        top: -25px;
    }

    #guideContent {
        padding-bottom: 0;
    }

    #guideIcon {
        max-width: 150px;
    }

    #guideTitle {
        font-size: 30px;
    }

    #guideSubtitle {
        margin-bottom: 15px;
        font-size: 20px;
    }
}