﻿/* General Footer Styles */
.footer-content {
    background-color: #2c2c2c;
    color: #e0e0e0;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1080px;
    margin: 0 auto;
    gap: 20px;
}

.footer-section {
    flex: 1 1 200px;
    min-width: 250px;
    padding: 10px;
}

.footer-logo {
    width: 120px;
    margin-bottom: 15px;
}

.footer-section h3 {
    color: #f4b400;
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-section p, .footer-section.links ul li a {
    font-size: 14px;
    line-height: 1.5;
}

.footer-section.links ul {
    list-style-type: none;
    padding: 0;
}

    .footer-section.links ul li {
        margin-bottom: 10px;
    }

        .footer-section.links ul li a {
            color: #e0e0e0;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }

            .footer-section.links ul li a:hover {
                color: #f4b400;
            }

.footer-section.contact ul {
    list-style: none;
    padding: 0;
}

    .footer-section.contact ul li {
        margin-bottom: 8px;
        font-size: 14px;
    }

/* Social Icons */
.social-icons {
    margin-top: 15px;
}

    .social-icons a {
        display: inline-block;
        margin-right: 10px;
        opacity: 0.7;
        transition: opacity 0.3s ease;
    }

        .social-icons a:hover {
            opacity: 1;
        }

/* Footer Bottom */
.footer-bottom {
    background-color: #1a1a1a;
    color: #a0a0a0;
    padding: 15px 20px;
    text-align: center;
    font-size: 13px;
}

    .footer-bottom p {
        margin: 0;
    }

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-section {
        text-align: center;
    }
}
