.elementor-44261 .elementor-element.elementor-element-2268ec7{--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-44261 .elementor-element.elementor-element-7bc12f6{width:100%;max-width:100%;}.elementor-44261 .elementor-element.elementor-element-7bc12f6.elementor-element{--flex-grow:1;--flex-shrink:0;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-7bc12f6 *//* Base Styles for the Footer */
/* Styling for the new image logo */
.sq-logo-image {
    max-width: 150px; /* Adjust this to your logo's desired width */
    height: auto;
    display: block;
    margin-bottom: 15px; /* Space between logo and description */
}

/* Update the margin-bottom for the general .sq-logo div if you kept the text style */
.sq-logo {
    margin-bottom: 10px;
}
.sq-footer {
    background-color: #f7f8f9; /* Light background color from the image */
    color: #4b5563; /* Default text color */
    font-family: Arial, sans-serif; /* Use a common font */
    padding: 60px 0 20px 0; /* Top padding for main content, bottom for copyright */
    width: 100%;
}

.sq-footer-container {
    max-width: 1200px; /* Max width to center content */
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    gap: 30px; /* Space between columns */
    padding-bottom: 40px;
    border-bottom: 1px solid #e5e7eb; /* Separator line above copyright */
}

/* Individual Column Styles */
.sq-footer-col {
    flex: 1; /* Allows columns to grow */
    min-width: 150px; /* Minimum width for flex-item wrapping */
}

.sq-footer-branding {
    flex: 1.5; /* Branding column takes slightly more space */
    min-width: 250px;
}

.sq-col-heading {
    color: #1f2937; /* Darker heading color */
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Logo Styles (Replace with your logo image) */
.sq-logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    display: block;
    margin-bottom: 10px;
}

.sq-description {
    font-size: 14px;
    line-height: 1.5;
    max-width: 250px;
}

/* Link List Styles */
.sq-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sq-link-list li {
    margin-bottom: 12px;
}

.sq-link {
    color: #4b5563;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
}

/* Adding the external link arrow icon visual */
.sq-link:after {
    content: '↗'; /* Unicode for up-right arrow */
    margin-left: 5px;
    font-size: 10px;
    opacity: 0.7;
}

.sq-link:hover {
    color: #007bff; /* Hover color for interactivity */
}

/* Newsletter Styles */
.sq-newsletter-text {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
    max-width: 300px;
}

.sq-newsletter-form {
    display: flex;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

.sq-newsletter-form input {
    flex-grow: 1;
    border: none;
    padding: 12px 15px;
    font-size: 14px;
    outline: none;
    color: #1f2937;
}

.sq-newsletter-form input::placeholder {
    color: #9ca3af;
}

.sq-newsletter-form button {
    background-color: #1f2937; /* Dark button color */
    color: #fff;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sq-newsletter-form button:hover {
    background-color: #374151;
}

/* Copyright Section */
.sq-footer-bottom {
    max-width: 1200px;
    margin: 20px auto 0 auto;
    padding: 0 20px;
}

.sq-copyright {
    font-size: 12px;
    color: #9ca3af;
}


/* --- Responsiveness (Advanced/Modern CSS) --- */
@media (max-width: 768px) {
    .sq-footer-container {
        flex-wrap: wrap; /* Wrap columns on tablets/mobile */
    }

    .sq-footer-col {
        flex: 1 1 45%; /* Two columns per row on tablets */
        min-width: auto;
    }

    .sq-footer-branding {
        flex: 1 1 100%; /* Branding column takes full width */
        margin-bottom: 20px;
    }

    /* Stack links on smaller screens if necessary, but keep two-column grid on tablet */
}

@media (max-width: 480px) {
    .sq-footer-col {
        flex: 1 1 100%; /* All columns stack on mobile */
    }

    .sq-footer-container {
        gap: 40px; /* More vertical space between stacked columns */
    }
}/* End custom CSS */