.footer {
    background-color: #ffffff;
    margin-top: auto;
}

.footer-separator {
    width: 100%;
    height: 1px;
    background-color: #eb610e;
    margin: 0;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 25px;
    padding-left: 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    font-size: 14px;
    color: #636363;
    line-height: 1.4;
}

.footer-brand {
    font-weight: bold;
    color: #2f4269;
}

.footer-social {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    color: #2f4269;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 16px;
}

.social-icon:hover {
    color: #eb610e;
}

.social-icon i {
    font-size: 16px;
}

@media (max-width: 768px) {
    .footer-container {
        padding: 15px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-copyright {
        font-size: 13px;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding: 25px;
    }
    
    .footer-copyright {
        font-size: 12px;
    }
    
    .social-icon {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
    
    .social-icon i {
        font-size: 14px;
    }
}