.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 20px;
    margin-top: 80px;
    width: 100%;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-section {
    margin-bottom: 40px;
    flex: 1;
    min-width: 200px;
}

.footer-section:first-child {
    flex: 2;
    min-width: 300px;
}

.footer-section h3 {
    font-size: 1.2em;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-logo {
    height: 30px;
    margin-right: 8px;
}

.footer-section .brand {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    text-decoration: none;
}

.footer-section .brand-name {
    font-size: 1.3em;
    font-weight: 800;
    color: #ffffff;
}

.footer-tagline {
    color: #a3a3a3;
    margin-top: 8px;
    font-size: 0.95em;
}

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

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

.footer-links a, .footer-section a {
    color: #a3a3a3;
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.95em;
}

.footer-links a:hover, .footer-section a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid #333;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px 0;
}

.footer-bottom p {
    color: #a3a3a3;
    font-size: 0.85em;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }
    
    .footer-section {
        margin-bottom: 30px;
    }
    
    .footer-section:first-child {
        margin-bottom: 40px;
    }
} 