<!-- CSS Styles -->
    /* Reset & Container Styles */
    .faq-section * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    .faq-section {
        font-family: 'Inter', sans-serif;
        color: #334155;
        max-width: 1200px;
        width: 100%;
        margin: 0 auto;
        padding: 40px 20px;
    }

    /* Header Section */
    .faq-header {
        text-align: center;
        margin-bottom: 45px;
    }

    .faq-badge {
        background-color: #e0f2fe;
        color: #0284c7;
        font-size: 0.85rem;
        font-weight: 600;
        padding: 6px 16px;
        border-radius: 20px;
        display: inline-block;
        margin-bottom: 12px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .faq-title {
        font-size: 2.25rem;
        font-weight: 700;
        color: #0f172a;
        letter-spacing: -0.5px;
        margin-bottom: 8px;
    }

    .faq-subtitle {
        font-size: 1rem;
        color: #64748b;
    }

    /* Two-Column Grid Layout */
    .faq-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    /* FAQ Card Container - Left-Aligned */
    .faq-card {
        background: #ffffff;
        border-radius: 12px;
        padding: 24px;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 16px;
        border: 1px solid #e2e8f0;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
        transition: all 0.25s ease-in-out;
        text-align: left;
    }

    .faq-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 18px -4px rgba(0, 0, 0, 0.06);
        border-color: #0284c7;
    }

    /* Highlighted Card */
    .faq-card.highlight-card {
        background: #f0f9ff;
        border-color: #bae6fd;
    }

    .faq-card.highlight-card:hover {
        border-color: #0284c7;
    }

    /* Icons */
    .faq-icon {
        background: #f0f9ff;
        color: #0284c7;
        width: 44px;
        height: 44px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
        flex-shrink: 0;
        transition: all 0.25s ease;
    }

    .faq-card:hover .faq-icon {
        background: #0284c7;
        color: #ffffff;
    }

    .highlight-card .faq-icon {
        background: #0284c7;
        color: #ffffff;
    }

    /* Content Area - Left Aligned */
    .faq-content {
        flex: 1;
        text-align: left;
    }

    .faq-question {
        font-size: 1.05rem;
        font-weight: 600;
        color: #0f172a;
        margin-bottom: 6px;
        line-height: 1.4;
        text-align: left;
    }

    .faq-answer {
        font-size: 0.925rem;
        color: #475569;
        line-height: 1.55;
        text-align: left;
    }

    .faq-answer strong {
        color: #0f172a;
    }

    /* Links & Action Styles */
    .faq-answer a {
        color: #0284c7;
        text-decoration: none;
        font-weight: 500;
    }

    .faq-answer a:hover {
        text-decoration: underline;
    }

    .faq-answer a.btn-link {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        background-color: #f0f9ff;
        padding: 2px 8px;
        border-radius: 6px;
        font-weight: 600;
    }

    /* Responsive Layout */
    @media (max-width: 900px) {
        .faq-grid {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 640px) {
        .faq-card {
            flex-direction: row;
            gap: 12px;
            padding: 18px;
        }

        .faq-title {
            font-size: 1.75rem;
        }
    }