/* 
 * AysimaPOS - FAQ Page Styles (Modern Professional Design)
 * Modern SaaS Design - Variables Based
 * copilot-instructions.md COMPLIANT: NO inline styles, modular CSS
 */

/* Hero Section - Grid Pattern Like Contact Page */
.faq-hero {
    background: var(--gradient-primary);
    padding: var(--spacing-16) 0 var(--spacing-14);
    position: relative;
    overflow: hidden;
}

.faq-hero .container {
    max-width: 1280px;
}

.faq-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.2)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.8;
}

.faq-hero__title {
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-black);
    margin-bottom: var(--spacing-8);
    color: #ffffff;
    position: relative;
    z-index: var(--z-index-10);
    letter-spacing: -1px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.faq-hero__subtitle {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-normal);
    line-height: var(--line-height-normal);
    color: #ffffff;
    opacity: 0.95;
    position: relative;
    z-index: var(--z-index-10);
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1.5rem;
}

.faq-hero__link {
    color: #ffffff;
    font-weight: var(--font-weight-bold);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 2px;
    text-decoration-color: var(--success-400);
    transition: all var(--transition-duration-300) var(--transition-timing-function-out);
}

.faq-hero__link:hover {
    color: var(--success-400);
    text-decoration-color: #ffffff;
    text-underline-offset: 5px;
}

/* DEPRECATED - No longer used after simplification */
.faq-hero__content {
    position: relative;
    z-index: 1;
    text-align: left;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.faq-hero__intro {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.8;
    color: #ffffff;
    opacity: 0.95;
    margin-bottom: 1.25rem;
}

.faq-hero__list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.faq-hero__list li {
    font-size: 1rem;
    line-height: 1.7;
    color: #ffffff;
    opacity: 0.95;
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
}

.faq-hero__list li:last-child {
    margin-bottom: 0;
}

.faq-hero__list li i {
    color: var(--success-400);
    font-size: 1.125rem;
    margin-top: 0.3rem;
    flex-shrink: 0;
}

.faq-hero__list li strong {
    color: #ffffff;
    font-weight: 700;
}

.faq-hero__cta {
    font-size: 1.0625rem;
    font-weight: 500;
    line-height: 1.6;
    color: #ffffff;
    opacity: 0.95;
    margin: 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    border-left: 4px solid var(--success-400);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.faq-hero__cta i {
    color: var(--success-400);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.faq-hero__cta-link {
    color: #ffffff;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 2px;
    text-decoration-color: var(--success-400);
    transition: all 0.3s ease;
}

.faq-hero__cta-link:hover {
    color: var(--success-400);
    text-decoration-color: #ffffff;
    text-underline-offset: 5px;
}

/* Expandable Content - Read More System */
.faq-hero__expandable {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-hero__expandable--open {
    max-height: 2000px;
    transition: max-height 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-hero__intro--expanded {
    margin-top: 1.25rem;
}

.faq-hero__list--short {
    margin-bottom: 1.5rem;
}

.faq-hero__list--expanded {
    margin-top: 1.25rem;
}

/* Toggle Button */
.faq-hero__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem 2rem;
    margin: 1.5rem 0 1.25rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: #ffffff;
    font-size: 1.0625rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.faq-hero__toggle:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.faq-hero__toggle:active {
    transform: translateY(0);
}

.faq-hero__toggle-icon {
    font-size: 1rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-hero__toggle-text {
    letter-spacing: 0.3px;
}

/* FAQ Content - COMPACT */
.faq-content {
    padding: 1rem 0;
    background: linear-gradient(180deg, var(--gray-50) 0%, #ffffff 100%);
}

.faq-content .container {
    max-width: 1280px;
}

/* Category Cards - Ultra Modern Design - COMPACT */
.faq-categories {
    margin-bottom: 1rem;
    background: #f8f9fa;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    padding: 2rem;
    border-radius: 16px;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.faq-categories .container {
    max-width: 1280px;
}

.faq-categories h2 {
    font-size: var(--font-size-3xl);
    font-weight: var(--font-weight-black);
    color: var(--gray-800);
    margin-bottom: var(--spacing-4);
    letter-spacing: -0.5px;
}

.faq-categories h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 5px;
    background: var(--gradient-primary);
    margin: var(--spacing-4) auto 0;
    border-radius: var(--border-radius-2xl);
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-3);
    padding: var(--spacing-5) var(--spacing-4);
    background: linear-gradient(135deg, #ffffff 0%, var(--gray-50) 100%);
    border: 2px solid transparent;
    border-radius: var(--border-radius-xl);
    text-decoration: none;
    color: var(--gray-700);
    transition: all var(--transition-duration-400) var(--transition-timing-function-out);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    min-height: 110px;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    opacity: 0;
    transition: opacity var(--transition-duration-400) var(--transition-timing-function-out);
}

.category-card:hover {
    border-color: var(--primary-600);
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-2xl);
    text-decoration: none;
}

.category-card:hover::before {
    opacity: 1;
}

.category-card i {
    font-size: var(--font-size-4xl);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform var(--transition-duration-400) var(--transition-timing-function-out);
    position: relative;
    z-index: var(--z-index-10);
}

.category-card:hover i {
    transform: scale(1.15) rotateY(360deg);
}

.category-card span {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-bold);
    text-align: center;
    line-height: var(--line-height-tight);
    color: var(--gray-700);
    position: relative;
    z-index: var(--z-index-10);
    letter-spacing: -0.2px;
}

/* FAQ Sections - Modern Layout - COMPACT */
.faq-section {
    margin-bottom: 1rem;
    scroll-margin-top: 80px;
    background: #f8f9fa;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    padding: 2rem;
    border-radius: 16px;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.faq-section .container {
    max-width: 1280px;
}

.faq-section .section-title {
    font-size: 1.875rem;
    font-weight: 900;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    letter-spacing: -0.5px;
}

.faq-section .section-title.text-center {
    justify-content: center !important;
}

.faq-section .section-title.text-center::after {
    left: 50% !important;
    transform: translateX(-50%) !important;
}

.faq-section .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-600) 0%, var(--accent-500) 100%);
    border-radius: 10px;
}

.faq-section .section-title i {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--primary-600) 0%, var(--accent-500) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* FAQ Grid - Masonry-like Layout */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 1.25rem;
    max-width: 1280px;
    margin: 0 auto;
}

/* FAQ Items - Glassmorphism Design - COMPACT */
.faq-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(102, 126, 234, 0.1);
    border-radius: 15px;
    padding: 1.25rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: linear-gradient(180deg, var(--primary-600) 0%, var(--accent-500) 100%);
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0 10px 10px 0;
}

.faq-item:hover {
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(102, 126, 234, 0.15);
    background: rgba(255, 255, 255, 1);
}

.faq-item:hover::before {
    height: 100%;
}

.faq-question {
    font-size: 1.0625rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
    line-height: 1.4;
    display: block;
    letter-spacing: -0.3px;
}

.faq-question strong {
    display: block;
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-answer {
    font-size: 0.9375rem;
    color: var(--gray-700);
    line-height: 1.6;
    margin: 0;
}

/* Tüm FAQ section'ları için ortalama */
.faq-section .section-title {
    justify-content: center !important;
}

.faq-section .section-title::after {
    left: 50% !important;
    transform: translateX(-50%) !important;
}

.faq-section .faq-question {
    display: block !important;
    text-align: center !important;
}

.faq-section .faq-question strong {
    text-align: center !important;
}

/* CTA Section - Premium Design - COMPACT */
.faq-cta {
    margin-top: 60px;
    margin-bottom: 30px;
}

.faq-cta .container {
    max-width: 1280px;
}

.faq-cta .card {
    border: none;
    border-radius: 25px;
    background: linear-gradient(135deg, var(--primary-600) 0%, var(--accent-500) 100%);
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.faq-cta .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.faq-cta .card-body {
    padding: 2.5rem 2rem;
    position: relative;
    z-index: 1;
}

/* CTA Icon - Modern Gradient Design - COMPACT */
.faq-cta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
    animation: iconPulse 3s ease-in-out infinite;
}

.faq-cta-icon::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.1));
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-cta-icon:hover::before {
    opacity: 1;
}

.faq-cta-icon i {
    font-size: 2.5rem;
    color: #ffffff;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        box-shadow: 
            0 10px 30px rgba(0, 0, 0, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.3),
            0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    50% {
        box-shadow: 
            0 15px 40px rgba(0, 0, 0, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.4),
            0 0 0 20px rgba(255, 255, 255, 0);
    }
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-8px) rotate(5deg);
    }
}

.faq-cta i {
    color: #ffffff;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
}

.faq-cta h3 {
    font-size: 1.75rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 0.75rem;
}

.faq-cta .text-muted {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.0625rem;
    margin-bottom: 1.5rem !important;
}

.faq-cta .btn {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    letter-spacing: 0.3px;
}

/* Hero Ana Sayfa Button Styles */
.faq-cta .btn-primary {
    background: #ffffff;
    color: var(--primary-600);
    border-color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.faq-cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
    background: #ffffff;
    color: var(--primary-600);
    border-color: #ffffff;
}

.faq-cta .btn-success {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
}

.faq-cta .btn-success:hover {
    transform: translateY(-3px);
    background: #ffffff;
    border-color: #ffffff;
    color: var(--primary-600);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Responsive Design - Mobile First */
@media (max-width: 991px) {
    .faq-hero {
        padding: 80px 0 100px;
    }

    .faq-hero__title {
        font-size: 2.75rem;
    }

    .faq-hero__subtitle {
        font-size: 1.25rem;
    }

    .faq-content {
        padding: 60px 0;
    }

    .faq-categories h2 {
        font-size: 2rem;
    }

    .faq-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 1.5rem;
    }

    .faq-section {
        margin-bottom: 60px;
    }

    .faq-section .section-title {
        font-size: 1.875rem;
    }

    .category-card {
        min-height: 120px;
        padding: 1.5rem 1.25rem;
    }

    .category-card i {
        font-size: 2.25rem;
    }
}

@media (max-width: 767px) {
    .faq-hero {
        padding: 60px 0 50px;
    }

    .faq-hero__title {
        font-size: 2rem;
    }

    .faq-hero__subtitle {
        font-size: 1rem;
        line-height: 1.7;
    }

    .faq-content {
        padding: 40px 0 30px;
    }

    .faq-categories {
        margin-bottom: 40px;
        padding: 1rem;
    }

    .faq-section {
        padding: 1rem;
    }

    .faq-categories h2 {
        font-size: 1.625rem;
    }

    .category-card {
        padding: 1rem 0.875rem;
        min-height: 95px;
    }

    .category-card i {
        font-size: 1.75rem;
    }

    .category-card span {
        font-size: 0.875rem;
    }

    .faq-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
        gap: 1rem;
    }

    .faq-item {
        padding: 1.25rem;
    }

    .faq-question {
        font-size: 1rem;
        margin-bottom: 0.625rem;
    }

    .faq-answer {
        font-size: 0.875rem;
    }

    .faq-section {
        margin-bottom: 35px;
    }

    .faq-section .section-title {
        font-size: 1.5rem;
        gap: 0.625rem;
        margin-bottom: 1.25rem;
    }

    .faq-section .section-title i {
        font-size: 1.5rem;
    }

    .faq-cta {
        margin-top: 40px;
    }

    .faq-cta .card-body {
        padding: 2rem 1.25rem;
    }

    .faq-cta-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 1rem;
    }

    .faq-cta-icon i {
        font-size: 2rem;
    }

    .faq-cta h3 {
        font-size: 1.5rem;
        margin-bottom: 0.625rem;
    }

    .faq-cta .text-muted {
        font-size: 1rem;
        margin-bottom: 1.25rem !important;
    }

    .faq-cta .btn {
        display: block;
        width: 100%;
        margin-bottom: 0.75rem;
        padding: 1rem 1.5rem;
        font-size: 1.125rem;
    }

    .faq-cta .btn.ms-2 {
        margin-left: 0 !important;
    }
}

@media (max-width: 480px) {
    .faq-hero {
        padding: 50px 0 40px;
    }

    .faq-hero__title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .faq-hero__subtitle {
        font-size: 0.9375rem;
        line-height: 1.6;
    }

    .faq-categories .row {
        gap: 0.625rem;
    }

    .category-card {
        padding: 1rem 0.75rem;
        min-height: 85px;
        border-radius: 12px;
    }

    .category-card i {
        font-size: 1.5rem;
    }

    .category-card span {
        font-size: 0.8125rem;
    }

    .faq-grid {
        gap: 0.875rem;
    }

    .faq-item {
        padding: 1rem;
        border-radius: 12px;
    }

    .faq-cta-icon {
        width: 60px;
        height: 60px;
    }

    .faq-cta-icon i {
        font-size: 1.875rem;
    }

    .faq-cta .card-body {
        padding: 1.75rem 1rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-600) 0%, var(--accent-500) 100%);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--accent-500) 0%, var(--primary-600) 100%);
}

/* Loading Animation */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Accessibility */
.faq-item:focus-within {
    outline: 3px solid var(--primary-600);
    outline-offset: 3px;
}

/* Print Styles */
@media print {
    .faq-hero,
    .faq-categories,
    .faq-cta {
        display: none;
    }

    .faq-item {
        page-break-inside: avoid;
        border: 2px solid var(--primary-600);
        margin-bottom: 1.5rem;
        box-shadow: none;
    }

    .faq-section .section-title {
        color: var(--gray-900);
        border-bottom: 3px solid var(--gray-900);
    }
}

/* FAQ H3 Heading Hierarchy (SEO Enhancement) */
.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    padding: 0;
    color: var(--primary-color);
    border-left: 4px solid var(--primary-color);
    padding-left: 0.75rem;
    line-height: 1.4;
}

.faq-question h3 strong {
    font-weight: 600;
}

/* Dark Mode Support (Future) */
@media (prefers-color-scheme: dark) {
    .faq-content {
        background: linear-gradient(180deg, var(--gray-900) 0%, var(--gray-800) 100%);
    }

    .category-card {
        background: linear-gradient(135deg, var(--gray-800) 0%, var(--gray-900) 100%);
        color: #ffffff;
    }

    .category-card span {
        color: #ffffff;
    }

    .faq-item {
        background: rgba(45, 55, 72, 0.9);
        border-color: rgba(102, 126, 234, 0.2);
    }

    .faq-question strong {
        color: #ffffff;
    }
    
    .faq-question h3 {
        color: #ffffff;
        border-left-color: var(--primary-color);
    }

    .faq-answer {
        color: var(--gray-300);
    }
}

/* ============================================
   Hero Animations - Unique Style: Fade Down
   ============================================ */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.faq-hero__title {
    animation: fadeInDown 0.8s ease-out;
}

.faq-hero__subtitle {
    animation: fadeIn 0.8s ease-out 0.2s both;
}