.elementor-1928 .elementor-element.elementor-element-6ad8bf9{--display:flex;--flex-direction:column;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--align-items:center;border-style:solid;--border-style:solid;border-width:1px 0px 0px 0px;--border-top-width:1px;--border-right-width:0px;--border-bottom-width:0px;--border-left-width:0px;border-color:var( --e-global-color-primary );--border-color:var( --e-global-color-primary );}.elementor-1928 .elementor-element.elementor-element-30da334{width:var( --container-widget-width, 60% );max-width:60%;--container-widget-width:60%;--container-widget-flex-grow:0;}.elementor-1928 .elementor-element.elementor-element-30da334.elementor-element{--flex-grow:0;--flex-shrink:0;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}@media(min-width:768px){.elementor-1928 .elementor-element.elementor-element-6ad8bf9{--width:100%;}}/* Start custom CSS for html, class: .elementor-element-30da334 *//* Main footer styling */
.aied-main-footer {
    background-color: #000000; 
    color: #ffffff;
    padding: 60px 20px;
    font-family: 'Inter Tight', sans-serif;
}

/* Flexbox container for alignment */
.aied-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; /* Allows columns to wrap on smaller screens */
    gap: 30px;
}

.footer-column {
    flex: 1; /* Allows columns to grow */
    min-width: 220px; /* Prevents columns from getting too squished */
}

/* Logo and copyright styling */
.aied-main-footer .footer-logo { /* ADDED PARENT SELECTOR FOR SPECIFICITY */
    height: 80px !important; /* Forced height */
    width: auto !important;   /* Forced width, maintains aspect ratio */
    margin-bottom: 15px;
}
.footer-copyright {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.6;
}

/* Headings and link lists */
.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 600;
}
.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-column ul li {
    margin-bottom: 12px;
}
.footer-column a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}
.footer-column a:hover {
    opacity: 1;
}
.footer-socials a {
    display: block;
    margin-bottom: 12px;
}

/* Responsive styles for mobile */
@media (max-width: 767px) {
    .aied-footer-container {
        flex-direction: column; /* Stack columns vertically */
        text-align: center; /* Center-align content */
    }
    .footer-logo {
        margin-left: auto;
        margin-right: auto;
    }
    .footer-socials a {
        display: inline-block; /* Put socials side-by-side */
        margin: 0 10px;
    }
}/* End custom CSS */