.footer {
    border-top: 0.5px solid rgba(255,255,255,0.06);
    padding: 40px 4% 30px 4%;
    background-color: #000000;
    margin-top: 40px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 40px;
    gap: 30px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-logo {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
}

.footer-logo img {
  width: 150px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: #ffffff;
    font-size: 16px;
    text-decoration: none;
    transition: color .2s;
}

.social-icons a:hover {
    color: #cccccc;
}

.footer-details {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-address {
    font-size: 14px;
    color: #ffffff;
    line-height: 28px;
}

.footer-contact-row {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    font-size: 14px;
    color: #ffffff;
}

.footer-contact-row a {
    color: #ffffff;
    text-decoration: none;
    transition: color .2s;
}

.footer-contact-row a:hover {
    color: #cccccc;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #888888;
    line-height: 1.6;
    border-top: 0.5px solid rgba(255,255,255,0.06);
    padding-top: 20px;
}

.copyright {
    max-width: 60%;
}

.created-by {
    margin-bottom: 5px;
    color: #a0a0a0;
}

.created-by span {
    color: #cccccc;
    font-weight: 600;
}

.legal-text {
    font-size: 11px;
    color: #a0a0a0;
}

.footer-links {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.footer-links a {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 12px;
    transition: color .2s;
}

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

@media (max-width: 768px) {
    .footer {
        padding: 30px 4% 25px 4%;
        margin-top: 30px;
    }

    .footer-top {
        flex-direction: column;
        gap: 25px;
        padding-bottom: 30px;
    }

    .footer-details {
        text-align: left;
    }

    .footer-contact-row {
        justify-content: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .copyright {
        max-width: 100%;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 24px 5% 20px 5%;
        margin-top: 20px;
    }

    .footer-top {
        gap: 20px;
        padding-bottom: 20px;
    }

    .footer-logo {
        font-size: 16px;
    }

    .footer-logo img {
        width: 120px;
    }

    .footer-address {
        font-size: 13px;
    }

    .footer-contact-row {
        flex-direction: column;
        gap: 6px;
        font-size: 13px;
    }

    .footer-bottom {
        font-size: 11px;
        padding-top: 15px;
        gap: 12px;
    }

    .footer-links {
        gap: 12px;
    }

    .footer-links a {
        font-size: 11px;
    }

    .legal-text {
        font-size: 10px;
    }
}
