.faq-accordion-block {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.faq-admin-notice {
    background: #f0f0f1;
    border: 1px solid #c3c4c7;
    border-radius: 4px;
    padding: 12px 16px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #1d2327;
}

.faq-placeholder {
    background: #f0f0f1;
    border: 2px dashed #c3c4c7;
    border-radius: 8px;
    padding: 40px 20px;
    text-align: center;
    color: #646970;
    font-size: 16px;
    margin: 20px 0;
}

.faq-header {
    text-align: center;
    margin-bottom: 30px;
}

.faq-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.faq-subtitle {
    color: #212224;
    margin: 0;
    line-height: 1.5;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-radius: 10px;
    background: #F7F7F8;
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.15);
    transition: background-color 0.2s ease;
    margin-bottom: 30px;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item:hover {
    background-color: #f8f9fa;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 16px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    font-weight: 500;
    color: #212224;
    line-height: 1.4;
    transition: all 0.2s ease;
    outline: none;
}

.faq-item-open .faq-question {
    padding-bottom: 10px;
}

.faq-item:hover .faq-question {
    color: #D1232D;
}

.faq-question-text {
    color: #212224;
    font-family: open_sans_semibold, sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    flex: 1;
    margin-right: 15px;
}

.faq-toggle-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: #D1232D;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-icon-closed,
.faq-icon-open {
    position: absolute;
    transition: opacity 0.2s ease;
}

.faq-icon-open {
    opacity: 0;
}

.faq-item-open .faq-icon-closed {
    opacity: 0;
}

.faq-item-open .faq-icon-open {
    opacity: 1;
}

.faq-content-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-content-open {
    max-height: 1000px;
}

.faq-answer {
    padding: 0 16px 18px 16px;
    color: #212224;
    line-height: 1.6;
}

.faq-content-open .faq-answer {
    padding-top: 0;
}

.faq-answer p {
    margin-bottom: 15px !important;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer strong {
    color: #2c3e50;
    font-weight: 600;
}

.faq-answer a {
    color: #D1232D;
    text-decoration: none;
    transition: color 0.2s ease;
}

.faq-answer a:hover {
    color: #8C0032;
    text-decoration: underline;
}

@media (min-width: 768px) {    
    .faq-container {
        padding: 0 20px;
    }
    
    .faq-header {
        margin-bottom: 40px;
    }
    
    .faq-question {
        padding: 20px 20px;
    }
    
    .faq-question-text {
        margin-right: 18px;
    }
    
    .faq-item-open .faq-question {
        padding-bottom: 15px;
    }
    
    .faq-answer {
        padding: 0 20px 20px 20px;
    }
}

@media (min-width: 1200px) {
    .faq-accordion-block {
        padding: 90px 0;
    }
    
    .faq-header {
        margin-bottom: 50px;
    }
    
    .faq-question {
        padding: 30px;
    }
    
    .faq-question-text {
        margin-right: 20px;
    }
    
    .faq-item-open .faq-question {
        padding-bottom: 20px;
    }
    
    .faq-answer {
        padding: 0 30px 24px 30px;
    }
}