/* Footer Styles */
.footer {
    background-color: #030f2b;
    color: #2c3e50;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

/* Brand Section */
.footer-brand {
    display: flex;
    align-items: center;
    font-family: Georgia, 'Times New Roman', Times, serif;
    gap: 8px;
    margin-bottom: 1rem;
}

.footer-logo {
    width: 24px;
    height: 24px;
    color: #f1a600;
}

.footer-brand-text {
    font-size: 1.25rem;
    font-weight: bold;
    color: white;
}

/* Links Section */
.footer-contact h3 {
    font-family: Georgia, 'Times New Roman', Times, serif;
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    text-decoration: none;
    color: #9ca3af;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #f1a600;
}

/* Contact Section */
.footer-contact ul {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.contact-icon {
    width: 20px;
    height: 20px;
    color: #f1a600;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-text {
    font-size: 0.875rem;
    color: #9ca3af;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #374151;
    margin-top: 2rem;
    padding-top: 2rem;
    text-align: center;
}

.footer-copyright {
    font-size: 0.875rem;
    color: #9ca3af;
}