.footer {
    background: #111;
    color: #fff;
    padding: 50px 10%;
    text-align: center;
}

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


/* Logo Section */

.footer-logo {
    flex: 1;
    text-align: center;
    min-width: 250px;
}

.footer-logo a {
    font-size: 2rem;
    font-weight: bold;
    color: #ffcc00;
    text-decoration: none;
}

.footer-logo p {
    font-size: 1rem;
    opacity: 0.8;
    margin-top: 10px;
}


/* Quick Links */

.footer-links {
    flex: 1;
    text-align: center;
    min-width: 250px;
}

.footer-links h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #ffcc00;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-links ul li {
    margin: 8px 0;
}

.footer-links ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: 0.3s;
}

.footer-links ul li a:hover {
    color: #ffcc00;
    text-decoration: underline;
}


/* Social Media */

.footer-social {
    flex: 1;
    text-align: center;
    min-width: 250px;
}

.footer-social h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #ffcc00;
}

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

.social-icons a {
    color: #fff;
    font-size: 1.5rem;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #ffcc00;
    transform: scale(1.1);
}


/* Footer Bottom */

.footer-bottom {
    margin-top: 30px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    opacity: 0.7;
}


/* Responsive Design */

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }
    .footer-logo,
    .footer-links,
    .footer-social {
        text-align: center;
        width: 100%;
    }
}