.elementor-25397 .elementor-element.elementor-element-d9ba4bd{--display:flex;--min-height:74vh;--justify-content:center;--align-items:center;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );}/* Start custom CSS */<!-- CSS Styles for Visa Finder Quiz -->
<style>
    .visa-finder {
        max-width: 1000px;
        margin: 0 auto;
        padding: 20px;
        font-family: 'Open Sans', sans-serif;
        color: #2A3A4A;
        background-color: white;
    }

    .visa-finder h1 {
        font-family: 'Oxygen', sans-serif;
        font-size: clamp(1.4rem, 3vw, 1.8rem);
        font-weight: 700;
        margin: 0 0 20px 0;
        text-align: center;
        color: #2A3A4A;
    }

    .step-indicator {
        position: absolute;
        top: 15px;
        left: 15px;
        font-size: 11px;
        color: #888;
        font-weight: 500;
        background: rgba(0,0,0,0.05);
        padding: 4px 8px;
        border-radius: 4px;
    }

    .quiz-container {
        background: white;
        border-radius: 12px;
        padding: 25px;
        box-shadow: 0 4px 20px rgba(42, 58, 74, 0.1);
        border: 1px solid #e0e0e0;
        min-height: 350px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        position: relative;
                font-family: 'Open Sans', sans-serif;
    }

    .question-container {
        flex: 1;
        padding-top: 15px;
    }

    .question-title {
        font-family: 'Oxygen', sans-serif;
        font-size: 1.1rem;
        font-weight: 600;
        margin: 0 0 15px 0;
        color: #2A3A4A;
        line-height: 1.3;
        
    }

    .question-subtitle {
        font-size: 0.85rem;
        color: #666;
        margin-bottom: 20px;
        line-height: 1.4;
                font-family: 'Open Sans', sans-serif;
    }

    .options-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 12px;
        margin-bottom: 25px;
    }

    @media (min-width: 769px) {
        .options-container {
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }
        
        .quiz-container {
            min-height: 400px;
        }
        
        .option-button {
            min-height: 65px;
            padding: 15px;
        }
    }

    @media (min-width: 1200px) {
        .options-container {
            grid-template-columns: repeat(2, 1fr);
            gap: 18px;
        }
        
        .quiz-container {
            min-height: 450px;
            max-width: 900px;
            margin: 0 auto;
        }
    }

    .option-button {
        background: white;
        border: 2px solid #e0e0e0;
        border-radius: 8px;
        padding: 14px;
        cursor: pointer;
        transition: all 0.3s ease;
        text-align: left;
        font-family: 'Open Sans', sans-serif;
        font-size: 13px;
        color: #2A3A4A;
        position: relative;
        min-height: 60px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        width: 100%;
        box-sizing: border-box;
    }

    .option-button:hover {
        border-color: #2A3A4A;
        background-color: #f9f9f9;
        transform: translateY(-1px);
        box-shadow: 0 3px 10px rgba(42, 58, 74, 0.15);
    }

    .option-button.selected {
        border-color: #2A3A4A;
        background-color: #2A3A4A;
        color: white;
    }

    .option-text {
        font-weight: 600;
        margin-bottom: 3px;
        font-size: 13px;
    }

    .option-subtitle {
        font-size: 11px;
        opacity: 0.8;
    }

    .navigation-buttons {
        display: flex;
        justify-content: space-between;
        gap: 12px;
        margin-top: 15px;
    }

    .nav-button {
        background: #2A3A4A;
        color: white;
        border: none;
        border-radius: 6px;
        padding: 12px 25px;
        cursor: pointer;
        font-family: 'Open Sans', sans-serif;
        font-size: 14px;
        font-weight: 600;
        transition: all 0.3s ease;
        flex: 1;
    }

    .nav-button:hover {
        background: #1A2A3A;
        transform: translateY(-1px);
        box-shadow: 0 3px 10px rgba(42, 58, 74, 0.3);
    }

    .nav-button:disabled {
        background: #ccc;
        cursor: not-allowed;
        transform: none;
        box-shadow: none;
    }

    .nav-button.secondary {
        background: transparent;
        color: #2A3A4A;
        border: 2px solid #2A3A4A;
    }

    .nav-button.secondary:hover {
        background: #2A3A4A;
        color: white;
    }

    .results-container {
        text-align: center;
        padding: 15px 0;
                font-family: 'Open Sans', sans-serif;
    }

    .results-title {
        font-family: 'Oxygen', sans-serif;
        font-size: 1.6rem;
        font-weight: 700;
        color: #2A3A4A;
        margin: 0 0 15px 0;
    }

    .visa-recommendation {
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        border-radius: 10px;
        padding: 20px;
        margin: 15px 0;
        border-left: 4px solid #2A3A4A;
                font-family: 'Open Sans', sans-serif;
    }

    .visa-type {
        font-family: 'Oxygen', sans-serif;
        font-size: 1.1rem;
        font-weight: 600;
        color: #2A3A4A;
        margin: 0 0 8px 0;
                font-family: 'Open Sans', sans-serif;
    }

    .visa-description {
        font-size: 14px;
        line-height: 1.5;
        color: #555;
        margin-bottom: 12px;
                font-family: 'Open Sans', sans-serif;
    }

    .visa-requirements {
        text-align: left;
        margin: 12px 0;
                font-family: 'Open Sans', sans-serif;
    }

    .visa-requirements h4 {
        font-family: 'Oxygen', sans-serif;
        font-size: 0.95rem;
        font-weight: 600;
        color: #2A3A4A;
        margin: 0 0 8px 0;
    }

    .requirements-list {
        list-style: none;
        padding: 0;
        margin: 0;
                font-family: 'Open Sans', sans-serif;
    }

    .requirements-list li {
        padding: 4px 0;
        position: relative;
        padding-left: 18px;
        font-size: 12px;
        color: #666;        font-family: 'Open Sans', sans-serif;
    }

    .requirements-list li:before {
        content: "✓";
        position: absolute;
        left: 0;
        color: #2A3A4A;
        font-weight: bold;
    }

    .cta-button {
        background: linear-gradient(135deg, #2A3A4A 0%, #4A5A6A 100%);
        color: white;
        border: none;
        border-radius: 6px;
        padding: 12px 30px;
        cursor: pointer;
        font-family: 'Open Sans', sans-serif;
        font-size: 14px;
        font-weight: 600;
        margin-top: 15px;
        transition: all 0.3s ease;
    }

    .cta-button:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 15px rgba(42, 58, 74, 0.3);
    }

    .restart-button {
        background: transparent;
        color: #2A3A4A;
        border: 2px solid #2A3A4A;
        border-radius: 6px;
        padding: 10px 25px;
        cursor: pointer;
        font-family: 'Open Sans', sans-serif;
        font-size: 12px;
        font-weight: 600;
        margin-top: 12px;
        transition: all 0.3s ease;
    }

    .restart-button:hover {
        background: #2A3A4A;
        color: white;
    }

    .landing-container {
        text-align: center;
        padding: 30px 15px;
        max-width: 650px;
        margin: 0 auto;
    }

    .landing-title {
        font-family: 'Oxygen', sans-serif;
        font-size: clamp(1.4rem, 3vw, 1.8rem);
        font-weight: 700;
        margin: 0 0 12px 0;
        color: #2A3A4A;
        line-height: 1.2;
    }

    .landing-subtitle {
        font-size: 1.1rem;
        color: #666;
        margin-bottom: 25px;
        font-weight: 600;
    }

    .landing-description {
        text-align: left;
        margin-bottom: 30px;
        font-size: 14px;
        line-height: 1.5;
        color: #555;        font-family: 'Open Sans', sans-serif;
    }

    .benefits-list {
        margin: 20px 0;
        padding-left: 0;
        list-style: none;
    }

    .benefits-list li {
        padding: 6px 0;
        position: relative;
        padding-left: 22px;
        margin-bottom: 4px;
        font-size: 13px;        font-family: 'Open Sans', sans-serif;
    }

    .benefits-list li:before {
        content: "✓";
        position: absolute;
        left: 0;
        color: #2A3A4A;
        font-weight: bold;
        font-size: 16px;
    }

    .get-started-button {
        background: linear-gradient(135deg, #2A3A4A 0%, #4A5A6A 100%);
        color: white;
        border: none;
        border-radius: 10px;
        padding: 16px 35px;
        cursor: pointer;
        font-family: 'Open Sans', sans-serif;
        font-size: 16px;
        font-weight: 600;
        transition: all 0.3s ease;
        margin-bottom: 15px;
        box-shadow: 0 3px 12px rgba(42, 58, 74, 0.3);
    }

    .get-started-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(42, 58, 74, 0.4);
    }

    .landing-note {
        font-size: 12px;
        color: #888;
        font-style: italic;
    }

    .country-specific-result {
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        border-radius: 10px;
        padding: 20px;
        margin: 15px 0;
        border-left: 4px solid #2A3A4A;
        text-align: left;        font-family: 'Open Sans', sans-serif;
    }

    .country-flag {
        font-size: 1.6rem;
        margin-right: 12px;
        display: inline-block;
    }

    .country-header {
        display: flex;
        align-items: center;
        margin-bottom: 12px;
    }

    .country-name {
        font-family: 'Oxygen', sans-serif;
        font-size: 1.2rem;
        font-weight: 700;
        color: #2A3A4A;
        margin: 0;
    }

    .visa-program-name {
        font-size: 0.95rem;
        font-weight: 600;
        color: #666;
        margin: 4px 0 12px 0;
    }

    .key-benefits {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 12px;
        margin: 15px 0;
    }

    .benefit-item {
        background: white;
        padding: 12px;
        border-radius: 6px;
        border: 1px solid #e0e0e0;
        text-align: center;
    }

    .benefit-icon {
        font-size: 1.2rem;
        margin-bottom: 6px;
    }

    .benefit-text {
        font-size: 12px;
        font-weight: 600;
        color: #2A3A4A;        font-family: 'Open Sans', sans-serif;
    }

    .contact-form {
        max-width: 550px;
        margin: 0 auto;
        background: white;
        padding: 25px;
        border-radius: 10px;
        border: 1px solid #e0e0e0;
    }

    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        margin-bottom: 15px;
    }

    .form-group {
        margin-bottom: 15px;
    }

    .form-label {
        display: block;
        margin-bottom: 6px;
        font-weight: 600;
        color: #2A3A4A;
        font-size: 12px;
    }

    .form-input, .form-select, .form-textarea {
        width: 100%;
        padding: 10px 12px;
        border: 2px solid #e0e0e0;
        border-radius: 6px;
        font-family: 'Open Sans', sans-serif;
        font-size: 12px;
        color: #2A3A4A;
        box-sizing: border-box;
        transition: border-color 0.3s ease;
    }

    .form-input:focus, .form-select:focus, .form-textarea:focus {
        outline: none;
        border-color: #2A3A4A;        font-family: 'Open Sans', sans-serif;
    }

    .form-textarea {
        resize: vertical;
        min-height: 80px;        font-family: 'Open Sans', sans-serif;
    }

    .quiz-summary {
        background: #f8f9fa;
        padding: 15px;
        border-radius: 6px;
        margin-bottom: 20px;
        border-left: 3px solid #2A3A4A;        font-family: 'Open Sans', sans-serif;
    }

    .quiz-summary h4 {
        margin: 0 0 12px 0;
        color: #2A3A4A;
        font-family: 'Oxygen', sans-serif;
        font-size: 0.95rem;
    }

    .summary-item {
        display: flex;
        justify-content: space-between;
        margin-bottom: 6px;
        font-size: 12px;        font-family: 'Open Sans', sans-serif;
    }

    .summary-label {
        font-weight: 600;
        color: #666;        font-family: 'Open Sans', sans-serif;
    }

    .summary-value {
        color: #2A3A4A;
        text-align: right;        font-family: 'Open Sans', sans-serif;
    }

    .submit-button {
        background: linear-gradient(135deg, #2A3A4A 0%, #4A5A6A 100%);
        color: white;
        border: none;
        border-radius: 8px;
        padding: 14px 30px;
        cursor: pointer;
        font-family: 'Open Sans', sans-serif;
        font-size: 14px;
        font-weight: 600;
        width: 100%;
        transition: all 0.3s ease;
        margin-top: 8px;
    }

    .submit-button:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 15px rgba(42, 58, 74, 0.3);
    }

    .submit-button:disabled {
        background: #ccc;
        cursor: not-allowed;
        transform: none;
        box-shadow: none;
    }

    @media (max-width: 768px) {
        .form-row {
            grid-template-columns: 1fr;
            gap: 0;
        }
        
        .contact-form {
            padding: 18px;
        }
    }

    .loading-spinner {
        width: 40px;
        height: 40px;
        border: 3px solid #e0e0e0;
        border-top: 3px solid #2A3A4A;
        border-radius: 50%;
        animation: spin 1s linear infinite;
        margin: 0 auto 15px auto;
    }

    @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }

    @media (max-width: 768px) {
        .visa-finder {
            padding: 12px;
        }

        .quiz-container {
            padding: 18px;
            margin-bottom: 15px;
            min-height: 320px;
        }

        .options-container {
            grid-template-columns: 1fr;
            gap: 10px;
        }

        .navigation-buttons {
            flex-direction: column;
        }

        .option-button {
            padding: 12px;
            min-height: 50px;
        }

        .question-title {
            font-size: 1rem;
        }
    }

    @media (max-width: 480px) {
        .visa-finder {
            padding: 8px;
        }

        .quiz-container {
            padding: 12px;
        }

        .nav-button {
            padding: 10px 15px;
            font-size: 12px;
        }
    }
</style>/* End custom CSS */