#guide {
    background-image: url(/assets/img/newsletter/hero.jpg);
    background-position: center;
    background-size: cover;
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
}

#guide::after {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    content: "";
    position: absolute;
    top: 0;
    left: 0;
}

#guideContent {
    padding: 20px;
    margin-left: 60px;
    position: relative;
    z-index: 1;
}

#guideIcon {
    margin-bottom: 20px;
    width: 60px;
}

#guideTitle {
    font-weight: 900;
    color: #fff;
    font-size: 37px;
    margin-bottom: 13px;
}

#guideTitle span {
    position: relative;
}

#guideTitle span::before {
    content: "";
    width: 108%;
    height: 18px;
    background-color: #b5968c;
    position: absolute;
    z-index: -1;
    bottom: 3px;
    left: -4px;
}

#guideDescription {
    color: white;
    margin-bottom: 20px;
    line-height: 1.5;
    max-width: 540px;
}

#guideFormEmail {
    background-color: #f5f0ed;
    color: #9f8573;
}

#guideFormButton {
    background-color: #9f8573;
    color: white;
}

@media (max-width: 800px) {
    #guideContent {
        margin-left: 0;
        text-align: center;
        padding: 80px 20px;
    }

    #guideTitle {
        font-size: 33px;
        line-height: 1.1;
    }
}