/* Современные стили для страницы комплектации */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Баннер с заголовком */
.banner-container {
    position: relative;
    width: 100%;
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.banner-image {
    width: 100%;
    height: auto;
    display: block;
}

.banner-title-wrapper {
    position: absolute;
    top: 65px;
    left: 65px;    
    padding: 15px 30px;
    border-radius: 8px;
    backdrop-filter: blur(3px);
}

.banner-title {
    color: #000;
    font-size: 32px;
    font-weight: 700;
    margin: 0;
    letter-spacing: 0.5px;
}

/* Сетка с блоками преимуществ - 3 в ряд */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    padding: 20px;
    max-width: 1400px;
    margin: 0 auto 40px;
}

/* Карточка блока */
.feature-item {
    background: #fff;
    border-radius: 12px;
    padding: 25px 20px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid #eaeaea;
    height: 100%;
}

/* Иконка */
.feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: #f8f8f8;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border: 1px solid #ddd;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Контент */
.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin: 0 0 10px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid #8b5a2b;
}

.feature-text {
    font-size: 14px;
    line-height: 1.5;
    color: #555;
    margin: 0;
}

/* Стили для текстового контента */
.content-text {
    margin: 0 auto 40px;
    padding: 0 20px;
    
}

.content-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
}

/* Стили для изображения в контенте */
.content-image {
    margin: 0 auto 40px;
    padding: 0 20px;
    text-align: center;
    
}

.content-image img {
    width: 100%;
    
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Стили для блока с инструментами */
.tools-section {
    margin: 0 auto 60px;
    padding: 0 20px;
}

.tools-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
    text-align: center;
}

.tools-section > p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

/* Сетка для списка инструментов - 2 колонки */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 50px;
    border-radius: 16px;
    padding: 30px 40px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

/* Стили для списков - переопределяем глобальные стили */
.tools-list {
    list-style-type: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.tools-list li {
    padding: 0px 0 10px 25px !important;
    position: relative !important;
    font-size: 15px !important;
    color: #444 !important;
    border-bottom: 1px solid #eee !important;
    list-style-type: none !important;
}

.tools-list li:last-child {
    border-bottom: none !important;
}

/* Полностью переопределяем псевдоэлемент */
.tools-list li::before {
    content: "•" !important;
    position: absolute !important;
    left: 5px !important;
    top: -2px !important;
    color: #da9d43 !important;
    font-size: 20px !important;
    font-weight: bold !important;
    background-color: transparent !important;
    border-radius: 0 !important;
    display: inline-block !important;
    height: auto !important;
    margin-right: 0 !important;
    width: auto !important;
}

/* Мобильная версия */
@media (max-width: 768px) {
    .tools-grid {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 20px;
    }
    
    .tools-list {
        margin-bottom: 20px;
    }
    
    .tools-list:last-child {
        margin-bottom: 0;
    }
}
/* Мобильная версия */
@media (max-width: 1024px) {
    .features-grid {
        gap: 20px;
        padding: 15px;
    }
}

@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .banner-title-wrapper {
        top: 20px;
        left: 20px;
        padding: 10px 20px;
    }
    
    .banner-title {
        font-size: 24px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .feature-item {
        padding: 20px 15px;
    }
    
    .tools-section h2 {
        font-size: 24px;
    }
    
    .tools-grid {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 20px;
    }
    
    .tools-list {
        margin-bottom: 20px;
    }
    
    .tools-list:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 480px) {
    .banner-title-wrapper {
        top: 15px;
        left: 15px;
        padding: 8px 15px;
    }
    
    .banner-title {
        font-size: 20px;
    }
    
    .feature-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .feature-title {
        text-align: center;
        border-bottom: 2px solid #8b5a2b;
    }
    
    .content-text p {
        font-size: 14px;
    }
    
    .tools-grid {
        padding: 15px;
    }
}

/* Скрываем стандартный заголовок Битрикса если он есть */
h1:not(.banner-title) {
    display: none;
}