.search-bar-help {
    margin-bottom: 2rem;
    display: flex;
    gap: 10px;
}

.search-bar-help input[type="text"] {
    flex-grow: 1;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
}

.search-bar-help button {
    padding: 1rem 1.5rem;
    background: var(--gradient-primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.search-bar-help button:hover {
    opacity: 0.9;
}

.help-categories {
    margin-top: 3rem;
}

.help-categories h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    color: #e0e0e0; /* Light text color */
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.category-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-10px);
    border-color: #84cc16;
    box-shadow: 0 0 20px rgba(132, 204, 22, 0.2);
}

.category-card i {
    font-size: 3rem;
    color: var(--gradient-primary); /* Accent color */
    margin-bottom: 1rem;
}

.category-card h3 {
    font-family: 'Orbitron', sans-serif; /* Ensure Orbitron for titles */
    font-size: 1.8rem;
    color: #e0e0e0; /* Light text color */
    margin-bottom: 1rem;
}

.category-card ul {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.category-card ul li {
    margin-bottom: 0.8rem;
}

.category-card ul li a {
    text-decoration: none;
    color: var(--text-secondary); /* Secondary text color */
    font-weight: 500;
    transition: color 0.3s ease;
}

.category-card ul li a:hover {
    color: #84cc16;
}

.faq-section {
    margin-top: 3rem;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    color: #e0e0e0; /* Light text color */
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

.faq-item:hover {
    border-color: #84cc16;
    transform: translateY(-3px);
}

.faq-item h3 {
    font-family: 'Inter', sans-serif; /* Inter for FAQ questions */
    font-size: 1.4rem;
    color: #e0e0e0; /* Light text color */
    margin-bottom: 0.5rem;
    position: relative;
    padding-right: 30px; /* Space for arrow */
}

.faq-item h3::after {
    content: '\f078'; /* Chevron-down icon */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
    color: var(--gradient-primary); /* Icon color */
}

.faq-item.active h3::after {
    transform: translateY(-50%) rotate(180deg);
}

.faq-item p {
    font-size: 1rem;
    color: var(--text-secondary); /* Secondary text color */
    line-height: 1.6;
    display: none; /* Hidden by default */
    padding-top: 1rem;
}

.faq-item.active p {
    display: block;
}

.contact-support-section {
    margin-top: 3rem;
    text-align: center;
}

.contact-support-section h2 {
    font-size: 2.5rem;
    color: #e0e0e0; /* Light text color */
    margin-bottom: 1rem;
}

.contact-support-section p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.contact-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.contact-option-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-option-card:hover {
    transform: translateY(-10px);
    border-color: #84cc16;
    box-shadow: 0 0 20px rgba(132, 204, 22, 0.2);
}

.contact-option-card i {
    font-size: 3rem;
    color: var(--gradient-primary); /* Accent color */
    margin-bottom: 1rem;
}

.contact-option-card h3 {
    font-family: 'Orbitron', sans-serif; /* Ensure Orbitron for titles */
    font-size: 1.8rem;
    color: #e0e0e0; /* Light text color */
    margin-bottom: 0.5rem;
}

.contact-option-card p {
    font-size: 1rem;
    color: var(--text-secondary); /* Secondary text color */
}