/* Shared footer styles (index.html / screenshot layout) */
footer {
    background: #1e293b;
    color: white;
    padding: 80px 0 40px;
}

footer .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

footer .footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
    text-align: left;
}

footer .footer-section {
    text-align: left;
}

footer .footer-section h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 20px 0;
    color: #60a5fa;
}

footer .footer-section p {
    margin: 0 0 6px 0;
    color: #cbd5e1;
    line-height: 1.8;
}

footer .footer-section p:last-child {
    margin-bottom: 0;
}

footer .footer-section a {
    color: #cbd5e1;
    text-decoration: none;
    line-height: 1.8;
    transition: color 0.3s ease;
}

footer .footer-section a:hover {
    color: white;
}

footer .footer-section strong {
    color: #ffffff;
    font-weight: 600;
}

footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    text-align: center;
    color: #94a3b8;
}

footer .footer-bottom p {
    margin: 0;
    color: #d1d1d1;
    line-height: 1.8;
}

footer .footer-bottom a {
    color: #60a5fa;
    text-decoration: none;
}

footer .footer-bottom a:hover {
    color: #93c5fd;
}

footer .disclaimer-link {
    color: #60a5fa;
}

footer .disclaimer-link:hover {
    text-decoration: underline;
    color: #93c5fd;
}

@media (max-width: 1100px) {
    footer .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 24px;
    }
}

@media (max-width: 992px) {
    footer .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    footer .footer-content {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }

    footer .footer-section {
        text-align: center;
    }

    footer .footer-section h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    footer .container {
        padding: 0 20px;
    }

    footer .footer-section h3 {
        font-size: 1.1rem;
    }

    footer .footer-section p {
        font-size: 0.95rem;
    }
}
