/* Footer Responsive Styles */
.footer {
    background-color: #0a4697;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    max-width: 150px;
    height: auto;
}

.footer-links ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 20px 0;
    padding: 0;
    list-style: none;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #f3471f;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.footer-bottom p {
    margin-bottom: 15px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: white;
    font-size: 20px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #f3471f;
}

.theme-toggle-container {
    margin-top: 20px;
}

.theme-toggle-wrapper {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.theme-btn {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.theme-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Responsive styles */
@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
    }
    
    .footer-bottom p {
        margin-bottom: 0;
    }
}

@media (max-width: 767px) {
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer-links ul {
        gap: 20px;
    }
    
    .footer-links a {
        font-size: 16px;
    }
    
    .social-links {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .footer-links ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .social-links {
        margin-top: 15px;
    }
}
