.footer {
    background-color: #000000;
    color: #ffffff;
    padding: 5rem 5% 2rem;
    font-family: 'Inter', sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    padding-bottom: 4rem;
}

.footer-brand {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
}

.footer-logo {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 50px;
    width: auto;
}

.footer-slogan-text {
    color: #9ca3af;
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 2rem;
    max-width: 300px;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border: 1px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-icon:hover {
    background-color: #ffffff;
    color: #000000;
}

.social-icon.linkedin {
    background-color: #a00000;
    border-color: #a00000;
    color: #ffffff;
}

.social-icon.linkedin:hover {
    background-color: #800000;
    border-color: #800000;
}

.footer-links {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.footer-column {
    min-width: 120px;
}

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li {
    margin-bottom: 1rem;
}

.footer-column a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-line {
    border-top: 1px solid #333333;
    max-width: 1400px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .footer-container {
        flex-direction: column;
        gap: 3rem;
    }

    .footer-links {
        justify-content: space-between;
        width: 100%;
    }
}

@media (max-width: 600px) {
    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }
}