/* SEO Footer / Brand Directory Styles */
.seo-footer-section {
    background-color: #f1f3f6;
    /* Flipkart light gray background */
    padding: 25px;
    border-top: 1px solid #ddd;
    font-family: Roboto, Arial, sans-serif;
    margin-top: 40px;
}

.seo-footer-container {
    width: 100%;
    /* Full width as requested */
    margin: 0 auto;
    color: #565656;
}

.seo-footer-header {
    font-size: 14px;
    font-weight: 500;
    color: #878787;
    margin-bottom: 8px;
    text-transform: uppercase;
    display: block;
}

.seo-footer-content {
    font-size: 12px;
    /* Very small text like in image */
    line-height: 1.5;
    margin-bottom: 20px;
    /* Spacing before narrative */
}

.seo-footer-group {
    margin-bottom: 8px;
}

.seo-footer-label {
    font-weight: 500;
    color: #565656;
    /* Slightly darker than links */
    text-transform: uppercase;
    margin-right: 4px;
    display: inline;
}

.seo-footer-links {
    display: inline;
}

.seo-footer-link {
    color: #565656;
    text-decoration: none;
    transition: color 0.1s;
    /* white-space: nowrap; - Removed to prevent overflow */
    /* Keep links together if possible */
}

.seo-footer-link:hover {
    color: #2874f0;
    /* Flipkart blue on hover */
    text-decoration: none;
}

.seo-footer-separator {
    color: #878787;
    margin: 0 4px;
    font-size: 10px;
    vertical-align: middle;
}

/* Narrative Content Styles */
.seo-footer-narrative {
    margin-top: 20px;
    color: #565656;
}

.seo-narrative-block {
    margin-bottom: 15px;
}

.seo-narrative-header {
    font-size: 14px;
    font-weight: 500;
    color: #878787;
    margin: 0 0 8px 0;
    text-transform: none;
    /* Usually these are normal case or slight caps, but user image shows normal/Title case */
}

/* Specific styling to match typical SEO footer headers */
h1.seo-narrative-header,
h2.seo-narrative-header,
h3.seo-narrative-header {
    font-size: 16px;
    /* Increased to 16px */
    font-weight: 600;
    color: #565656;
    /* Darker than the light gray label */
    text-transform: none;
    display: block;
}

.seo-narrative-text {
    font-size: 13px;
    /* Increased to 13px */
    line-height: 1.5;
    color: #565656;
    /* Low contrast text */
    margin: 0;
}

.seo-narrative-link {
    color: #2874f0;
    text-decoration: none;
}

.seo-narrative-link:hover {
    text-decoration: underline;
}

/* Hide SEO Footer on Mobile */
@media (max-width: 768px) {
    .seo-footer-section {
        display: none !important;
    }
}