/* Support Page Specific Styling */
.support-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-top: 1rem;
}

.faq-section {
    padding: 2rem;
}

.faq-section h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.faq-item {
    border-bottom: 1px solid var(--border-subtle);
    padding: 1.5rem 0;
}

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

.faq-question {
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-main);
    margin-bottom: 0.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-answer {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Form Styles */
.form-section {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255,255,255,1) 0%, rgba(245,248,252,1) 100%);
}

.form-section h3 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.input-field {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-subtle);
    background: white;
    font-size: 0.95rem;
    font-family: inherit;
    transition: var(--transition);
}

.input-field:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(10, 132, 255, 0.1);
}

textarea.input-field {
    resize: vertical;
    min-height: 120px;
}

/* Contact Cards */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #EBF4FF;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.contact-info h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.contact-info p {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
}

@media (max-width: 900px) {
    .support-layout { grid-template-columns: 1fr; }
}
