.faq-section {
    padding: 10px 0;
    background: #75757550;
    padding-bottom: 50px;
    font-family: 'PT Sans';
}

.faq-section .container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-title {
    text-align: center;
    font-size: 2.5rem;
    margin: 20px auto;
    margin-bottom: 10px;
    font-weight: 700;
    width: 80%;
    border-bottom: solid;
    height: 70px;
}

.faq-list {
    background: url(/templates/concrete_bg.jpg) !important;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0; /* Тонкая линия между вопросами */
}

.faq-item:last-child {
    border-bottom: none; /* Убираем линию у последнего элемента */
}


.faq-question {
    padding: 20px 60px 20px 50px;
    cursor: pointer;
    position: relative;
    font-size: 1.7rem;
    font-weight: 600;
    transition: all 0.3s ease;
    background: url(/templates/concrete_bg.jpg) !important;
    color: #555555;
}
.faq-item.active .faq-question{
    text-decoration-line: underline;
    text-underline-offset: 10px;
    /*ackground: #75757550 !important;*/
}

.faq-question:hover {
    background: #f8f9fa;
    color: #c4c4c4;
}

.faq-question::after {
    content: '';
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232c5530' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-question::after {
    transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transform: translateY(-10px);
    transition: 
        max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.4s ease 0.1s,
        transform 0.4s ease 0.1s;
}

.faq-item.active .faq-answer {
    max-height: 2000px;
    opacity: 1;
    transform: translateY(0);
}

.answer-content {
    padding: 0 50px 30px 50px;
    color: #555;
    
    font-size: 1.5rem;
}

.answer-content p {
    margin-bottom: 15px;
    font-size: 1.5rem;
    line-height: 1.7;
}

.answer-content strong {
    color: #555555;
    font-weight: 600;
}

.features-list {
    margin: 20px 0;
}

.features-list li {
    position: relative;
    padding: 8px 0;
    padding-left: 30px;
    font-size: 1.5rem;
}
ul.features-list li{
    list-style: none;
}
ol.features-list > li::marker{
    font-weight: bold;
}
ul.features-list li::before{
    content: '✓';
    position: absolute;
    left: 0;
    color: #4a7c59;
    font-weight: bold;
    font-size: 1.5rem;
}
ul.inside{
    padding-left: 0;
}
ul.inside li{
    list-style: none;
}
ul.inside li::before{
    content: '✓';
    position: absolute;
    left: 0;
    color: #4a7c59;
    font-weight: bold;
    font-size: 1.5rem;
}
ul.features-list.cross li::before{
    content: '×';
    position: absolute;
    left: 0;
    top: 0;
    color: #7c4a4a;
    font-weight: bold;
    font-size: 2.5rem;
}


.bottomrow{
    margin-top: 0 !important;
}



/* Стили для десктопной таблицы */
.desktop-table {
    display: block;
}

.price-table {
    width: 100%;
    margin: 20px 0;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e8ecee;
}

.table-row {
    display: flex;
    border-bottom: 1px solid #e8ecee;
}

.table-row:last-child {
    border-bottom: none;
}

.table-row.header {
    background: #555555;
    color: white;
    font-weight: 600;
}

.table-cell {
    flex: 1;
    padding: 15px;
    text-align: left;
}

.hyphens {
    hyphens: auto;
    -webkit-hyphens: auto;
    word-break: normal;
    overflow-wrap: normal;
}

.table-row:not(.header):nth-child(even) {
    background: #f0f0f0;
}

/* Стили для мобильных карточек (обновленные) */
.mobile-tech-cards {
    display: none;
    gap: 20px;
    margin: 20px 0;
}

.tech-card {
    background: #f8f9fa;
    border: 1px solid #e8ecee;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.tech-card-header {
    background: #555555;
    color: white;
    font-weight: 600;
    padding: 15px;
    text-align: center;
    font-size: 1.5rem;
    border-bottom: 1px solid #e8ecee;
}

.tech-param-row {
    display: flex;
    flex-direction: column;
    padding: 12px 15px;
    border-bottom: 1px solid #e8ecee;
    background: #f8f9fa;
}

.tech-param-row.even {
    background: #f0f0f0;
}

.tech-param-row:last-child {
    border-bottom: none;
}

.tech-param-name {
    font-weight: 600;
    color: #555555;
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.tech-param-value {
    color: #555;
    font-size: 1.4rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 40px 0;
    }
    
    .faq-title {
        font-size: 2rem;
        margin-bottom: 30px;
        height: auto;
    }
    
    .faq-question {
        font-size: 1.6rem;
        padding: 20px 50px 20px 20px;
    }
    
    .answer-content {
        padding: 0 20px 20px 20px;
        font-size: 1.3rem;
    }
    
    .answer-content p {
        font-size: 1.4rem;
    }
    
    .faq-list {
        border-radius: 0px;
    }
    
    /* На мобильных показываем карточки, скрываем таблицу */
    .desktop-table {
        display: none;
    }
    
    .mobile-tech-cards {
        display: block;
    }
    
    .tech-card-header {
        font-size: 1.4rem;
        padding: 12px;
    }
    
    .tech-param-name {
        font-size: 1.3rem;
        
        padding-left: 10%;
    }
    
    .tech-param-value {
        font-size: 1.3rem;
        
        padding-left: 20%;
    }
    
    .tech-param-row {
        padding: 10px 12px;
    }
}

@media (min-width: 769px) {
    .desktop-table {
        display: block;
    }
    
    .mobile-tech-cards {
        display: none;
    }
}
@media (max-width: 650px) {
    .tech-param-name {
        padding-left: 0px;
    }
    .tech-param-value {
        padding-left: 0px;
    }
}