/* Footer General Styling */
.footer {
    background-color: #000; /* Black background */
    color: white;
    text-align: center;
    padding: 30px 20px;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 100%;
}

/* Logo Section */
.footer-logo-section img {
    max-width: 150px;
}

/* Contact Information in Row */
.footer-contact {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    border-radius: 5px;
    width: 100%;
    max-width: 800px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
}

.footer-contact img {
    width: 18px;
}

/* Menus in Row */
.footer-links ul, .policy-menu ul {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0;
    list-style: none;
}

.footer-links ul li, .policy-menu ul li {
    display: inline;
}

.policy-menu a {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 12px;
}

.footer-links a:hover, .policy-menu a:hover {
    text-decoration: underline;
}

/* Social Media Icons */
.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
}

.social-icons img {
    width: 24px;
    transition: opacity 0.3s;
}

.social-icons img:hover {
    opacity: 0.7;
}

/* Copyright Text */
.footer-bottom p {
    margin: 5px 0;
    font-size: 12px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-contact {
        display: none;
    }

    .footer-links ul, .policy-menu ul {
        flex-direction: row;
        align-items: center;
        gap: 10px;
    }

    .social-icons {
        flex-direction: row;
        justify-content: center;
    }
}
