/* footer.css */

/* Footer */
.landing-footer {
    background: var(--text-primary);
    color: var(--color-white);
    padding: 40px 0;
    text-align: center;
    font-size: 0.9em;
}

.landing-footer p {
    color: var(--text-light);
    margin-bottom: 10px;
}

.landing-footer a {
    color: var(--color-info);
    text-decoration: none;
    transition: color var(--transition-slow);
}

.landing-footer a:hover {
    color: var(--color-primary-lighter);
}

/* Footer specific styles for the new structure */
.landing-footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
}

.landing-footer .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 1000px;
    margin-bottom: 30px;
    text-align: left;
}

.landing-footer .footer-section {
    padding: 15px;
}

.landing-footer .footer-section h3 {
    color: var(--color-secondary);
    margin-bottom: 15px;
    font-size: 1.2em;
    font-weight: 700;
}

.landing-footer .footer-section p {
    color: var(--text-light);
    line-height: 1.8;
}

.landing-footer .footer-section a {
    color: var(--color-info);
    text-decoration: none;
    transition: color var(--transition-slow);
}

.landing-footer .footer-section a:hover {
    color: var(--color-primary-lighter);
}

.landing-footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-xl);
    width: 100%;
    max-width: 1000px;
    text-align: center;
}

.landing-footer .footer-bottom p {
    color: var(--text-light);
    margin: 0;
}

.landing-footer .footer-bottom a {
    color: var(--color-info);
    text-decoration: none;
    transition: color var(--transition-slow);
}

.landing-footer .footer-bottom a:hover {
    color: var(--color-primary-lighter);
}

.landing-footer img.anpc {
    max-width: 200px;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

/* Responsive adjustments for footer */
@media (max-width: 768px) {
    .landing-footer .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .landing-footer .footer-section {
        padding: 10px;
    }
}