/* FAQ PAGE COMPONENTS */

/* FAQ hero section */
.faq-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.faq-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="faq" x="0" y="0" width="15" height="15" patternUnits="userSpaceOnUse"><text x="7.5" y="10" text-anchor="middle" fill="rgba(255,255,255,0.1)" font-size="8">?</text></pattern></defs><rect width="100%" height="100%" fill="url(%23faq)"/></svg>');
    opacity: 0.3;
}

.faq-hero .hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.faq-hero h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-search {
    max-width: 600px;
    margin: 0 auto 3rem auto;
    position: relative;
}

.search-container {
    display: flex;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.search-container:focus-within {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.4);
    box-shadow: 0 0 20px rgba(255,255,255,0.2);
}

.search-container input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 1rem 2rem;
    color: white;
    font-size: 1.1rem;
    outline: none;
}

.search-container input::placeholder {
    color: rgba(255,255,255,0.7);
}

.search-btn {
    background: rgba(255,255,255,0.2);
    border: none;
    padding: 1rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
}

.search-btn:hover {
    background: rgba(255,255,255,0.3);
}

.search-icon {
    font-size: 1.2rem;
}

.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    margin-top: 0.5rem;
    max-height: 300px;
    overflow-y: auto;
    z-index: 10;
    display: none;
}

.suggestion-item {
    padding: 1rem;
    border-bottom: 1px solid #f1f5f9;
    cursor: pointer;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.suggestion-item:hover {
    background: #f8fafc;
    color: var(--accent-color);
}

.suggestion-item:last-child {
    border-bottom: none;
}

.faq-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-stats .stat-item {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.faq-stats .stat-item:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.25);
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255,255,255,0.9);
    font-size: 0.9rem;
}

/* FAQ categories */
.faq-categories {
    padding: 5rem 0;
    background: #f8fafc;
}

.faq-categories h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.category-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    border-color: var(--accent-color);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.category-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.category-card p {
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.category-count {
    background: #e2e8f0;
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.category-btn {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
}

.category-btn:hover {
    background: #0369a1;
    transform: translateY(-2px);
}

/* FAQ content */
.faq-content {
    padding: 5rem 0;
}

.faq-filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter-tabs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 0.75rem 1.5rem;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #64748b;
    font-size: 0.9rem;
}

.filter-tab:hover,
.filter-tab.active {
    background: var(--accent-color);
    color: white;
    border-color: var(--accent-color);
}

.sort-options select {
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    background: white;
    color: var(--primary-color);
    cursor: pointer;
    outline: none;
    font-size: 0.9rem;
}

.sort-options select:focus {
    border-color: var(--accent-color);
}

/* FAQ list */
.faq-list {
    display: grid;
    gap: 3rem;
}

.faq-section {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    overflow: hidden;
}

.section-title {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    color: var(--primary-color);
    padding: 2rem;
    margin: 0;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
}

.faq-item {
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    position: relative;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item:hover {
    background: #fafbfc;
}

.faq-item.popular::before {
    content: '🔥';
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #dc2626;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: bold;
}

.faq-question {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question h4 {
    color: var(--primary-color);
    margin: 0;
    flex: 1;
    font-size: 1.1rem;
    line-height: 1.4;
    padding-right: 1rem;
}

.faq-toggle {
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-toggle {
    background: #dc2626;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.answer-content {
    padding: 0 2rem 2rem 2rem;
    color: #374151;
    line-height: 1.6;
}

.answer-content p {
    margin-bottom: 1.5rem;
}

.answer-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.answer-content li {
    margin-bottom: 0.5rem;
    color: #4b5563;
}

.answer-content strong {
    color: var(--primary-color);
}

/* Special answer components */
.timeline-info {
    display: grid;
    gap: 1rem;
    margin: 1.5rem 0;
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: white;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.timeline-item strong {
    color: var(--primary-color);
}

.timeline-item span {
    color: var(--accent-color);
    font-weight: 600;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.service-item {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.service-item strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 1rem;
}

.service-item ul {
    margin: 0;
    padding-left: 1rem;
}

.pricing-table {
    background: #f8fafc;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.pricing-row:last-child {
    border-bottom: none;
}

.price-category {
    color: var(--primary-color);
    font-weight: 600;
}

.price-range {
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.1rem;
}

.payment-options {
    display: grid;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.payment-option {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
}

.payment-option strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 1rem;
}

.materials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.material-category {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.material-category strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 1rem;
}

.warranty-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.warranty-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8fafc;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #10b981;
}

.warranty-item strong {
    color: var(--primary-color);
}

.warranty-item span {
    color: #10b981;
    font-weight: bold;
}

.emergency-process {
    display: grid;
    gap: 1rem;
    margin: 1.5rem 0;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-info {
    flex: 1;
}

.step-info strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.25rem;
}

.step-info span {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.step-info small {
    color: #64748b;
    font-size: 0.8rem;
    display: block;
    margin-top: 0.25rem;
}

.emergency-pricing {
    background: #fef3c7;
    border: 1px solid #fbbf24;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.emergency-pricing p {
    margin: 0 0 1rem 0;
    color: #92400e;
    font-weight: 600;
}

.emergency-pricing ul {
    margin: 0;
    color: #78350f;
}

.answer-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.answer-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.answer-link:hover {
    background: #0369a1;
    transform: translateY(-1px);
}

/* FAQ not found */
.faq-not-found {
    text-align: center;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    padding: 3rem;
    margin-top: 3rem;
}

.not-found-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.not-found-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.not-found-content p {
    color: #64748b;
    margin-bottom: 2rem;
}

.contact-options {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-option {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.contact-option:hover {
    background: #0369a1;
    transform: translateY(-2px);
}

/* FAQ actions */
.faq-actions {
    padding: 5rem 0;
    background: #f8fafc;
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.action-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.action-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.action-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.action-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.action-card p {
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.action-btn {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
}

.action-btn:hover {
    background: #0369a1;
    transform: translateY(-2px);
}

/* FAQ feedback */
.faq-feedback {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
}

.feedback-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.feedback-content p {
    opacity: 0.9;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.feedback-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.feedback-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 3rem;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 12px;
    background: rgba(255,255,255,0.15);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.feedback-btn:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-2px);
}

.feedback-btn.positive:hover {
    background: #10b981;
    border-color: #10b981;
}

.feedback-btn.negative:hover {
    background: #f59e0b;
    border-color: #f59e0b;
}

.feedback-stats {
    display: flex;
    gap: 4rem;
    justify-content: center;
    flex-wrap: wrap;
}

.feedback-stats .stat {
    text-align: center;
}

.feedback-stats .stat strong {
    display: block;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: white;
}

.feedback-stats .stat span {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

/* Related resources */
.related-resources {
    padding: 5rem 0;
}

.related-resources h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.resource-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    padding: 2rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid transparent;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    border-color: var(--accent-color);
    text-decoration: none;
}

.resource-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.resource-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.resource-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Responsive design */
@media (max-width: 768px) {
    .faq-hero h1 {
        font-size: 2rem;
    }
    
    .hero-search {
        margin-bottom: 2rem;
    }
    
    .search-container {
        border-radius: 12px;
    }
    
    .search-container input {
        font-size: 1rem;
        padding: 1rem;
    }
    
    .faq-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-filters {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-tabs {
        justify-content: center;
    }
    
    .faq-question {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .faq-question h4 {
        padding-right: 0;
    }
    
    .answer-content {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }
    
    .service-grid,
    .materials-grid {
        grid-template-columns: 1fr;
    }
    
    .warranty-info {
        grid-template-columns: 1fr;
    }
    
    .pricing-row {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .answer-actions {
        justify-content: center;
    }
    
    .contact-options {
        flex-direction: column;
        align-items: center;
    }
    
    .actions-grid {
        grid-template-columns: 1fr;
    }
    
    .feedback-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .feedback-stats {
        gap: 2rem;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .faq-hero {
        padding: 3rem 0;
    }
    
    .faq-hero h1 {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .search-container input {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .search-btn {
        padding: 0.75rem 1rem;
    }
    
    .faq-stats {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        padding: 1.5rem;
        font-size: 1.25rem;
    }
    
    .faq-question {
        padding: 1rem;
    }
    
    .faq-question h4 {
        font-size: 1rem;
    }
    
    .faq-toggle {
        width: 35px;
        height: 35px;
        font-size: 1.25rem;
    }
    
    .answer-content {
        padding: 0 1rem 1rem 1rem;
        font-size: 0.9rem;
    }
    
    .feedback-btn {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .feedback-stats {
        flex-direction: column;
        gap: 1rem;
    }
}

/* FAQ search highlighting */
.faq-item.highlight {
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
}

.faq-item.highlight .faq-question {
    background: #fef3c7;
}

/* FAQ loading animation */
@keyframes faqFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-item.fade-in {
    animation: faqFadeIn 0.5s ease forwards;
}

/* Search result highlighting */
.search-highlight {
    background: #fbbf24;
    padding: 0.1rem 0.2rem;
    border-radius: 3px;
    font-weight: bold;
}

/* FAQ category active state */
.category-card.active {
    border-color: var(--accent-color);
    background: #f0f9ff;
    transform: translateY(-3px);
}

.category-card.active .category-icon {
    color: var(--primary-color);
    transform: scale(1.1);
}

/* FAQ item popularity indicator */
.faq-item[data-popularity="95"]:not(.popular)::after,
.faq-item[data-popularity="94"]:not(.popular)::after,
.faq-item[data-popularity="92"]:not(.popular)::after,
.faq-item[data-popularity="90"]:not(.popular)::after {
    content: '🔥';
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: #dc2626;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: bold;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Smooth scrolling for category navigation */
html {
    scroll-behavior: smooth;
}

/* FAQ scroll to top button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 1000;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: #0369a1;
    transform: translateY(-3px);
}

/* FAQ breadcrumb enhancement */
.breadcrumb a:hover {
    color: var(--accent-color);
}

/* FAQ category hover effects */
.category-card:hover .category-icon {
    transform: scale(1.1);
    color: var(--primary-color);
}

/* FAQ answer content enhancements */
.answer-content blockquote {
    border-left: 4px solid var(--accent-color);
    padding-left: 1rem;
    margin: 1rem 0;
    font-style: italic;
    color: #64748b;
    background: #f8fafc;
    padding: 1rem;
    border-radius: 0 8px 8px 0;
}

.answer-content code {
    background: #f3f4f6;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
    color: #dc2626;
}

.answer-content .note {
    background: #f0f9ff;
    border: 1px solid #0ea5e9;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.answer-content .warning {
    background: #fef3c7;
    border: 1px solid #f59e0b;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    color: #92400e;
}

.answer-content .success {
    background: #f0fdf4;
    border: 1px solid #10b981;
    padding: 1rem;
    border-radius: 8px;
    margin: 1rem 0;
    color: #065f46;
}

/* Print styles */
@media print {
    .faq-hero,
    .faq-categories,
    .faq-actions,
    .faq-feedback,
    .related-resources,
    .scroll-to-top {
        display: none;
    }
    
    .faq-content {
        padding: 0;
    }
    
    .faq-item {
        break-inside: avoid;
        margin-bottom: 2rem;
    }
    
    .faq-answer {
        max-height: none;
    }
    
    .faq-toggle {
        display: none;
    }
    
    .answer-content {
        padding: 1rem 0;
    }
}
