/* Global SEO Block Styles */
.global-seo-block {
    padding: 60px 0;
    background-color: #f8f9fa; /* Light grey background to separate from grid */
    border-top: 1px solid #eee;
    margin-top: 40px;
}

.seo-grid {
    display: grid;
    grid-template-columns: 70% 30%;
    gap: 40px;
}

.seo-main-content {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
}

.seo-main-content h2, .seo-main-content h3 {
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    color: #000;
}

.seo-sidebar {
    height: fit-content;
}

.seo-sidebar .widget {
    margin-bottom: 30px;
}

.seo-sidebar .widget-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color, #FF4D6D);
    color: #111;
}

/* Typography in content */
.seo-main-content p {
    margin-bottom: 1.5rem;
}

/* Responsive */
@media (max-width: 992px) {
    .seo-grid {
        grid-template-columns: 1fr;
    }
    
    .seo-sidebar {
        order: 2;
    }
}
