.elementor-20 .elementor-element.elementor-element-b6575a6{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}.elementor-20 .elementor-element.elementor-element-d98230d{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}:root{--page-title-display:none;}/* Start custom CSS for text-editor, class: .elementor-element-99f9549 *//* --- Contact Section Spacing & Overlap Fix --- */
.contact-section {
    padding: 100px 0 60px 0;
    background-color: #fcfcfc;
}

/* --- Base Card Design --- */
.contact-card {
    background: #fff;
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 12px;
    border: 1px solid #eee;
    text-align: center;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    transition: all 0.3s ease;
    
    /* Normal/Active State: Blue Border & Shadow */
    border-left: 5px solid #0073BB; 
    border-top: 5px solid #0073BB;
    box-shadow: -8px -8px 0px 0px #0073BB;
}

/* --- Hover State: Red Border & Shadow --- */
.contact-card:hover {
    border-left: 5px solid #ED1C24;
    border-top: 5px solid #ED1C24;
    box-shadow: -8px -8px 0px 0px #ED1C24;
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 2.5rem;
    color: #0073BB;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.contact-card:hover .contact-icon {
    color: #ED1C24;
}

.contact-label {
    color: #333;
    font-weight: 800;
    font-size: 1.2rem;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.contact-value {
    color: #666;
    font-size: 1rem;
}/* End custom CSS */
/* Start custom CSS for text-editor, class: .elementor-element-cbf595a */.contact-section {
        padding: 60px 0;
        background-color: #fcfcfc;
    }

    .contact-card {
        background: #fff;
        padding: 30px;
        margin-bottom: 20px;
        border-radius: 12px;
        border: 1px solid #eee;
        text-align: center;
        /* Standard Shadow: Top & Left Blue */
        box-shadow: -8px -8px 0px 0px var(--primary-blue);
        transition: all 0.3s ease;
        text-decoration: none; /* Remove link underline */
        display: flex;
        flex-direction: column;
        align-items: center;
        height: 100%;
    }

    .contact-card:hover {
        /* Hover Shadow: Top & Left Red */
        box-shadow: -8px -8px 0px 0px var(--primary-red);
        transform: translateY(-5px);
    }

    .contact-icon {
        font-size: 2.5rem;
        color: var(--primary-blue);
        margin-bottom: 15px;
        transition: color 0.3s ease;
    }

    .contact-card:hover .contact-icon {
        color: var(--primary-red);
    }

    .contact-label {
        color: #333;
        font-weight: 800;
        font-size: 1.2rem;
        text-transform: uppercase;
        margin-bottom: 8px;
    }

    .contact-value {
        color: #666;
        font-size: 1rem;
        word-break: break-all;
    }/* End custom CSS */