.faq-main-section {
    background: white;
    padding: 120px 0;
}

.faq-main-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

.faq-main-header {
    text-align: center;
    margin-bottom: 80px;
}

.faq-main-title {
    font-family: font_twenty_one;
    font-size: 3.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    line-height: 1.1;
}

.faq-main-subtitle {
    font-family: Manarope;
    font-size: 1.3rem;
    color: #64748b;
    line-height: 1.5;
}

.faq-accordion {
    margin-bottom: 80px;
}

.faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 16px;
    background: white;
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-item:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.faq-item--active {
    border-color: #fbbf24;
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.15);
}

.faq-question {
    width: 100%;
    padding: 24px 32px;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: Manarope;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    text-align: left;
}

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

.faq-item--active .faq-question {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #92400e;
}

.faq-question__text {
    flex: 1;
    margin-right: 20px;
}

.faq-question__icon {
    font-size: 14px;
    color: #64748b;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item--active .faq-question__icon {
    color: #92400e;
}

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

.faq-answer__content {
    padding: 0 32px 24px;
    font-family: Manarope;
    font-size: 1rem;
    line-height: 1.7;
    color: #64748b;
}

.faq-answer__content p {
    margin-bottom: 16px;
}

.faq-answer__content p:last-child {
    margin-bottom: 0;
}

.faq-answer__content ul {
    margin: 16px 0;
    padding-left: 24px;
}

.faq-answer__content li {
    margin-bottom: 8px;
}

.faq-answer__content strong {
    color: #1e293b;
    font-weight: 600;
}

.faq-contact-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    margin-top: 60px;
}

.faq-contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.faq-contact-title {
    font-family: font_twenty_one;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
    line-height: 1.2;
}

.faq-contact-text {
    font-family: Manarope;
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 40px;
    line-height: 1.6;
}

.faq-contact-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.faq-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    font-family: Manarope;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    border-radius: 50px;
    text-decoration: none;
}

.faq-contact-btn--primary {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1f2937;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.faq-contact-btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.faq-contact-btn--secondary {
    background: #1e293b;
    color: white;
    box-shadow: 0 4px 15px rgba(30, 41, 59, 0.3);
}

.faq-contact-btn--secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 41, 59, 0.4);
    background: #334155;
}

@media (max-width: 768px) {
    .faq-main-section {
        padding: 80px 0;
    }

    .faq-main-container {
        padding: 0 20px;
    }

    .faq-main-title {
        font-size: 2.5rem;
    }

    .faq-main-subtitle {
        font-size: 1.1rem;
    }

    .faq-question {
        padding: 20px 24px;
        font-size: 1rem;
    }

    .faq-answer__content {
        padding: 0 24px 20px;
        font-size: 0.95rem;
    }

    .faq-contact-section {
        padding: 40px 24px;
        margin-top: 40px;
    }

    .faq-contact-title {
        font-size: 2rem;
    }

    .faq-contact-text {
        font-size: 1.1rem;
    }

    .faq-contact-actions {
        flex-direction: column;
        align-items: center;
    }

    .faq-contact-btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .faq-main-title {
        font-size: 2rem;
    }

    .faq-main-subtitle {
        font-size: 1rem;
    }

    .faq-question {
        padding: 16px 20px;
        font-size: 0.95rem;
    }

    .faq-answer__content {
        padding: 0 20px 16px;
        font-size: 0.9rem;
    }

    .faq-contact-title {
        font-size: 1.8rem;
    }

    .faq-contact-text {
        font-size: 1rem;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-item {
    animation: fadeInUp 0.6s ease forwards;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }
.faq-item:nth-child(6) { animation-delay: 0.6s; }
.faq-item:nth-child(7) { animation-delay: 0.7s; }
.faq-item:nth-child(8) { animation-delay: 0.8s; }

.faq-question:focus {
    outline: 2px solid #fbbf24;
    outline-offset: 2px;
}

.faq-contact-btn:focus {
    outline: 2px solid #fbbf24;
    outline-offset: 2px;
}

@media print {
    .faq-main-section {
        padding: 40px 0;
    }

    .faq-item {
        break-inside: avoid;
        border: 1px solid #000;
        margin-bottom: 20px;
    }

    .faq-question {
        background: #f8f8f8 !important;
        color: #000 !important;
    }

    .faq-answer {
        max-height: none !important;
    }

    .faq-contact-section {
        display: none;
    }
} 