/* Унифицированные стили для списков внутри основного контента (оставлены для других списков на странице) */
main ul,
main ol {
    margin-left: 2rem;
    margin-right: 2rem;
    margin-top: 1em;
    margin-bottom: 1em;
    color: #1a3c5e;
}

main ul {
    list-style-type: disc;
}

main ol {
    list-style-type: decimal;
}

main ul li,
main ol li {
    margin-bottom: 0.5em;
    color: inherit;
}

/* Стили для кнопки .header-btn */
.header-btn {
    background: linear-gradient(45deg, #f25c05, #ff8c33);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(242, 92, 5, 0.4), 0 0 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    line-height: 1.5;
    min-height: 40px;
    font-size: 1rem;
    text-transform: uppercase;
    white-space: nowrap;
}

.header-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(242, 92, 5, 0.6), 0 0 5px rgba(0, 0, 0, 0.2);
    background: linear-gradient(45deg, #d94a00, #ff8c33);
    animation: pulse 0.5s infinite;
}

@keyframes pulse {
    0% { 
        box-shadow: 0 4px 15px rgba(242, 92, 5, 0.4), 0 0 5px rgba(0, 0, 0, 0.1); 
    }
    50% { 
        box-shadow: 0 6px 20px rgba(242, 92, 5, 0.6), 0 0 5px rgba(0, 0, 0, 0.2); 
    }
    100% { 
        box-shadow: 0 4px 15px rgba(242, 92, 5, 0.4), 0 0 5px rgba(0, 0, 0, 0.1); 
    }
}

/* Общие стили */
body {
    font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    color: #1a3c5e;
    line-height: 1.6;
}

section[id] {
    scroll-margin-top: 200px;
}

.container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}
/*
main {
    padding-top: 20px;
}
*/
/* Баннер */
.banner {
    position: relative;
    width: 100%;
    min-height: 400px;
    background: linear-gradient(to right, #f5f5f5, #ffffff);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 60px;
    border-radius: 10px;
    overflow: hidden;
}

.banner-image {
    width: 100%;
    height: auto;
    min-height: 400px;
    object-fit: cover;
    display: block;
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    background: rgba(26, 60, 94, 0.85);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.banner-content h1 {
    font-size: 2.5rem;
    margin: 0 0 15px;
    text-transform: uppercase;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.banner-content p {
    font-size: 1.2rem;
    margin: 10px 0;
}

.price-block {
    background: #e6f0fa;
    color: #1a3c5e;
    padding: 15px;
    border-radius: 8px;
    display: inline-block;
    margin-top: 15px;
}

.price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #f25c05;
    margin: 0;
}

.price-caption {
    font-size: 0.9rem;
    color: #555;
}

/* Sticky Navigation */
.sticky-nav {
    position: sticky;
    top: 0;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    z-index: 998;
    margin-bottom: 20px;
}

.sticky-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.sticky-nav ul li a {
    text-decoration: none;
    color: #1a3c5e;
    font-size: 1rem;
    font-weight: 600;
    padding: 8px 15px;
    transition: all 0.3s ease;
}

.sticky-nav ul li a:hover {
    color: #f25c05;
    background: #f9f9f9;
    border-radius: 5px;
}

/* Общий стиль секций */
.main-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 40px 20px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.main-section h2 {
    font-size: 2.2rem;
    color: #f25c05;
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
}

/* Ключевые характеристики */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    justify-items: center;
    padding: 0 20px;
}

.feature-item {
    text-align: center;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item .material-icons {
    font-size: 50px;
    color: #f25c05;
    margin-bottom: 15px;
}

.feature-item p {
    margin: 5px 0;
    font-size: 1rem;
}

.feature-item p:first-of-type {
    font-weight: 600;
    color: #1a3c5e;
}

/* Преимущества */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-items: center;
    padding: 0 20px;
}

.benefit-card {
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-card .material-icons {
    font-size: 60px;
    color: #f25c05;
    margin-bottom: 15px;
}

.benefit-card h3 {
    font-size: 1.4rem;
    color: #1a3c5e;
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 1rem;
    color: #1a3c5e;
}

/* Описание */
.description-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-content: center;
    padding: 0 20px;
}

.description-column {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.description-column h3 {
    font-size: 1.3rem;
    color: #1a3c5e;
    margin-bottom: 10px;
}

.description-column p {
    font-size: 1rem;
    color: #1a3c5e;
}

.full-description-block {
    margin-top: 30px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.full-description-block h3 {
    font-size: 1.3rem;
    color: #1a3c5e;
    margin-bottom: 10px;
}

.full-description-text {
    font-size: 1rem;
    color: #1a3c5e;
    white-space: pre-line;
}

/* Полные характеристики */
.specifications {
    margin-bottom: 60px;
    padding: 40px 0;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 1200px;
    margin: 0 auto 60px auto;
    border-radius: 10px;
}

.specifications h2 {
    font-size: 2.2rem;
    color: #f25c05;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.specifications table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #f9f9f9;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.specifications th,
.specifications td {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

.specifications th {
    background: #f5f5f5;
    font-weight: 600;
    width: 40%;
    text-align: center;
}

.specifications td {
    width: 60%;
    text-align: left;
}

.specifications tr.section-header td {
    background: #e6f0fa;
    font-weight: bold;
    color: #f25c05;
    text-align: center;
}



/* Форма запроса */
.request-form {
    margin-bottom: 60px;
    padding: 40px 0;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.request-form h2 {
    font-size: 2.2rem;
    color: #f25c05;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.request-form form {
    max-width: 600px;
    margin: 0 auto;
    background: #fafafa;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #1a3c5e;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

/* Адаптивность */
@media screen and (max-width: 768px) {
    .banner-content h1 {
        font-size: 1.8rem;
    }
    .banner-content p {
        font-size: 1rem;
    }
    .feature-grid,
    .benefits-grid,
    .description-grid {
        grid-template-columns: 1fr;
    }
    .sticky-nav ul {
        flex-direction: column;
        align-items: center;
    }
}

/* Новые стили для текста MUL */
/* Общий контейнер */
.mul-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* Заголовок */
.mul-title {
    font-size: 2.2rem;
    color: #f25c05; /* Оранжевый, как в текущем дизайне */
    text-align: left; /* Выровнял по левому краю, как на странице */
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* Подзаголовки */
.mul-subtitle {
    font-size: 1.6rem;
    color: #1a3c5e; /* Синий, как в текущем дизайне */
    margin: 30px 0 15px;
    text-transform: uppercase;
}

/* Абзацы */
.mul-description {
    font-size: 1rem;
    color: #1a3c5e;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Список в разделе "Повышенный уровень безопасности" */
.mul-safety-list {
    margin-left: 2rem;
    margin-right: 2rem;
    margin-top: 1em;
    margin-bottom: 1em;
    color: #1a3c5e;
    list-style-type: disc;
}

.mul-safety-item {
    margin-bottom: 0.5em;
    position: relative;
    padding-left: 10px;
}

.mul-safety-item::before {
    content: "✔";
    color: #f25c05;
    position: absolute;
    left: -10px;
}

/* Список характеристик */
.mul-specs-list {
    margin-left: 2rem;
    margin-right: 2rem;
    margin-top: 1em;
    margin-bottom: 1em;
    color: #1a3c5e;
    list-style-type: disc;
}

.mul-specs-item {
    padding: 5px 0;
    margin-bottom: 5px;
}

/* Список в разделе "Универсальность и адаптивность" */
.mul-adaptability-list {
    margin-left: 2rem;
    margin-right: 2rem;
    margin-top: 1em;
    margin-bottom: 1em;
    color: #1a3c5e;
    list-style-type: disc;
}

.mul-adaptability-item {
    margin-bottom: 0.5em;
    position: relative;
    padding-left: 10px;
}

.mul-adaptability-item::before {
    content: "✔";
    color: #f25c05;
    position: absolute;
    left: -10px;
}

/* Вложенный список в разделе "Универсальность и адаптивность" */
.mul-adaptability-sublist {
    margin-left: 2rem;
    list-style-type: circle;
}

.mul-adaptability-subitem::before {
    content: none; /* Убираем иконку для вложенных списков */
}

/* Выделенный текст */
.mul-highlight {
    font-size: 1.2rem;
    color: #f25c05;
    font-weight: bold;
    text-align: left; /* Выровнял по левому краю */
    margin: 20px 0;
}