/* Global Footer Styles */
.main-footer {
    background: #1a1a1a;
    color: #e2e8f0;
    margin-top: 0;
    padding: 3rem 0 1.5rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-transform: none;
    letter-spacing: -0.5px;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #a0aec0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: #a0aec0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: #718096;
    font-size: 0.9rem;
    margin: 0;
}

.footer-built-by {
    margin-top: 0.5rem !important;
}

.footer-built-by a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-built-by a:hover {
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-footer {
        padding: 2.5rem 0 1.5rem;
    }

    .footer-container {
        padding: 0 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .footer-section {
        text-align: left;
    }

    .footer-section h3 {
        font-size: 1.35rem;
        margin-bottom: 0.75rem;
    }

    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .footer-section p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .footer-section ul li {
        margin-bottom: 0.65rem;
    }

    .footer-section ul li a {
        font-size: 0.9rem;
    }

    .footer-bottom {
        padding-top: 1.25rem;
    }

    .footer-bottom p {
        font-size: 0.85rem;
    }
}

