/* ===========================================
   CukupKlik - Main Stylesheet
   Clean, Fast, SEO-Friendly
   =========================================== */

/* CSS Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #10b981;
    --dark: #1f2937;
    --gray: #6b7280;
    --light: #f3f4f6;
    --white: #ffffff;
    --shadow: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --radius: 8px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    background: var(--light);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 0.5rem 0; /* Reduced from 1rem to keep navbar short */
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    flex-grow: 1; /* Allow logo container to grow */
    max-width: fit-content;
}

.logo-icon {
    font-size: 1.75rem;
}

.nav {
    display: flex;
    gap: 1.5rem;
}

.nav a {
    text-decoration: none;
    color: var(--gray);
    font-weight: 500;
    transition: color 0.2s;
}

.nav a:hover {
    color: var(--primary);
}

/* Main Content */
.main {
    flex: 1;
    padding: 2rem 0;
}

/* Section */
.section {
    margin: 2rem 0;
}

/* Tool Page */
.tool-page {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.tool-page h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.tool-page .description {
    color: var(--gray);
    margin-bottom: 2rem;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--light);
    border-radius: var(--radius);
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-primary:active {
    transform: scale(0.98);
}

.btn-secondary {
    background: var(--light);
    color: var(--dark);
}

.btn-secondary:hover {
    background: #e5e7eb;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* Result Box */
.result-box {
    background: var(--light);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.result-box h3 {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 0.75rem;
}

.result-box .result {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    word-break: break-all;
}

.result-box .result-text {
    font-size: 1rem;
    color: var(--dark);
    white-space: pre-wrap;
}

/* Copy Button */
.copy-btn {
    background: var(--secondary);
    color: var(--white);
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    margin-top: 1rem;
}

.copy-btn:hover {
    background: #059669;
}

/* Ad Space */
.ad-space {
    background: var(--light);
    border: 2px dashed #d1d5db;
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    color: var(--gray);
    margin: 2rem 0;
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 2rem 0;
    text-align: center;
    margin-top: auto;
}

.footer p {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-powered {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #9ca3af;
}

.footer-powered a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.footer-powered a:hover {
    color: #60a5fa;
    text-decoration: underline;
}

/* Breadcrumb */
.breadcrumb {
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.breadcrumb a {
    color: var(--primary);
    text-decoration: none;
}

.breadcrumb span {
    color: var(--gray);
}

/* Alert Messages */
.alert {
    padding: 1rem;
    border-radius: var(--radius);
    margin-bottom: 1rem;
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
}

/* Responsive - Tool Page */
@media (max-width: 768px) {
    .nav {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .tool-page {
        padding: 1.5rem;
    }
}

/* Utility Classes */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.hidden { display: none; }

/* ===========================================
   Homepage UX Components
   =========================================== */

/* Hero Section (Compact) */
.hero {
    text-align: center;
    padding: 2rem 1rem;
    background: linear-gradient(135deg, var(--primary) 0%, #1e40af 100%);
    color: var(--white);
    border-radius: var(--radius);
    margin: 1rem;
}

.hero h1 {
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.hero p {
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
    max-width: 500px;
    margin: 0 auto 1.5rem;
}

/* Search Box */
.search-box {
    display: flex;
    align-items: center;
    background: var(--white);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    max-width: 500px;
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.search-icon {
    font-size: 1.25rem;
    margin-right: 0.75rem;
    opacity: 0.6;
}

.search-box input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1rem;
    background: transparent;
    color: var(--dark);
}

.search-box input::placeholder {
    color: var(--gray);
}

.search-shortcut {
    background: var(--light);
    color: var(--gray);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-family: monospace;
}

/* Category Tabs */
.category-tabs-section {
    padding: 1rem;
    overflow-x: auto;
}

.category-tabs {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.tab-btn {
    background: var(--white);
    border: 2px solid var(--light);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.tab-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.tab-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.tab-count {
    background: rgba(0,0,0,0.1);
    font-size: 0.75rem;
    padding: 0.125rem 0.5rem;
    border-radius: 50px;
}

.tab-btn.active .tab-count {
    background: rgba(255,255,255,0.2);
}

/* Section Header */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0;
}

.title-icon {
    font-size: 1.25rem;
}

.section-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
}

.section-link:hover {
    text-decoration: underline;
}

/* Featured Tools Grid */
.featured-section {
    padding: 0 1rem;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}

.featured-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.25rem;
    box-shadow: var(--shadow);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    border: 2px solid transparent;
}

.featured-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.card-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.card-content h3 {
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.card-content p {
    font-size: 0.85rem;
    color: var(--gray);
    margin: 0;
}

/* Card Badge */
.card-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 0.2rem 0.5rem;
    border-radius: 50px;
    text-transform: uppercase;
}

.badge-image {
    background: #dbeafe;
    color: #1d4ed8;
}

.badge-islami {
    background: #d1fae5;
    color: #059669;
}

.badge-pdf {
    background: #fee2e2;
    color: #dc2626;
}

.badge-ramadhan {
    background: #fef3c7;
    color: #d97706;
}

/* Category Section */
.category-section {
    padding: 0 1rem;
}

/* Tools Grid (updated) */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 0;
}

.tool-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.25rem;
    box-shadow: var(--shadow);
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
}

.tool-card .card-icon {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.tool-card h3 {
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.tool-card p {
    color: var(--gray);
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* Why Section */
.why-section {
    padding: 2rem 1rem;
    text-align: center;
}

.why-section .section-title {
    justify-content: center;
    margin-bottom: 1.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.feature-card h3 {
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.85rem;
    color: var(--gray);
    margin: 0;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--gray);
}

/* Responsive Updates */
@media (max-width: 768px) {
    .hero {
        margin: 0.5rem;
        padding: 1.5rem 1rem;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .category-tabs {
        justify-content: flex-start;
        flex-wrap: nowrap;
        padding-bottom: 0.5rem;
    }

    .category-tabs-section {
        margin: 0 -1rem;
        padding: 1rem;
    }

    .featured-grid,
    .tools-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* ===========================================
   Ad Containers
   =========================================== */
.ad-container {
    background: var(--light);
    padding: 1rem 0;
    text-align: center;
}

.ad-header {
    border-bottom: 1px solid #e5e7eb;
}

.ad-footer {
    border-top: 1px solid #e5e7eb;
    margin-top: 2rem;
}

.ad-content {
    margin: 2rem 0;
    padding: 1rem;
    background: var(--white);
    border-radius: var(--radius);
}

.ad-result {
    margin: 1.5rem 0;
    padding: 1rem;
    background: #fafafa;
    border-radius: var(--radius);
    border: 1px dashed #e5e7eb;
}

/* Ad placeholder for development */
.ad-placeholder {
    background: #f0f0f0;
    border: 2px dashed #ccc;
    padding: 2rem;
    text-align: center;
    color: #999;
    font-size: 0.875rem;
}

/* ===========================================
   File Upload with Preview
   =========================================== */

/* File Upload Zone */
.file-upload {
    position: relative;
    border: 2px dashed var(--gray);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    background: var(--light);
}

.file-upload:hover,
.file-upload.dragover {
    border-color: var(--primary);
    background: #eef6ff;
}

.file-upload input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-upload-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    pointer-events: none;
}

.file-upload-label .icon {
    font-size: 2.5rem;
}

.file-upload-label .text {
    font-weight: 500;
    color: var(--dark);
}

.file-upload-label .hint {
    font-size: 0.85rem;
    color: var(--gray);
}

/* File Preview List */
.file-preview-list {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 0.75rem;
}

.file-preview-item {
    position: relative;
    background: var(--white);
    border: 1px solid var(--light);
    border-radius: var(--radius);
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.file-preview-item .preview-thumbnail {
    width: 100%;
    height: 80px;
    object-fit: contain;
    border-radius: 4px;
    background: var(--light);
}

.file-preview-item .preview-icon {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    background: var(--light);
    border-radius: 4px;
}

.file-preview-item .preview-name {
    font-size: 0.75rem;
    color: var(--dark);
    text-align: center;
    word-break: break-all;
    line-height: 1.2;
    max-height: 2.4em;
    overflow: hidden;
    width: 100%;
}

.file-preview-item .preview-size {
    font-size: 0.7rem;
    color: var(--gray);
}

.file-preview-item .remove-btn {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #ef4444;
    color: white;
    border: 2px solid white;
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.file-preview-item .remove-btn:hover {
    background: #dc2626;
    transform: scale(1.1);
}

/* Simple File List (non-preview) */
.file-list-simple {
    margin-top: 1rem;
}

.file-list-simple ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.file-list-simple li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: var(--light);
    border-radius: var(--radius);
    margin-bottom: 0.5rem;
}

.file-list-simple .file-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    min-width: 0;
}

.file-list-simple .file-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.file-list-simple .file-name {
    font-size: 0.9rem;
    color: var(--dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.file-list-simple .file-size {
    font-size: 0.8rem;
    color: var(--gray);
    flex-shrink: 0;
    margin-left: 0.5rem;
}

.file-list-simple .remove-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: transparent;
    color: var(--gray);
    border: none;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
    margin-left: 0.5rem;
}

.file-list-simple .remove-btn:hover {
    background: #fee2e2;
    color: #ef4444;
}

/* Responsive */
@media (max-width: 480px) {
    .file-preview-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===========================================
   Error Pages (404, 500, etc)
   =========================================== */
.error-page {
    text-align: center;
    padding: 3rem 1rem;
    max-width: 600px;
    margin: 0 auto;
}

.error-content {
    background: var(--white);
    border-radius: var(--radius);
    padding: 3rem 2rem;
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
}

.error-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.error-code {
    font-size: 5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.error-title {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.error-message {
    color: var(--gray);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.error-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
}

.error-actions .btn-primary {
    background: var(--primary);
    color: var(--white);
}

.error-actions .btn-primary:hover {
    background: var(--primary-dark);
}

.error-actions .btn-secondary {
    background: var(--light);
    color: var(--dark);
    border: 1px solid #e5e7eb;
}

.error-actions .btn-secondary:hover {
    background: #e5e7eb;
}

.error-suggestions {
    background: var(--white);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

.error-suggestions h3 {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 1rem;
}

.suggestion-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.suggestion-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--light);
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: all 0.2s;
}

.suggestion-item:hover {
    background: var(--primary);
    color: var(--white);
}

.suggestion-icon {
    font-size: 1.25rem;
}

@media (max-width: 480px) {
    .error-code {
        font-size: 4rem;
    }

    .error-actions {
        flex-direction: column;
    }

    .error-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .suggestion-links {
        flex-direction: column;
    }

    .suggestion-item {
        justify-content: center;
    }
}

/* ===========================================
   SEO Content Styling
   =========================================== */
.seo-content {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.seo-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.seo-content h2::before {
    content: '';
    display: block;
    width: 4px;
    height: 24px;
    background: var(--primary);
    border-radius: 2px;
}

.seo-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark);
    margin: 2rem 0 1rem;
}

.seo-content p {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.seo-content ul, 
.seo-content ol,
.seo-content .card-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2.5rem;
    list-style: none;
    padding: 0;
}

.seo-content ul li, 
.seo-content ol li,
.seo-content .card-list li {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.seo-content ul li:hover, 
.seo-content ol li:hover,
.seo-content .card-list li:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    border-color: var(--primary);
}

.seo-content ul li::before,
.seo-content .card-list li::before {
    content: '✦';
    position: absolute;
    top: -10px;
    right: -5px;
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.05;
}

.seo-content ul li strong, 
.seo-content ol li strong,
.seo-content .card-list li strong {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    display: block;
}

/* Specific for tool FAQ if it contains structured data */
.seo-content .faq-container {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.seo-content .faq-item {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid #f0f0f0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}

.seo-content .faq-item:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

/* Question style */
.seo-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 1rem;
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
}

.seo-content h3::before {
    content: 'Q:';
    color: var(--primary);
    font-weight: 800;
}

/* Answer style */
.seo-content h3 + p {
    margin-top: -0.25rem;
    padding-left: 1.75rem;
    color: var(--gray);
    line-height: 1.7;
    border-left: 2px solid #f0f4ff;
    margin-left: 0.25rem;
}

.seo-content p strong {
    color: var(--dark);
    font-weight: 600;
}

@media (max-width: 640px) {
    .seo-content {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
    
    .seo-content ul, 
    .seo-content ol {
        grid-template-columns: 1fr;
    }
}
