.seo-block {
    background: transparent;

}

.seo-title {
    text-align: center;
}

.seo-lead {

}

.seo-content {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.5s ease, opacity 0.5s ease;

    &.open {
        max-height: 3000px;
        opacity: 1;
    }
}

.seo-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
