.elementor-25371 .elementor-element.elementor-element-447817c{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS */<!-- CSS Styles for Immigration Terminology Tool -->
<style>
    .immigration-lexicon {
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
        font-family: 'Open Sans', sans-serif;
        color: #2A3A4A;
        background-color: white;
    }

    .immigration-lexicon h1 {
        font-family: 'Oxygen', sans-serif;
        font-size: clamp(1.8rem, 4vw, 2.5rem);
        font-weight: 700;
        margin: 0 0 30px 0;
        text-align: center;
        color: #2A3A4A;
    }

    .search-container {
        position: relative;
        margin-bottom: 25px;
    }

    .search-input {
        width: 100%;
        padding: 15px 20px;
        font-size: 16px;
        border: 2px solid #e0e0e0;
        border-radius: 8px;
        font-family: 'Open Sans', sans-serif;
        transition: border-color 0.3s ease;
        box-sizing: border-box;
    }

    .search-input:focus {
        outline: none;
        border-color: #2A3A4A;
    }

    .filters-container {
        position: sticky;
        top: 60px;
        z-index: 100;
        background-color: white;
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 25px;
        align-items: center;
        padding: 25px;
        border-bottom: 2px solid #f0f0f0;
        box-shadow: 0 2px 8px rgba(42, 58, 74, 0.1);
    }

    .filter-label {
        font-weight: 600;
        font-size: 14px;
        color: #2A3A4A;
    }

    .filter-select {
        padding: 8px 12px;
        border: 1px solid #e0e0e0;
        border-radius: 6px;
        font-family: 'Open Sans', sans-serif;
        font-size: 14px;
        background-color: white;
        color: #2A3A4A;
        min-width: 120px;
    }

    .clear-filters {
        background: none;
        border: 1px solid #2A3A4A;
        color: #2A3A4A;
        padding: 8px 16px;
        border-radius: 6px;
        cursor: pointer;
        font-family: 'Open Sans', sans-serif;
        font-size: 14px;
        transition: all 0.3s ease;
    }

    .clear-filters:hover {
        background-color: #2A3A4A;
        color: white;
    }

    .results-info {
        margin-bottom: 20px;
        font-size: 14px;
        color: #666;
        text-align: center;
    }

    .terms-grid {
        display: grid;
        gap: 20px;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .term-card {
        background: white;
        border: 1px solid #e0e0e0;
        border-radius: 8px;
        padding: 20px;
        transition: all 0.3s ease;
        box-shadow: 0 2px 4px rgba(42, 58, 74, 0.1);
    }

    .term-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(42, 58, 74, 0.15);
    }

    .term-title {
        font-family: 'Oxygen', sans-serif;
        font-size: 1.2rem;
        font-weight: 600;
        margin: 0 0 10px 0;
        color: #2A3A4A;
    }

    .term-category {
        display: inline-block;
        background-color: #f5f5f5;
        color: #2A3A4A;
        padding: 4px 12px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: 600;
        margin-bottom: 12px;
        text-transform: uppercase;
    }

    .term-definition {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 12px;
        color: #555;
    }

    .term-pronunciation {
        font-style: italic;
        font-size: 13px;
        color: #666;
        margin-bottom: 8px;
    }

    .term-languages {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 12px;
    }

    .language-tag {
        background-color: #2A3A4A;
        color: white;
        padding: 3px 8px;
        border-radius: 4px;
        font-size: 11px;
        font-weight: 500;
    }

    .no-results {
        text-align: center;
        padding: 60px 20px;
        color: #999;
        font-size: 16px;
    }

    .loading {
        text-align: center;
        padding: 40px;
        color: #666;
    }

    @media (max-width: 768px) {
        .immigration-lexicon {
            padding: 15px;
        }

        .filters-container {
            flex-direction: column;
            align-items: stretch;
        }

        .filter-select {
            min-width: 100%;
        }

        .terms-grid {
            grid-template-columns: 1fr;
        }

        .term-card {
            padding: 15px;
        }
    }

    @media (max-width: 480px) {
        .immigration-lexicon {
            padding: 10px;
        }

        .search-input {
            padding: 12px 15px;
            font-size: 16px;
        }
    }
</style>/* End custom CSS */