.elementor-38 .elementor-element.elementor-element-da893d3{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-38 .elementor-element.elementor-element-5652b58{margin:0px 0px calc(var(--kit-widget-spacing, 0px) + 50px) 0px;}:root{--page-title-display:none;}@media(min-width:768px){.elementor-38 .elementor-element.elementor-element-da893d3{--content-width:1200px;}}/* Start custom CSS for html, class: .elementor-element-2aafd47 */.prison-labor-section {
    padding: 50px 0;
    overflow: hidden;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 0 20px;
}

/* Контентная часть */
.production-content {
    flex: 1;
}

.section-title {
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--dark-text);
}

.section-description {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 40px;
}

/* Список преимуществ */
.benefit-list {
    list-style: none;
    padding: 0;
}

.benefit-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.benefit-icon {
    font-size: 20px;
    color: var(--accent-color);
    font-weight: 700;
    opacity: 0.6;
}

.benefit-text strong {
    display: block;
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--dark-text);
}

.benefit-text p {
    font-size: 14px;
    color: #777;
    margin: 0;
}

/* Изображение */
.production-image {
    flex: 1;
    position: relative;
}

.production-image img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(20%); /* Делает фото более стильным */
    box-shadow: 20px 20px 0px 0px #d3dbef; /* Декоративная рамка */
}

.image-label {
    position: absolute;
    bottom: 20px;
    left: -20px;
    background: var(--dark-text);
    color: #fff;
    padding: 15px 25px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Адаптивность */
@media (max-width: 992px) {
    .section-container {
        flex-direction: column;
        gap: 50px;
        text-align: center;
    }
    
    .benefit-list li {
        flex-direction: column;
        gap: 10px;
    }
    
    .section-title {
        font-size: 30px;
    }

    .production-image img {
        box-shadow: none;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-3d7be22 */.process-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.process-header {
    text-align: center;
    margin-bottom: 70px;
}

.sub-title {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.main-title {
    font-size: 42px;
    color: var(--dark-text);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.process-item {
    position: relative;
    padding: 40px 30px;
    background: #fdfdfd;
    border: 1px solid #f0f0f0;
    transition: all 0.4s ease;
}

.process-item:hover {
    background: #fff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    transform: translateY(-10px);
    border-color: var(--accent-color);
}

.process-number {
    font-size: 60px;
    font-weight: 900;
    color: #f0f0f0;
    line-height: 1;
    margin-bottom: 20px;
    transition: color 0.4s ease;
}

.process-item:hover .process-number {
    color: #ece0d1; /* Легкий оттенок акцентного цвета */
}

.process-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-text);
}

.process-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #777;
    margin: 0;
}

/* Адаптивность */
@media (max-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
    .main-title {
        font-size: 32px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-488ca60 */.stats-section {
    padding: 80px 0;
    background-color: #f9f9f9; /* Легкий серый фон для контраста с белыми блоками */
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

/* Разделительные линии между цифрами (кроме последней) */
.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 20%;
    height: 60%;
    width: 1px;
    background: #e0e0e0;
}

.stat-number {

    font-size: 64px;
    font-weight: 700;
    color: var(--accent-color); /* Используем наш акцентный цвет */
    line-height: 1;
    margin-bottom: 15px;
    display: block;
}

.stat-label {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    max-width: 180px; /* Ограничиваем ширину текста для аккуратности */
}

/* Адаптивность для цифр */
@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px 30px;
    }
    .stat-item:not(:last-child)::after {
        display: none; /* Убираем разделители на планшетах */
    }
}

@media (max-width: 600px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .stat-number {
        font-size: 52px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-5652b58 */.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 25px 0;
    text-align: left;
    
    /* ГЛАВНЫЕ ИСПРАВЛЕНИЯ ТУТ: */
    display: flex;             /* Включаем флекс */
    justify-content: space-between;
    align-items: flex-start;   /* Выравниваем по верху, чтобы иконка не прыгала */
    gap: 15px;                 /* Зазор между текстом и иконкой */
    
    white-space: normal;       /* РАЗРЕШАЕМ перенос строк */
    word-wrap: break-word;     /* Разрываем очень длинные слова, если нужно */
    overflow-wrap: break-word; /* Современный стандарт переноса */
    
    font-family: inherit;
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-text);
    cursor: pointer;
}

/* Иконка теперь не будет уезжать и всегда будет сверху справа */
.faq-icon {
    flex-shrink: 0;            /* Запрещаем иконке сжиматься */
    margin-top: 5px;           /* Немного опускаем, чтобы была вровень с первой строкой текста */
    position: relative;
    width: 18px;
    height: 18px;
}

/* Используем более узкий контейнер для лучшей читаемости текста */
.faq-container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

/* Стилизация элемента вопроса */
.faq-item {
    border-bottom: 1px solid #e5e5e5;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 25px 0;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--accent-color);
}

/* Иконка плюса */
.faq-icon {
    position: relative;
    width: 20px;
    height: 20px;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background-color: var(--dark-text);
    transition: transform 0.3s ease;
}

/* Горизонтальная линия плюса */
.faq-icon::before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    transform: translateY(-50%);
}

/* Вертикальная линия плюса */
.faq-icon::after {
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    transform: translateX(-50%);
}

/* Стилизация ответа (скрыт по умолчанию) */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
    padding-bottom: 25px;
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

/* Активное состояние (когда вопрос открыт) */
.faq-item.active .faq-question {
    color: var(--accent-color);
}

/* Превращаем плюс в минус при открытии */
.faq-item.active .faq-icon::after {
    transform: translateX(-50%) rotate(90deg);
}

.faq-item.active .faq-icon::before {
    background-color: var(--accent-color);
}

/* Базовые фиксы для всех экранов */
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px; /* Расстояние между текстом и иконкой */
    width: 100%;
    cursor: pointer;
}

/* ЗАПРЕЩАЕМ иконке сжиматься, если текст вопроса длинный */
.faq-icon {
    flex-shrink: 0; 
    position: relative;
    width: 18px;
    height: 18px;
}

/* МОБИЛЬНАЯ ОПТИМИЗАЦИЯ (до 600px) */
@media (max-width: 600px) {
    .faq-section {
        padding: 60px 0; /* Уменьшаем внешние отступы секции */
    }

    .faq-container-narrow {
        padding: 0 15px; /* Уменьшаем боковые поля */
    }

    .faq-header {
        margin-bottom: 30px;
    }

    .main-title {
        font-size: 26px; /* Уменьшаем заголовок, чтобы не переносился некрасиво */
    }

    .faq-question {
        font-size: 15px; /* Оптимальный размер для телефона */
        padding: 18px 0; /* Уменьшаем вертикальные отступы */
        line-height: 1.4;
    }

    .faq-answer p {
        font-size: 14px; /* Чуть меньше текст ответа */
        padding-bottom: 20px;
        line-height: 1.6;
    }
    
    .faq-icon {
        width: 16px; /* Чуть меньше иконка */
        height: 16px;
    }
}

/* Дополнительно для совсем маленьких экранов (iPhone SE и т.д.) */
@media (max-width: 380px) {
    .faq-question {
        font-size: 14px;
    }
    .main-title {
        font-size: 22px;
    }
}/* End custom CSS */