.elementor-2445 .elementor-element.elementor-element-6d1091d4{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--justify-content:center;--gap:24px 24px;--row-gap:24px;--column-gap:24px;--margin-top:0px;--margin-bottom:20px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:20px;--padding-left:0px;--padding-right:0px;--z-index:5;}.elementor-2445 .elementor-element.elementor-element-6d1091d4.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-2445 .elementor-element.elementor-element-62de23a4{--display:flex;}.elementor-2445 .elementor-element.elementor-element-241676e4{--display:flex;--min-height:524px;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--gap:24px 24px;--row-gap:24px;--column-gap:24px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-2445 .elementor-element.elementor-element-30e8e47f{width:100%;max-width:100%;}@media(min-width:768px){.elementor-2445 .elementor-element.elementor-element-6d1091d4{--width:96.733%;}}/* Start custom CSS for text-editor, class: .elementor-element-30e8e47f *//* --- Kaggle-inspired Form Styles --- */
    .kaggle-wrapper {
        font-family: 'Inter', 'Roboto', 'Segoe UI', sans-serif;
        color: #3c4043;
        width: 100%;
        margin: 0 auto;
        box-sizing: border-box;
    }

    .kaggle-card {
        background-color: #ffffff;
        border: 1px solid #dadce0;
        border-radius: 16px;
        padding: 40px;
        box-shadow: 0 1px 3px rgba(0,0,0,0.02);
        width: 100%;
    }

    .kaggle-title {
        font-size: 24px;
        font-weight: 700;
        color: #202124;
        margin-top: 0;
        margin-bottom: 30px;
        padding-bottom: 15px;
        border-bottom: 1px solid #f1f3f4;
        display: flex;
        align-items: center;
    }

    .kaggle-title::before {
        content: '';
        display: inline-block;
        min-width: 6px;
        height: 28px;
        background-color: #164b7e;
        margin-right: 16px;
        border-radius: 4px;
    }
    
    .form-help{
        font-size: 14px;
        color: gray;
    }
    
    .form-control::placeholder{
        color:#888!important;
    }

    /* --- CSS GRID LAYOUT --- */
    .form-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    /* !important forces Elementor to let this span both columns */
    .full-width {
        grid-column: 1 / -1 !important; 
    }

    .form-group {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .form-label {
        font-size: 14px;
        font-weight: 600;
        color: #5f6368;
        margin-bottom: 8px;
    }

    /* --- STRICT UNIFORM INPUT STYLES --- */
    
    select.form-control{
        padding: 10px 40px 10px 18px;
    }
    
    .form-control {
        width: 100% !important;
        height: 48px; /* Forces exact same height for inputs and dropdowns */
        max-width: 450px !important;
        padding: 12px 16px;
        font-size: 15px;
        color: #3c4043;
        background-color: #ffffff !important; /* Forces solid white background */
        border: 1px solid #dadce0 !important;
        border-radius: 8px !important; /* Forces rounded corners */
        box-sizing: border-box;
        transition: outline 0.2s ease, border-color 0.2s ease;
        font-family: inherit;
        -webkit-appearance: none; /* Strips Apple default styles */
        -moz-appearance: none;    /* Strips Firefox default styles */
        appearance: none;         /* Strips default browser styles */
    }

    .form-control:focus {
        outline: none;
        border-color: ##164b7e !important;
        box-shadow: 0 0 0 3px rgba(32, 190, 255, 0.15);
    }

    /* Custom Dropdown Arrow to replace the one we stripped away */
    select.form-control {
        background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235f6368' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-position: right 16px center;
        background-size: 16px;
        padding-right: 40px; /* Make room for the arrow so text doesn't overlap */
        cursor: pointer;
    }

    /* Release the height restriction for textareas so they can expand */
    textarea.form-control {
        height: auto;
        min-height: 100px;
        resize: vertical;
    }

    /* --- Radio & Checkbox Styles --- */
    .radio-group {
        display: flex;
        flex-direction: column;
        /*gap: 12px;*/
        background-color: #f8f9fa; /* Light gray box just for the options */
        padding: 16px;
        border-radius: 8px;
        border: 1px solid #dadce0;
        box-sizing: border-box;
        width: 100%;
        max-width: 450px !important;
    }

    .radio-label {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-size: 14px;
        color: #3c4043;
        cursor: pointer;
        line-height: 1.4;
    }

    .radio-label input[type="radio"] {
        margin-top: 2px;
        accent-color: #164b7e;
        width: 16px;
        height: 16px;
        flex-shrink: 0; /* Prevents radio button from squishing */
    }

    .checkbox-container {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        background-color: rgba(32, 190, 255, 0.05);
        padding: 16px;
        border-radius: 8px;
        border: 1px solid rgba(32, 190, 255, 0.2);
        margin-top: 10px;
        box-sizing: border-box;
    }

    .checkbox-container input[type="checkbox"] {
        margin-top: 4px;
        accent-color: #164b7e;
        width: 18px;
        height: 18px;
        cursor: pointer;
        flex-shrink: 0;
    }

    .checkbox-container label {
        font-size: 14px;
        color: #202124;
        font-weight: 500;
        line-height: 1.5;
        cursor: pointer;
    }

    /* Submit Button */
    .btn-submit {
        background-color: #164b7e;
        color: #ffffff;
        border: none;
        padding: 14px 32px;
        font-size: 16px;
        font-weight: 700;
        border-radius: 24px;
        cursor: pointer;
        transition: background-color 0.2s ease;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-top: 20px;
        width: 100%;
    }

    .btn-submit:hover {
        background-color: #C5A059;
    }

    .btn-submit:disabled {
        background-color: #dadce0;
        cursor: not-allowed;
    }

    /* Status Alerts */
    .status-alert {
        padding: 16px;
        border-radius: 8px;
        margin-bottom: 24px;
        font-size: 14px;
        font-weight: 500;
        display: none;
    }
    .status-alert.show { display: block; }
    .alert-success { background-color: #e6f4ea; color: #137333; border: 1px solid #ceead6; }
    .alert-error { background-color: #fce8e6; color: #c5221f; border: 1px solid #fad2cf; }
    .alert-warning { background-color: #fef7e0; color: #b06000; border: 1px solid #feefc3; }

    /* --- RESPONSIVE MOBILE FIX --- */
    @media (max-width: 768px) {
        .form-grid {
            grid-template-columns: 1fr;
        }
        .kaggle-card {
            padding: 24px;
        }
        .full-width {
            grid-column: 1 / -1 !important; 
        }
    }/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-62de23a4 */.elementor-2445 .elementor-element.elementor-element-62de23a4{
    margin-top: 100px;
    max-width: 1200px;
}/* End custom CSS */