.content__text-orange
{
    font-size: 24px;
}

@media (max-width: 1023px)
{

    .content__text-orange
    {
        font-size: 16px;

    }

}

    /* Стили для SEO блока */
    .seo-container {
margin-bottom: 80px;
    width: 67%;

    }

    .seo-content {
        position: relative;
        overflow: hidden;
        transition: max-height 0.5s ease;
    }

    .seo-content.collapsed {
        max-height: 150px; /* Высота до раскрытия */
    }

    .seo-content.expanded {
        max-height: none;
    }

    .seo-fade {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 60px;
        background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 50%, rgba(255,255,255,1) 100%);
        pointer-events: none;
        transition: opacity 0.3s ease;
    }

    .seo-content.expanded .seo-fade {
        opacity: 0;
    }

    .seo-toggle {
        display: inline-block;
        margin-top: 20px;
        padding: 12px 30px;
        background-color: #e98300; /* Оранжевый как на сайте */
        color: white;
        border: none;
        border-radius: 4px;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .seo-toggle:hover {
        background-color: #d17600; /* Темнее при наведении */
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(233, 131, 0, 0.3);
    }

    .seo-content h2 {
        color: #2c3e50;
        font-size: 24px;
        margin-bottom: 20px;
        font-weight: 700;
    }

    .seo-content h3 {
        color: #e98300;
        font-size: 20px;
        margin: 25px 0 15px 0;
        font-weight: 600;
    }

    .seo-content p {
        margin-bottom: 15px;
        font-size: 16px;
    }

    .seo-content ul {
        margin-bottom: 20px;
        padding-left: 20px;
    }

    .seo-content li {
        margin-bottom: 8px;
        position: relative;
        padding-left: 10px;
    }

    .seo-content li:before {
        content: "•";
        color: #e98300;
        font-weight: bold;
        position: absolute;
        left: -10px;
    }
    @media (max-width: 1500px) {

.seo-container {

    width: 85%;
}
}
    @media (max-width: 1280px) {

.seo-container {

    width: 95%;
}
}

    @media (max-width: 768px) {
        .seo-section {
            padding: 0 15px;
            margin: 30px auto;
        }
        
        .seo-content h2 {
            font-size: 22px;
        }
        
        .seo-content h3 {
            font-size: 18px;
        }
        
        .seo-toggle {
            width: 100%;
            text-align: center;
        }
    }