/* ============================================
   СТИЛИ СТРАНИЦ КАТЕГОРИЙ
   ============================================ */

/* ----- Заголовок страницы ----- */
.page-title {
    font-size: 30px;
    margin: 30px 0 10px 0;
}
.page-intro {
    font-size: 16px;
    color: #666666;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* ----- Подкатегория ----- */
.subcategory {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}
.subcategory:last-child {
    border-bottom: none;
}
.subcategory-content {
    width: 100%;
}
.subcategory-content:after {
    content: "";
    display: table;
    clear: both;
}
.subcategory-image {
    width: 45%;
    float: left;
    margin-right: 5%;
}
.subcategory-image .image-placeholder {
    width: 100%;
    height: 300px;
}
.subcategory-text {
    width: 50%;
    float: left;
}
.subcategory-text h2 {
    margin-top: 0;
    font-size: 24px;
    color: #2a7d2a;
}
.subcategory-text p {
    margin-bottom: 10px;
    line-height: 1.6;
}
.subcategory-text ul {
    margin: 10px 0;
    padding-left: 20px;
}
.subcategory-text ul li {
    margin-bottom: 5px;
}

/* ----- Форма обратной связи ----- */
.feedback-section {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    margin: 30px 0;
}
.feedback-title {
    text-align: center;
    margin-bottom: 5px;
}
.feedback-subtitle {
    text-align: center;
    color: #666666;
    margin-bottom: 20px;
}
.form-row:after {
    content: "";
    display: table;
    clear: both;
}
.form-row .form-group {
    width: 48%;
    float: left;
}
.form-row .form-group:first-child {
    margin-right: 4%;
}

/* ----- Блок FAQ ----- */
.faq-section {
    margin: 30px 0;
}
.faq-title {
    text-align: center;
    margin-bottom: 20px;
}
.faq-item {
    border: 1px solid #e0e0e0;
    margin-bottom: 5px;
    border-radius: 4px;
}
.faq-question {
    padding: 15px 20px;
    margin: 0;
    cursor: pointer;
    background-color: #f5f5f5;
    font-size: 16px;
    font-weight: bold;
    position: relative;
}
.faq-question:after {
    content: "+";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #2a7d2a;
}
.faq-question.active:after {
    content: "−";
}
.faq-answer {
    display: none;
    padding: 15px 20px;
    border-top: 1px solid #e0e0e0;
    line-height: 1.6;
}
.faq-answer.open {
    display: block;
}