/* Footer Fix - исправление проблемы с наползанием полосок на текст */

.footer-title {
    position: relative;
    z-index: 10; /* Поднимаем текст выше полосок */
    font-size: 16px;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px; /* Увеличиваем отступ снизу для полоски */
    font-weight: 600;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -6px; /* Опускаем полоску ниже */
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(135deg, #D4AF37, #FFA500);
    border-radius: 1px;
    z-index: 1; /* Полоска под текстом */
}

/* Дополнительное исправление для текста в footer */
.footer-section p {
    position: relative;
    z-index: 10; /* Поднимаем текст выше декоративных элементов */
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 8px;
}

/* Исправление для нижней части footer */
.footer-bottom {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 20px 0;
    margin-top: 20px;
    border-top: 2px solid rgba(212, 175, 55, 0.3);
    background: rgba(0, 104, 71, 0.1);
}

.footer-bottom p {
    position: relative;
    z-index: 10;
}