
    /* Additional custom styles for this page */
    .help-hero {
        background: linear-gradient(135deg, #f97316 0%, #3b82f6 100%);
        color: white;
        padding: 4rem 1rem;
        text-align: center;
    }
    .help-hero h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    .help-hero p {
        font-size: 1.25rem;
        margin-bottom: 2rem;
        opacity: 0.95;
    }
    .search-container {
        max-width: 600px;
        margin: 0 auto;
    }
    .search-wrapper {
        display: flex;
        gap: 0.5rem;
        background: white;
        border-radius: 50px;
        padding: 0.25rem;
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }
    .search-wrapper input {
        flex: 1;
        border: none;
        padding: 1rem 1.5rem;
        border-radius: 50px;
        font-size: 1rem;
        outline: none;
    }
    .search-wrapper button {
        background: #3b82f6;
        color: white;
        border: none;
        border-radius: 50px;
        padding: 0.75rem 2rem;
        font-weight: 600;
        cursor: pointer;
        transition: background 0.2s;
    }
    .search-wrapper button:hover {
        background: #2563eb;
    }
    .faq-section {
        padding: 4rem 1rem;
        max-width: 800px;
        margin: 0 auto;
    }
    .faq-title {
        font-size: 2rem;
        font-weight: 700;
        text-align: center;
        margin-bottom: 3rem;
        color: #1f2937;
    }
    .faq-item {
        background: #f9fafb;
        border-radius: 12px;
        margin-bottom: 1rem;
        border-left: 4px solid #f97316;
        overflow: hidden;
    }
    .faq-question {
        padding: 1.25rem 1.5rem;
        font-weight: 600;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: #1f2937;
    }
    .faq-question:hover {
        background: #f3f4f6;
    }
    .faq-question i {
        color: #3b82f6;
        transition: transform 0.2s;
    }
    .faq-answer {
        padding: 0 1.5rem 1.25rem 1.5rem;
        color: #4b5563;
        line-height: 1.6;
    }
    .faq-item[open] .faq-question i {
        transform: rotate(180deg);
    }
    .contact-options {
        background: #f3f4f6;
        padding: 4rem 1rem;
    }
    .contact-options h2 {
        font-size: 2rem;
        font-weight: 700;
        text-align: center;
        margin-bottom: 3rem;
        color: #1f2937;
    }
    .options-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
        max-width: 1200px;
        margin: 0 auto;
    }
    .option-card {
        background: white;
        border-radius: 16px;
        padding: 2rem;
        text-align: center;
        box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1);
        transition: transform 0.2s, box-shadow 0.2s;
    }
    .option-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 30px -10px rgba(0,0,0,0.15);
    }
    .option-icon {
        font-size: 3rem;
        background: linear-gradient(135deg, #f97316, #3b82f6);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 1rem;
    }
    .option-card h3 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
        color: #1f2937;
    }
    .option-card p {
        color: #6b7280;
        margin-bottom: 1.5rem;
    }
    .option-link {
        display: inline-block;
        background: #f97316;
        color: white;
        padding: 0.6rem 1.5rem;
        border-radius: 30px;
        text-decoration: none;
        font-weight: 600;
        transition: background 0.2s;
    }
    .option-link:hover {
        background: #ea580c;
    }
    .option-link.secondary {
        background: #3b82f6;
    }
    .option-link.secondary:hover {
        background: #2563eb;
    }
    .contact-form-section {
        padding: 4rem 1rem;
    }
    .form-container {
        max-width: 600px;
        margin: 0 auto;
        background: white;
        border-radius: 20px;
        padding: 2.5rem;
        box-shadow: 0 20px 35px -10px rgba(0,0,0,0.1);
        border: 1px solid #e5e7eb;
    }
    .form-container h2 {
        font-size: 2rem;
        font-weight: 700;
        text-align: center;
        margin-bottom: 0.5rem;
        color: #1f2937;
    }
    .form-container p {
        text-align: center;
        color: #6b7280;
        margin-bottom: 2rem;
    }
    .form-group {
        margin-bottom: 1.5rem;
    }
    .form-group label {
        display: block;
        font-weight: 500;
        margin-bottom: 0.5rem;
        color: #374151;
    }
    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 0.75rem 1rem;
        border: 2px solid #e5e7eb;
        border-radius: 12px;
        font-size: 1rem;
        transition: border-color 0.2s;
    }
    .form-group input:focus,
    .form-group textarea:focus {
        border-color: #3b82f6;
        outline: none;
    }
    .submit-btn {
        background: linear-gradient(135deg, #f97316, #3b82f6);
        color: white;
        border: none;
        border-radius: 12px;
        padding: 1rem 2rem;
        font-weight: 600;
        width: 100%;
        cursor: pointer;
        transition: opacity 0.2s;
    }
    .submit-btn:hover {
        opacity: 0.9;
    }
    /* Message styling (uses Django messages) */
    .alert {
        padding: 1rem;
        margin: 1rem auto;
        border-radius: 8px;
        max-width: 800px;
    }
    .alert-success {
        background: #d1fae5;
        color: #065f46;
        border: 1px solid #a7f3d0;
    }
    .alert-error {
        background: #fee2e2;
        color: #991b1b;
        border: 1px solid #fecaca;
    }
    @media (max-width: 640px) {
        .search-wrapper {
            flex-direction: column;
            background: transparent;
            box-shadow: none;
            gap: 1rem;
        }
        .search-wrapper input {
            border: 1px solid #d1d5db;
        }
        .help-hero h1 {
            font-size: 2rem;
        }
    }
