@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');


:root {
    --primary-color: #4f46e5;
    --primary-dark: #3730a3;
    --secondary-color: #64748b;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --background-color: #f1f5f9;
    --surface-color: #ffffff;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --border-color: #e2e8f0;
    --border-light: #f1f5f9;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --radius: 10px;
    --radius-sm: 6px;
}
body {
    margin: 0;
    font-family: 'Inter';
}
/* Support Navigation */
.support-nav {
    background-color: rgba(255, 255, 255, 0.888);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(8px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.support-nav .logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.support-nav .logo img {
    height: 32px;
    width: auto;
    transition: transform 0.2s ease;
}

.support-nav .logo:hover img {
    transform: translateY(-1px);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-outline {
    background: linear-gradient(135deg, #4f46e5, #3730a3);
    color: white;
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-family: 'Inter';
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.btn-outline:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

/* Support Hero Section */
.support-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 30px 0 40px;
    position: relative;
    overflow: hidden;
}

.support-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.support-hero .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
    text-align: center;
}

.support-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    opacity: 0.9;
    line-height: 1.6;
    margin: 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Support Container Layout */
.support-container {
    background-color: var(--background-color);
    min-height: calc(100vh - 200px);
    padding: 40px 0;
}

.support-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 12px 16px;
    }
    
    .support-nav .logo img {
        height: 28px;
    }
    
    .btn-outline {
        padding: 6px 12px;
        font-size: 13px;
    }
    
    .support-hero {
        padding: 40px 0 30px;
    }
    
    .support-hero h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .support-layout {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 0 16px;
    }
    
    .support-container {
        padding: 32px 0;
    }
}

@media (max-width: 480px) {
    .support-hero h1 {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .nav-container {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .nav-actions {
        justify-content: center;
    }
}

.support-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    font-family: 'Inter', BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #333;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 2.5rem;
}
.header h1 {
    font-size: 2.2rem;
    font-family: 'Inter', BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #4f46e5;
    margin-bottom: 0.5rem;
}
.header p {
    color: #555;
    font-size: 1rem;
}

/* Search */
.search-box {
    margin-bottom: 2rem;
}
.search-box input {
    width: 100%;
    padding: 0.9rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: border 0.2s ease;
}
.search-box input:focus {
    border-color: #4f46e5;
    outline: none;
}

/* Form styling */
.form {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 5%;
}
.form input,
.form textarea {
    font-family: 'Inter';
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 0.9rem;
    font-size: 1rem;
    transition: border 0.2s ease;
    resize: none;
}
.form input:focus,
.form textarea:focus {
    color: black;
    outline: none;
    border-color: #4f46e5;
}
.form button {
    background: #4f46e5;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    padding: 0.9rem;
    cursor: pointer;
    transition: background 0.2s ease;
}
.form button:hover {
    background: #4338ca;
}
.success {
    text-align: center;
    margin-top: 0.5rem;
    color: green;
    font-weight: 500;
}

/* FAQ Section */
.faq-section h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #4f46e5;
}
.faq-item {
    margin-bottom: 1rem;
}
.faq-question {
    width: 100%;
    background: #f9fafb;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    border: none;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.2s ease;
}
.faq-question:hover {
    background: #f0f4ff;
}
.faq-answer {
    margin-top: 0.5rem;
    padding: 1rem;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    font-size: 0.95rem;
    color: #444;
}