/* SEO Footer Styles - Hidden from view but accessible to search engines */
.seo-footer {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.seo-footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.seo-footer-section {
    color: var(--text-white, #ffffff);
}

.seo-footer-heading {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-white, #ffffff);
    font-family: 'Sora', sans-serif;
}

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

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

.seo-footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
    display: inline-block;
}

.seo-footer-link:hover {
    color: var(--text-white, #ffffff);
}

.seo-footer-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-size: 15px;
}

.seo-footer-text strong {
    color: var(--text-white, #ffffff);
    font-weight: 600;
}

.seo-footer-text a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.seo-footer-text a:hover {
    color: var(--text-white, #ffffff);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .seo-footer {
        padding: 40px 24px 32px;
        margin-top: 60px;
    }

    .seo-footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .seo-footer-heading {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .seo-footer-link,
    .seo-footer-text {
        font-size: 14px;
    }
}
