/*
 * =====================================
 * СТИЛИ ДЛЯ FAQ.PHP
 * =====================================
 */

/* * Стили для аккордеона (скопировано из cycling.css)
 */
.accordion-section {
    padding: 20px 0;
    background-color: #fff;
}
.accordion-item {
    border-bottom: 1px solid #e0e0e0;
}
.accordion-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 25px 0;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
}
.accordion-title {
    font-family: "Raleway", sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0;
    text-transform: uppercase;
}
.accordion-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}
.accordion-item.is-open .accordion-icon {
    transform: rotate(45deg);
}
.accordion-content {
    padding-bottom: 25px;
    font-family: "EB Garamond", serif;
    font-size: 17px;
    color: #333;
    line-height: 1.6;
    display: none; /* Скрыто по умолчанию */
}
.accordion-content p {
    margin-bottom: 15px;
}
.accordion-content ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-top: 10px;
    margin-bottom: 15px;
}
.accordion-content a {
    color: #333 !important;
    text-decoration: underline !important;
}
.accordion-content a:hover {
    text-decoration: none !important;
}

/* * Заголовки H1, H2 (скопировано из restaurants-bars.css)
 */
.page-header h1 {
    font-size: 44px;
}
.page-header h2 {
    font-family: "EB Garamond", serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.3;
}

/* * Адаптация для мобильных
 */
@media (max-width: 992px) {
    .page-header h1 {
        font-size: 32px;
    }
    .page-header h2 {
        font-size: 20px;
    }
    .accordion-title {
        font-size: 16px;
    }
}