
/* Content Pages */
.content-page {
    padding: 30px 20px;
}

.page-card {
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(180, 178, 178, 0.1);
    padding: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.page-card h1 {
    color: var(--primary-color);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* FAQ Category Buttons */
.faq-categories {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.category-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    background-color: var(--light-gray);
    color: var(--dark-gray);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.category-btn:hover {
    background-color: #e0e0e0;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.category-btn.active {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.category-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 64, 129, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .faq-categories {
        gap: 8px;
    }
    
    .category-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
}

/* Help/FAQ Specific */
.help-section, .legal-section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--light-gray);
}

.faq-item {
    background: var(--light-gray);
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 15px;
}

/* Contact Cards */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.contact-card {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    background: var(--light-gray);
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.avatar {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 10px;
}
/* Main Layout */
        .info-container {
            display: flex;
            min-height: calc(100vh - 120px);
        }
        
        /* Navigation Sidebar */
        .info-nav {
            width: 250px;
            background: grey;
            color: white;
            padding: 20px 0;
            position: sticky;
            top: 60px;
            height: calc(100vh - 120px);
            overflow-y: auto;
            z-index: 100;
        }
        
        .info-nav-item {
            display: flex;
            align-items: center;
            padding: 15px 20px;
            cursor: pointer;
            transition: all 0.3s;
            border-left: 4px solid transparent;
        }
        
        .info-nav-item:hover {
            background: rgba(255,255,255,0.1);
        }
        
        .info-nav-item.active {
            background: rgba(255,255,255,0.2);
            border-left: 4px solid var(--primary-color);
        }
        
        .info-nav-item i {
            margin-right: 15px;
            font-size: 24px;
        }
        
        /* Content Area */
        .info-content {
            flex: 1;
            padding: 30px;
            background: var(--light-gray);
            min-height: calc(100vh - 120px);
        }
        
        .content-section {
            display: none;
            animation: fadeIn 0.5s;
        }
        
        .content-section.active {
            display: block;
        }
        
        /* Mobile Navigation */
        .mobile-nav-toggle {
            display: none;
            position: fixed;
            bottom: 20px;
            left: 20px;
            z-index: 1000;
            background: var(--primary-color);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 10px rgba(114, 116, 117, 0.997);
            cursor: pointer;
        }
        
        @media (max-width: 992px) {
            .info-container {
                position: relative;
            }
            
            .info-nav {
                position: fixed;
                top: 60px;
                left: 0;
                width: 280px;
                height: calc(100vh - 60px);
                transform: translateX(-100%);
                transition: transform 0.3s ease;
                z-index: 500;
            }
            
            .info-nav.open {
                transform: translateX(0);
            }
            
            .info-content {
                margin-left: 0;
                padding: 20px;
                width: 100%;
            }
            
            .mobile-nav-toggle {
                display: flex;
            }
            
            body.nav-open {
                overflow: hidden;
            }
            
            body.nav-open::after {
                content: '';
                position: fixed;
                top: 60px;
                left: 0;
                right: 0;
                bottom: 0;
                background: rgba(0,0,0,0.5);
                z-index: 400;
            }
        }