/* Footer Styles */
.footer {
    background: #2c3e50;
    color: white;
    padding: 40px 0 20px;
    margin-top: 60px;
}

.footer nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer nav a {
    color: #ecf0f1;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 8px 16px;
    border-radius: 6px;
}

.footer nav a:hover {
    color: #3498db;
    background: rgba(52, 152, 219, 0.1);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    flex-wrap: wrap;
    gap: 20px;
}

.language-select {
    background: #34495e;
    color: white;
    border: 2px solid #4a5f7a;
    border-radius: 8px;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 160px;
}

.language-select:hover {
    border-color: #3498db;
    background: #3d566e;
}

.language-select:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

.language-select option {
    background: #34495e;
    color: white;
    padding: 8px;
}

.footer-bottom p {
    margin: 0;
    color: #bdc3c7;
    font-size: 14px;
}

.footer-bottom .brand {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-bottom .brand:hover {
    color: #2980b9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer nav {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .language-select {
        min-width: 200px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 20px 15px;
    }
    
    .footer nav a {
        padding: 6px 12px;
        font-size: 14px;
    }
    
    .language-select {
        min-width: 100%;
        max-width: 280px;
    }
}