/* --- Support / FAQ Section Styles --- */
.support-section {
    padding: 6rem 0; /* py-24 */
    background-color: #f8fafc; /* bg-muted/30 (same as about section for consistency) */
}

.support-content-wrapper {
    max-width: 48rem; /* max-w-3xl */
    margin-left: auto;
    margin-right: auto;
}

/* Header */
.support-header {
    text-align: center;
    margin-bottom: 4rem; /* mb-16 */
    animation: fadeIn 0.5s ease-out forwards;
}

.support-header h2 {
    font-size: 2.25rem; /* text-4xl */
    font-weight: 700;
    margin-bottom: 1rem;
    color: #0f172a;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .support-header h2 {
        font-size: 3rem; /* md:text-5xl */
    }
}

.support-header p {
    font-size: 1.25rem; /* text-xl */
    color: #64748b; /* text-muted-foreground */
}

/* Accordion Container */
.accordion-container {
    width: 100%;
    animation: fadeIn 0.5s ease-out forwards;
}

/* Accordion Item */
.accordion-item {
    border-bottom: 1px solid rgba(226, 232, 240, 0.5); /* border-border/50 */
}

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

/* Trigger Button */
.accordion-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1rem 0; /* py-4 */
    font-size: 1rem;
    font-weight: 500; /* font-medium */
    color: #0f172a;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: color 0.2s;
}

.accordion-trigger:hover {
    color: #0056b3; /* A clear, visible dark blue instead of var(--primary-color) which might be white */
    text-decoration: underline; /* hover:underline */
}

/* Icon Rotation */
.accordion-icon {
    width: 1rem; /* w-4 */
    height: 1rem; /* h-4 */
    flex-shrink: 0;
    transition: transform 0.2s;
    color: currentColor;
}

/* Rotate icon when expanded */
.accordion-trigger[aria-expanded="true"] .accordion-icon {
    transform: rotate(180deg);
}

/* Content */
.accordion-content {
    overflow: hidden;
    /* Basic animation for height is tricky with 'hidden', 
       but we can animate opacity/transform in the inner wrapper */
}

.accordion-content-inner {
    padding-bottom: 1rem;
    padding-top: 0.25rem;
    font-size: 0.875rem; /* text-sm */
    color: #64748b; /* text-muted-foreground */
    line-height: 1.5;
}

/* Keyframes (reused from other files if global, but defined here for safety) */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}