.faq-page-section {
    min-height: 60vh;
    padding: 80px 0;
    background: #f8f9fa;
}

.page-header {
    margin-bottom: 3rem;
}

.page-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color, #dc3545);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.page-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color, #dc3545) 0%, var(--secondary-color, #c82333) 100%);
    margin: 0 auto;
    border-radius: 2px;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    border: none;
    width: 100%;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question[aria-expanded="true"] {
    background: linear-gradient(135deg, var(--primary-color, #dc3545) 0%, var(--secondary-color, #c82333) 100%);
    color: white;
}

.faq-question[aria-expanded="true"] .faq-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.faq-question[aria-expanded="true"] .faq-question-text {
    color: white;
    font-weight: 700;
}

.faq-question[aria-expanded="true"] .faq-arrow {
    transform: rotate(180deg);
    color: white;
}

.faq-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color, #dc3545);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-question-text {
    flex: 1;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    line-height: 1.5;
    transition: all 0.3s ease;
}

.faq-arrow {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color, #dc3545);
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
}

.faq-answer {
    padding: 0 25px 25px 25px;
    background: white;
}

.faq-answer-content {
    padding-left: 55px;
    font-size: 1rem;
    line-height: 1.8;
    color: #495057;
    padding-top: 20px;
}

.faq-answer-content p {
    margin-bottom: 1rem;
}

.faq-answer-content ul,
.faq-answer-content ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.faq-answer-content li {
    margin-bottom: 0.5rem;
}

.faq-answer-content a {
    color: var(--primary-color, #dc3545);
    text-decoration: none;
    transition: color 0.3s ease;
}

.faq-answer-content a:hover {
    color: var(--secondary-color, #c82333);
    text-decoration: underline;
}

.faq-answer-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1rem 0;
}

@media (max-width: 768px) {
    .faq-page-section {
        padding: 40px 0;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .faq-question {
        padding: 15px;
        gap: 10px;
    }
    
    .faq-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .faq-question-text {
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 15px 15px 15px;
    }
    
    .faq-answer-content {
        padding-left: 45px;
        font-size: 0.95rem;
    }
}

