.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 40px 0 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

/* Footer Brand */
.footer-brand {
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.footer-brand-icon {
    color: #0066cc;
    font-size: 24px;
}

.footer-brand-text {
    font-size: 20px;
    font-weight: bold;
    color: #0066cc;
}

/* Main Footer Grid */
.footer-main {
    margin-bottom: 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 20px;
}

.footer-section {
    margin-bottom: 25px;
}

.footer-section-wide {
    grid-column: span 2;
}

.footer-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #ffffff;
    border-bottom: 2px solid #0066cc;
    padding-bottom: 8px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

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

.footer-links a:hover {
    color: #0066cc;
    text-decoration: underline;
}

/* Horizontal Footer Links */
.footer-links-horizontal {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links-horizontal li {
    margin-bottom: 8px;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #333333;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom-content p {
    margin: 5px 0;
    font-size: 14px;
    color: #cccccc;
}

.footer-note {
    font-size: 13px;
    color: #999999;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-section-wide {
        grid-column: span 1;
    }
    
    .footer-links-horizontal {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-brand {
        flex-direction: column;
        gap: 5px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer-brand-text {
        font-size: 18px;
    }
    
    .footer-title {
        font-size: 15px;
    }
}