.help-center-page {
    padding-top: 0;
}

.help-center-hero {
    background: linear-gradient(135deg, #ff4d4d 0%, #cc0000 100%);
    color: white;
    padding: 100px 0 80px;
    text-align: center;
}

.help-center-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.help-center-hero .subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.subtitle {
  color: #fff;
}

.search-box {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    gap: 10px;
}

.search-box input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
}

.search-box button {
    min-width: 120px;
}

.help-center-content {
    padding: 80px 0;
}

.help-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.category-card {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 0, 0, 0.1);
    border-radius: 50%;
}

.category-card h2 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.category-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.popular-articles h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.8rem;
    color: var(--dark-color);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.article-card {
    background: white;
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.article-card h3 {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--dark-color);
}

.article-card p {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.read-more {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.9rem;
}

.help-section {
    margin-bottom: 60px;
}

.help-section h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--dark-color);
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    background-color: var(--white);
}

.faq-question {
    width: 100%;
    padding: 20px;
    text-align: left;
    background-color: var(--white);
    border: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: #f5f5f5;
}

.faq-question:after {
    content: '+';
    font-size: 1.2rem;
}

.faq-question.active:after {
    content: '-';
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p, .faq-answer ol, .faq-answer ul {
    padding: 0 0 20px;
}

.contact-promo {
    text-align: center;
    padding: 60px;
    background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
    border-radius: var(--border-radius);
    margin-top: 60px;
}

.contact-promo h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.contact-promo p {
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .help-center-hero {
        padding: 80px 0 60px;
    }
    
    .help-center-hero h1 {
        font-size: 2.2rem;
    }
    
    .search-box {
        flex-direction: column;
    }
    
    .contact-promo {
        padding: 40px 20px;
    }
}
