@charset "UTF-8";
.footer-main {
    display: flex;
    justify-content: flex-start;
    padding: 60px 40px;
    background: #fff;
    max-width: 1440px;
    margin: 0 auto;
    gap: 120px;
    gap: 50px;
}

.footer-column {
    flex: 1;
    /* min-width: 200px; */
}

.footer-title {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #000;
    text-transform: uppercase;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #000;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #666;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.newsletter-input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid #E0E0E0;
    font-size: 14px;
}

.newsletter-button {
    padding: 10px 20px;
    background: #000;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.newsletter-button:hover {
    background: #333;
}

/* Unsubscribe UI styles removed for this version */

.social-section {
    margin-top: 40px;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-link img {
    width: 24px;
    height: 24px;
}

.footer-bottom {
    border-top: 1px solid #E0E0E0;
    padding: 20px 40px;
    text-align: left;
    max-width: 1440px;
    margin: 0 auto;
}

.copyright {
    color: #666;
    font-size: 12px;
}

@media only screen and (max-width: 768px) {
    .footer-main {
        flex-direction: column;
        padding: 40px 16px;
        gap: 32px;
    }

    .footer-column {
        width: 100%;
    }

    .footer-title {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .footer-links {
        gap: 8px;
    }

    .footer-links a {
        font-size: 14px;
        line-height: 1.4;
    }

    .social-section {
        margin-top: 0;
    }

    .social-links {
        gap: 16px;
    }

    .social-link img {
        width: 32px;
        height: 32px;
    }

    .footer-bottom {
        padding: 24px 16px;
        border-top: none;
    }

    .copyright {
        font-size: 14px;
        color: #000;
    }

    #unisender-form {
        flex-direction: column;
    }
}

