/* New Footer Styles */
.new-footer {
    background-color: #000000; /* Black background */
    color: #ffffff; /* White text */
    padding: 20px 0;
    font-family: Arial, sans-serif;
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.5); /* Shade above the footer */
}

.new-footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #333333;
    margin-bottom: 20px;
}

.footer-logo-text {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
}

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}

.footer-nav li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-nav li a:hover {
    color: #c00; /* Accent color on hover */
}

.footer-bottom-bar {
    text-align: center;
    font-size: 12px;
    color: #cccccc;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-nav {
        flex-direction: column;
        gap: 10px;
    }
}
