/* Support Page Styles */
.support-container {
    display: flex;
    max-width: 1200px;
    margin: 2rem auto;
    gap: 2rem;
    padding: 0 1rem;
}

/* Sidebar Styles */
.support-sidebar {
    flex: 0 0 300px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    height: fit-content;
    position: sticky;
    top: 2rem;
}

.search-box {
    position: relative;
    margin-bottom: 1.5rem;
}

.search-box input {
    width: 100%;
    padding: 0.8rem 1rem;
    padding-right: 2.5rem;
    border: 2px solid #e1e1e1;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.search-box input:focus {
    border-color: #4a90e2;
    outline: none;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.search-box i {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
}

.support-nav h3 {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 1rem;
}

.support-nav ul {
    list-style: none;
    padding: 0;
}

.support-nav li {
    margin-bottom: 0.5rem;
}

.support-nav a {
    display: flex;
    align-items: center;
    padding: 0.8rem 1rem;
    color: #555;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.support-nav a i {
    margin-right: 0.8rem;
    width: 20px;
    text-align: center;
}

.support-nav li.active a,
.support-nav a:hover {
    background: #4a90e2;
    color: #fff;
}

/* Main Content Styles */
.support-content {
    flex: 1;
}

.support-section {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    display: none;
}

.support-section.active {
    display: block;
}

.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.section-header i {
    font-size: 1.8rem;
    color: #4a90e2;
    margin-right: 1rem;
}

.section-header h2 {
    font-size: 1.5rem;
    color: #333;
    margin: 0;
}

/* FAQ List Styles */
.faq-list {
    display: grid;
    gap: 1.5rem;
}

.faq-item {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    font-size: 1.1rem;
    color: #333;
    margin: 0 0 1rem 0;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.faq-item ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
    color: #666;
}

.faq-item ul li {
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .support-container {
        flex-direction: column;
    }

    .support-sidebar {
        flex: none;
        position: static;
        width: 100%;
    }
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.support-section.active {
    animation: fadeIn 0.3s ease-out;
}

/* Interactive Elements */
.faq-item a {
    color: #4a90e2;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.faq-item a:hover {
    color: #357abd;
    text-decoration: underline;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #a1a1a1;
}

/* Support Header */
.support-header {
    text-align: center;
    padding: 60px 20px;
    background: var(--gradient);
    color: var(--text-light);
}

.support-header h1 {
    font-size: 3em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.support-header p {
    font-size: 1.2em;
    opacity: 0.9;
} 