.sf-2abd9326-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 40px 20px;
    background-color: #f9f9f9;
    flex-wrap: wrap;
    gap: 20px;
}

.sf-2abd9326-left {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.sf-2abd9326-logo {
    max-width: 100%;
    height: auto;
}

.sf-2abd9326-copyright {
    font-size: 14px;
    color: #666;
}

.sf-2abd9326-middle {
    flex-grow: 1;
}

.sf-2abd9326-right {
    flex: 0 0 33.333%;
    max-width: 33.333%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}

.sf-2abd9326-socials {
    display: flex;
    gap: 10px;
}

.sf-2abd9326-social-icon {
    width: 60px;
    height: 60px;
    background-color: #0073aa;
    border-radius: 50%;
    color: #ffffff !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    transition: all 0.3s ease;
}

.sf-2abd9326-social-icon svg {
    width: 30px;
    height: 30px;
    fill: #ffffff !important;
    transition: fill 0.3s ease;
}

.sf-2abd9326-social-icon:hover {
    background-color: #005177;
    color: #ffffff !important;
}
.sf-2abd9326-social-icon:hover svg {
    fill: #ffffff !important;
}

.sf-2abd9326-legal-links {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: flex-end;
}

.sf-2abd9326-legal-links a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.sf-2abd9326-legal-links a:hover {
    color: #0073aa;
    text-decoration: underline;
}

.sf-2abd9326-legal-separator {
    color: #999;
    font-size: 14px;
}

@media (max-width: 768px) {
    .sf-2abd9326-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .sf-2abd9326-left, .sf-2abd9326-right {
        flex: 1 1 100%;
        max-width: 100%;
        align-items: center;
    }
    
    .sf-2abd9326-legal-links {
        justify-content: center;
    }
}