.main-header {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* FAQ Section */
.faq-section {
    padding: 60px 0 !important;
    background-color: #ffffff;
    min-height: calc(100vh - 105px);
}

.faq-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
}

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

.faq-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.faq-instruction {
    font-size: 18px;
    color: #4a4a4a;
    margin: 0;
    line-height: 1.6;
}

/* FAQ Categories Grid */
.faq-categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.faq-category-card {
    background-color: rgba(244, 128, 36, 0.02);
    border: 1px solid rgba(244, 128, 36, 0.2);
    border-radius: 12px;
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 200px;
    text-decoration: none;
    color: inherit;
}

.faq-category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: rgba(244, 128, 36, 0.6);
    background-color: #ffffff;
}

.faq-category-card:active {
    transform: translateY(-2px);
}

.faq-category-empty {
    background-color: transparent;
    border: none;
    cursor: default;
    pointer-events: none;
}

.faq-category-empty:hover {
    transform: none;
    box-shadow: none;
    border-color: transparent;
    background-color: transparent;
}

.faq-category-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-category-icon svg {
    width: 100%;
    height: 100%;
}

.faq-category-icon svg text {
    font-family: var(--font-family);
}

.faq-category-name {
    font-size: 18px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.4;
}

/* FAQ Questions Container */
.faq-questions-container {
    margin-top: 40px;
    animation: fadeIn 0.3s ease;
}

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

.faq-questions-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(244, 128, 36, 0.2);
}

.faq-back-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: #f5f5f5;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-back-btn:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
}

.faq-back-btn svg {
    width: 20px;
    height: 20px;
}

.faq-questions-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.3;
}

.faq-questions-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-question-item {
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(244, 128, 36, 0.15);
}

.faq-question-button {
    width: 100%;
    padding: 24px 32px;
    background-color: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    transition: background-color 0.3s ease;
}

.faq-question-button:hover {
    background-color: rgba(244, 128, 36, 0.05);
}

.faq-question-text {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    flex: 1;
    line-height: 1.5;
}

.faq-question-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.faq-question-item.active .faq-question-icon {
    transform: rotate(180deg);
}

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

.faq-question-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 32px 24px 32px;
}

.faq-answer-content {
    padding-top: 16px;
}

.faq-answer-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin: 0 0 12px 0;
}

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

/* Responsive Styles */
@media (max-width: 992px) {

    .faq-container {
        padding: 0 32px;
    }

    .faq-title {
        font-size: 32px;
    }

    .faq-instruction {
        font-size: 16px;
    }

    .faq-categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .faq-category-card {
        padding: 32px 20px;
        min-height: 140px;
    }

    .faq-category-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 16px;
    }

    .faq-category-name {
        font-size: 16px;
    }

    .faq-questions-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 40px 0 !important;
    }

    .faq-container {
        padding: 0 16px;
    }

    .faq-title {
        font-size: 28px;
        margin-bottom: 4px;
    }

    .faq-header {
        margin-bottom: 16px;
    }

    .faq-instruction {
        font-size: 15px;
    }

    .faq-categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .faq-category-card {
        padding: 12px 16px;
        min-height: 120px;
    }

    .faq-category-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 12px;
    }

    .faq-category-name {
        font-size: 15px;
    }

    .faq-questions-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 32px;
    }

    .faq-questions-title {
        font-size: 24px;
    }

    .faq-question-button {
        padding: 20px 24px;
        gap: 6px;
    }

    .faq-question-text {
        font-size: 16px;
    }

    .faq-question-item.active .faq-answer {
        padding: 0 24px 20px 24px;
    }

    .faq-answer-content p {
        font-size: 15px;
    }

    .faq-categories-grid {
        margin-bottom: 0;
    }
}

@media (max-width: 480px) {
    .faq-categories-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .faq-category-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 10px;
    }

    .faq-category-name {
        font-size: 14px;
    }
}

