/* Support List CSS */
.support-section {
    min-height: 100vh;
    background: #ffffff;
    padding: 40px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title-wrapper {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: #085DC5;
    margin: 0;
    letter-spacing: -1px;
}

/* Support Accordion */
.support-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.support-accordion-item {
    border-bottom: 1px solid #e2e8f0;
    background: #ffffff;
}

.support-accordion-item:first-child {
    border-top: 1px solid #e2e8f0;
}

.support-accordion-header {
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s ease;
    user-select: none;
}

.support-accordion-header:hover {
    background-color: #f8f9fa;
}

.support-accordion-item.active .support-accordion-header {
    background-color: #f8f9fa;
}

.support-accordion-title {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    flex: 1;
    padding-right: 20px;
}

.support-accordion-icon {
    font-size: 20px;
    color: #64748b;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.support-accordion-content {
    display: none;
    overflow: hidden;
}

.support-accordion-content.show {
    display: block;
}

.support-accordion-body {
    padding: 0 24px 24px 24px;
    color: #64748b;
    font-size: 15px;
    line-height: 1.7;
}

.support-accordion-body p {
    margin: 0 0 12px 0;
}

.support-accordion-body p:last-child {
    margin-bottom: 0;
}

/* Loading Skeleton */
.support-skeleton {
    max-width: 900px;
    margin: 0 auto;
}

.support-skeleton-item {
    border-bottom: 1px solid #e2e8f0;
    padding: 20px 24px;
}

.skeleton-question {
    height: 24px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 4px;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Empty State */
.support-empty {
    text-align: center;
    padding: 60px 20px;
    color: #64748b;
    font-size: 16px;
}

/* Error State */
.support-error {
    text-align: center;
    padding: 60px 20px;
}

.error-content {
    max-width: 500px;
    margin: 0 auto;
}

.error-icon {
    font-size: 48px;
    color: #ef4444;
    margin-bottom: 16px;
}

.error-title {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 8px 0;
}

.error-message {
    color: #64748b;
    margin: 0 0 24px 0;
}

.retry-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #085DC5;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.retry-button:hover {
    background: #064a9a;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .support-section {
        padding: 30px 0;
    }

    .section-title {
        font-size: 36px;
    }

    .section-title-wrapper {
        margin-bottom: 40px;
    }

    .support-accordion-header {
        padding: 16px 20px;
    }

    .support-accordion-title {
        font-size: 15px;
    }

    .support-accordion-body {
        padding: 0 20px 20px 20px;
        font-size: 14px;
    }
}

