/* Base Styles */
.footer {
    background-color: black;
    color: #f4b400;
    padding: 2rem 0;
    font-family: Arial, sans-serif;
    border-top: 1px solid gray;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

/* Social Section */
.footer-social {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-links {
    background-color: #477998;
    color: white;
    padding: 10px 0;
    border-radius: 10px;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    color: #f4b400;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: #ccc;
    transform: translateY(-2px);
}

/* Copyright Section */
.footer-copyright p {
    color: #00000;
    font-size: 0.9rem;
    margin: 0;
}

/* Navigation Links */
.footer-links ul {
    display: flex;
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    position: relative;
    padding-right: 1rem;
}

.footer-links li:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 60%;
    width: 1px;
    background-color: #666;
}

.footer-links a {
    color: #00000;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-social {
        flex-direction: column;
    }
    
    .footer-links {
    color: white;
    }

    .footer-links ul {
        flex-wrap: wrap;
        justify-content: center;
        padding: 10px 0 10px 0;
    }

    .footer-links li {
        padding-right: 0.5rem;
    }

    .footer-links li:not(:last-child)::after {
        height: 50%;
    }
}