/* Footer Styling */
.tgpsubmit-footer {
    background: #000;
    color: #fff;
    padding: 30px 20px;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-left {
    flex: 1;
    text-align: left;
    min-width: 250px;
}

.footer-logo img {
    max-height: 60px;
    margin-bottom: 10px;
}

.footer-credits {
    font-size: 14px;
    color: #ccc;
}
.footer-credits a {
    color: #fff;
    text-decoration: none;
}
.footer-credits a:hover {
    text-decoration: underline;
}

.footer-right {
    flex: 1;
    text-align: right;
    min-width: 250px;
}

.footer-socials {
    margin-bottom: 10px;
}
.footer-socials a {
    margin: 0 15px;
    color: #fff;
    font-size: 30px;
    transition: color 0.3s ease;
}
.footer-socials a:hover {
    color: #999;
}

.footer-dmca {
    margin-top: 10px;
}

.footer-links {
    margin-top: 20px;
    text-align: left;   /* aligned left */
    font-size: 15px;    /* increased size */
}

.footer-links a {
    margin: 0 15px 0 0;
    color: #fff;
    font-size: 15px;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-links a:hover {
    color: #999;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    .footer-left, .footer-right {
        text-align: center;
        margin-bottom: 15px;
    }
    .footer-links {
        text-align: center;
    }
}
