        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
body{
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    
   
    color: #fff;

    line-height: 1.5;
  
}
  
     
                        
                        /* Help Hero */
  .help-hero {
  background: linear-gradient(135deg, #f39c12, #e67e22);
        color: white;
        padding: 50px 20px;
        text-align: center;
        margin-bottom: 40px;
        position: relative;
        overflow: hidden;
}
        
   .help-hero:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path d="M0,100 L100,0 L100,100 Z" fill="rgba(255,255,255,0.1)"/></svg>');
        background-size: cover;
    }
        .help-hero-content {
            max-width: 700px;
            margin: 0 auto;
            text-align: center;
        }
        
        .help-hero h1 {
            font-size: 30px;
            margin-bottom: 10px;
            color: #fff;
            font-weight: 500;
        }
        
        .help-hero p {
            font-size: 16px;
            color: #fff;
            opacity: 0.9;
            margin-bottom: 20px;
        }
        
        .search-container {
            max-width: 500px;
            margin: 0 auto;
            position: relative;
        }
        
        .search-input {
            width: 100%;
            padding: 12px 16px 12px 42px;
            border: none;
            font-size: 14px;
            background: #fff;
        }
        
        .search-icon {
            position: absolute;
            left: 16px;
            top: 50%;
            transform: translateY(-50%);
            color: #999;
            font-size: 14px;
        }
        
        /* Main Content */
        .main-container {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
        }
        
        .section-header {
            margin-bottom: 20px;
        }
        
        .section-header h2 {
            color: #333;
            font-size: 20px;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .section-header h2 i {
            color: #f57c00;
        }
        
        .view-all {
            color: #f57c00;
            text-decoration: none;
            font-size: 14px;
        }
        
        .view-all:hover {
            text-decoration: underline;
        }
        
        /* Topics Grid */
        .topics-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-bottom: 40px;
        }
        
        .topic-card {
            background: #fff;
            padding: 20px;
            text-decoration: none;
            display: block;
            border: 1px solid #e0e0e0;
            transition: border-color 0.2s;
        }
        
        .topic-card:hover {
            border-color: #f57c00;
        }
        
        .topic-icon {
            width: 48px;
            height: 48px;
            background: #fff4e5;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: #f57c00;
            margin-bottom: 16px;
        }
        
        .topic-title {
            color: #333;
            font-size: 16px;
            font-weight: 500;
            margin-bottom: 6px;
        }
        
        .topic-category {
            color: #777;
            font-size: 13px;
            margin-bottom: 12px;
        }
        
        .topic-link {
            color: #f57c00;
            font-size: 13px;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        
        .topic-link i {
            font-size: 12px;
        }
        
        /* Categories Grid */
        .categories-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-bottom: 40px;
        }
        
        .category-card {
            background: #fff;
            padding: 20px;
            border: 1px solid #e0e0e0;
        }
        
        .category-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
            padding-bottom: 12px;
            border-bottom: 1px solid #e0e0e0;
        }
        
        .category-icon {
            width: 40px;
            height: 40px;
            background: #fff4e5;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: #f57c00;
        }
        
        .category-info h3 {
            color: #333;
            font-size: 16px;
            font-weight: 500;
            margin-bottom: 4px;
        }
        
        .category-count {
            color: #777;
            font-size: 13px;
        }
        
        .category-topics {
            list-style: none;
        }
        
        .category-topic {
            padding: 10px 0;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .category-topic:last-child {
            border-bottom: none;
        }
        
        .category-topic a {
            color: #444;
            text-decoration: none;
            font-size: 13px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: color 0.2s;
        }
        
        .category-topic a:hover {
            color: #f57c00;
        }
        
        .topic-arrow {
            color: #ccc;
            font-size: 11px;
        }
        
        /* Contact CTA */
        .contact-cta {
            background: #f57c00;
            padding: 40px;
            margin-bottom: 40px;
            text-align: center;
        }
        
        .contact-cta h3 {
            color: #fff;
            font-size: 22px;
            font-weight: 500;
            margin-bottom: 12px;
        }
        
        .contact-cta p {
            color: #fff;
            opacity: 0.9;
            font-size: 14px;
            margin-bottom: 24px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .btn {
            padding: 10px 24px;
            text-decoration: none;
            font-size: 13px;
            font-weight: 500;
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: transparent;
            border: 1px solid #fff;
            color: #fff;
            transition: all 0.2s;
        }
        
        .btn:hover {
            background: #fff;
            color: #f57c00;
        }
        
        .btn-primary {
            background: #fff;
            color: #f57c00;
            border: none;
        }
        
        .btn-primary:hover {
            background: #f0f0f0;
        }
        
        .btn-outline {
            background: transparent;
            border: 1px solid #fff;
            color: #fff;
        }
        
        /* FAQ Preview */
        .faq-preview {
            background: #fff;
            padding: 24px;
            border: 1px solid #e0e0e0;
        }
        
        .faq-list {
            margin-bottom: 20px;
        }
        
        .faq-item {
            border-bottom: 1px solid #e0e0e0;
        }
        
        .faq-item:last-child {
            border-bottom: none;
        }
        
        .faq-question {
            color: #333;
            font-weight: 500;
            font-size: 14px;
            padding: 16px 0;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .faq-question i {
            color: #f57c00;
            font-size: 12px;
            transition: transform 0.2s;
        }
        
        .faq-answer {
            color: #666;
            font-size: 13px;
            line-height: 1.6;
            padding-bottom: 16px;
            display: none;
        }
        
        .faq-item.active .faq-answer {
            display: block;
        }
        
        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .topics-grid,
            .categories-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
       
            
            .help-hero h1 {
                font-size: 26px;
            }
            
            .help-hero p {
                font-size: 14px;
            }
            
            .topics-grid,
            .categories-grid {
                grid-template-columns: 1fr;
            }
            
            .contact-cta {
                padding: 30px 20px;
            }
            
            .contact-cta h3 {
                font-size: 20px;
            }
        }
        
        @media (max-width: 480px) {
            .btn {
                width: 100%;
                justify-content: center;
            }
            
            .contact-cta div {
                flex-direction: column;
            }
        }