 /* FAQ Article Styles */
    .faq-section {
        margin-bottom: 3rem;       /* spacing between FAQ items */
        padding: 1rem 2rem;        /* padding around each section */
        border-bottom: 1px solid #ddd; /* subtle separation */
        background-color: white; /* #f9f9f9 light background for clarity */
        border-radius: 6px;
    }

    .faq-section h1 {
        font-size: 1.8rem;
        color: #2c3e50;
        margin-bottom: 1rem;
    }

    .faq-section h3 {
        font-size: 1.2rem;
        color: #34495e;
        margin-top: 1rem;
        margin-bottom: 0.5rem;
    }

    .faq-section p {
        font-size: 1rem;
        line-height: 1.6;
        color: #555;
        margin-bottom: 1rem;
    }

    .faq-section ul {
        margin-left: 2rem;
        margin-bottom: 1rem;
        list-style-type: disc;
    }

    .faq-section li {
        margin-bottom: 0.5rem;
    }

    .faq-section a {
        color: #2980b9;
        text-decoration: none;
        font-weight: 500;
    }

    .faq-section a:hover {
        text-decoration: underline;
    }

    .faq-image {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 1rem 0;
        border-radius: 4px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }

    /* Optional: underline for emphasized headings */
    .faq-section h1 u,
    .faq-section h3 u {
        text-decoration: underline;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
         .faq-section {
            padding: 1rem;
        }
        
        .faq-section h1 {
            font-size: 1.5rem;
        }

        .faq-section h3 {
            font-size: 1rem;
        }
    }
    .search-visual {
        margin-top: 24px;
        background: #f9fafb;
        border: 1px solid var(--border);
        border-radius: 12px;
        padding: 16px;
      }
  
      .search-visual img {
        width: 100%;
        height: auto;
        border-radius: 8px;
        display: block;
      }
  
      .search-caption {
        font-size: 0.85rem;
        color: var(--muted);
        margin-top: 10px;
        text-align: center;
      }