/* ============================================
   Support Page Styles
   ============================================ */
.support-hero {
    background: linear-gradient(135deg, #594bf7 0%, #3964ff 100%);
    padding: 80px 0 60px;
    text-align: center;
    color: #fff;
}
.support-hero h1 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 1rem;
}
.support-hero p {
    font-size: 19px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}
.support-section {
    padding: 60px 0;
}
.support-section:nth-child(even) {
    background: #f8f9fb;
}
.support-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 2rem;
    text-align: center;
}
.support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}
.support-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.support-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.support-card .icon {
    font-size: 40px;
    margin-bottom: 1rem;
}
.support-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 0.75rem;
}
.support-card p {
    color: #4a5568;
    font-size: 15px;
    line-height: 1.6;
}
.support-card a {
    color: #594bf7;
    text-decoration: none;
    font-weight: 600;
}
.support-card a:hover {
    text-decoration: underline;
}
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
    background: #fff;
}
.faq-question {
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 18px;
    color: #1a1a2e;
    transition: background 0.2s ease;
}
.faq-question:hover {
    background: #f7f8fc;
}
.faq-question::after {
    content: '+';
    font-size: 24px;
    font-weight: 300;
    color: #594bf7;
    transition: transform 0.2s ease;
}
.faq-item.active .faq-question::after {
    content: '\2212';
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.faq-answer-inner {
    padding: 0 1.5rem 1.25rem;
    color: #4a5568;
    font-size: 16px;
    line-height: 1.7;
}
.faq-item.active .faq-answer {
    max-height: 500px;
}
.sla-table {
    max-width: 700px;
    margin: 0 auto;
    border-collapse: collapse;
    width: 100%;
}
.sla-table th, .sla-table td {
    padding: 1rem 1.25rem;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}
.sla-table th {
    background: #f7f8fc;
    font-weight: 600;
    color: #1a1a2e;
    font-size: 15px;
}
.sla-table td {
    color: #4a5568;
    font-size: 15px;
}
.contact-cta {
    text-align: center;
    padding: 60px 0;
    background: linear-gradient(135deg, #594bf7 0%, #3964ff 100%);
    color: #fff;
}
.contact-cta h2 {
    color: #fff;
    font-size: 32px;
    margin-bottom: 1rem;
}
.contact-cta p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 2rem;
}
.contact-cta .cta-btn {
    display: inline-block;
    background: #fff;
    color: #594bf7;
    padding: 14px 36px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 17px;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.contact-cta .cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
@media (max-width: 768px) {
    .support-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    .support-hero h1 {
        font-size: 28px;
    }
    .faq-container {
        padding: 0 1rem;
    }
    .sla-table {
        font-size: 14px;
    }
}
