
        .main-content {
            /* padding: 30px 0; */
            padding-bottom: 3rem;
            background-color: #f9f9f9;
            min-height: 60vh;
        }
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }
        .crumb-wrap {
            /* padding: 10px 0; */
            color: #666;
            font-size: 14px;
        }
        .crumb-wrap a {
            color: #666;
            text-decoration: none;
        }
        .crumb-wrap a:hover {
            color: #e74c3c;
        }
        .content {
            background: #fff;
            padding: 30px;
            border-radius: 5px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        .page-title {
            font-size: 24px;
            color: #333;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
        }
        .help-categories {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 30px;
        }
        .help-category {
            flex: 1;
            min-width: 200px;
            padding: 20px;
            background: #f5f5f5;
            border-radius: 5px;
            transition: all 0.3s;
            cursor: pointer;
        }
        .help-category:hover {
            background: #e74c3c;
            color: white;
        }
        .help-category:hover .category-title {
            color: white;
        }
        .category-icon {
            font-size: 30px;
            margin-bottom: 10px;
        }
        .category-title {
            font-size: 18px;
            color: #333;
            margin-bottom: 10px;
        }
        .help-questions {
            margin-top: 40px;
        }
        .question-section {
            margin-bottom: 30px;
        }
        .section-title {
            font-size: 20px;
            color: #333;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px dashed #eee;
        }
        .question-item {
            margin-bottom: 15px;
            position: relative;
        }
        .question {
            font-weight: bold;
            color: #444;
            margin-bottom: 5px;
            cursor: pointer;
            padding-left: 20px;
            position: relative;
        }
        .question:before {
            content: "Q";
            position: absolute;
            left: 0;
            color: #e74c3c;
            font-weight: bold;
        }
        .answer {
            color: #666;
            line-height: 1.6;
            padding-left: 25px;
            margin-bottom: 10px;
            display: none;
            position: relative;
        }
        .answer:before {
            content: "A";
            position: absolute;
            left: 5px;
            color: #2ecc71;
            font-weight: bold;
        }
        .contact-box {
            background: #f5f5f5;
            padding: 20px;
            border-radius: 5px;
            margin-top: 30px;
        }
        .contact-title {
            font-size: 18px;
            margin-bottom: 10px;
        }
        .contact-methods {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }
        .contact-method {
            flex: 1;
            min-width: 200px;
        }
        .method-title {
            font-weight: bold;
            margin-bottom: 5px;
        }
        @media (max-width: 768px) {
            .help-categories {
                flex-direction: column;
            }
        }
   