@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --bg-primary: #f8fafc;
    --bg-secondary: #ffffff;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --primary: #4f46e5;
    --primary-hover: #4338ca;

    /* Category Colors */
    --color-job: #10b981;
    --color-job-light: #ecfdf5;
    --color-admit: #3b82f6;
    --color-admit-light: #eff6ff;
    --color-result: #ef4444;
    --color-result-light: #fef2f2;
    --color-key: #f59e0b;
    --color-key-light: #fffbeb;
    --color-syllabus: #8b5cf6;
    --color-syllabus-light: #f5f3ff;
    --color-admission: #ec4899;
    --color-admission-light: #fdf2f8;
    --color-important: #06b6d4;
    --color-important-light: #ecfeff;
    --color-verify: #14b8a6;
    --color-verify-light: #f0fdfa;

    --border: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --radius: 12px;
}

[data-theme="dark"] {
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --border: #334155;

    --color-job-light: rgba(16, 185, 129, 0.1);
    --color-admit-light: rgba(59, 130, 246, 0.1);
    --color-result-light: rgba(239, 68, 68, 0.1);
    --color-key-light: rgba(245, 158, 11, 0.1);
    --color-syllabus-light: rgba(139, 92, 246, 0.1);
    --color-admission-light: rgba(236, 72, 153, 0.1);
    --color-important-light: rgba(6, 182, 212, 0.1);
    --color-verify-light: rgba(20, 184, 166, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    transition: background-color 0.3s, color 0.3s;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navbar */
header {
    background-color: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-dot {
    width: 10px;
    height: 10px;
    background-color: var(--color-job);
    border-radius: 50%;
    display: inline-block;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.2);
        opacity: 1;
    }

    100% {
        transform: scale(0.8);
        opacity: 0.5;
    }
}

.nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: var(--text-secondary);
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.2s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background-color: var(--bg-primary);
}

/* Quick Action Bar / Highlights */
.highlights-bar {
    background: linear-gradient(135deg, var(--primary) 0%, #6366f1 100%);
    color: #ffffff;
    padding: 12px 0;
    overflow: hidden;
}

.marquee-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.marquee-badge {
    background-color: #ef4444;
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    animation: flash 1.5s infinite;
    flex-shrink: 0;
}

@keyframes flash {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.marquee-wrapper {
    flex-grow: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-width: 0;
}

.marquee-text {
    white-space: nowrap;
    display: inline-block;
    padding-left: 100%;
    animation: marquee 120s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-100%, 0, 0);
    }
}

/* Hero Section / Quick Buttons */
.hero {
    padding: 40px 0;
    text-align: center;
}

.hero h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
}

.hero p {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 30px;
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-bottom: 40px;
}

.quick-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border);
    padding: 20px;
    border-radius: var(--radius);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.quick-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.quick-card i {
    font-size: 24px;
    color: var(--primary);
}

/* Category Grid Setup (Similar to Sarkari Result but modern) */
.category-section {
    padding-bottom: 60px;
}

.grid-3-col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.grid-2-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

@media (max-width: 1024px) {
    .grid-3-col {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .grid-3-col,
    .grid-2-col {
        grid-template-columns: 1fr;
    }

    .navbar {
        flex-direction: column;
        height: auto;
        padding: 15px 0;
        gap: 10px;
    }

    .nav-links {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
}

.category-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    height: 480px;
}

.category-header {
    padding: 16px 20px;
    color: #ffffff;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.category-header.job {
    background-color: var(--color-job);
}

.category-header.admit {
    background-color: var(--color-admit);
}

.category-header.result {
    background-color: var(--color-result);
}

.category-header.key {
    background-color: var(--color-key);
}

.category-header.syllabus {
    background-color: var(--color-syllabus);
}

.category-header.admission {
    background-color: var(--color-admission);
}

.category-header.important {
    background-color: var(--color-important);
}

.category-header.verify {
    background-color: var(--color-verify);
}

.category-body {
    padding: 10px 0;
    overflow-y: auto;
    flex-grow: 1;
}

.post-item {
    padding: 12px 20px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    transition: background-color 0.2s;
    font-size: 14px;
}

.post-item:hover {
    background-color: var(--bg-primary);
}

.post-item:last-child {
    border-bottom: none;
}

.post-bullet {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin-top: 8px;
    flex-shrink: 0;
}

.post-item.job .post-bullet {
    background-color: var(--color-job);
}

.post-item.admit .post-bullet {
    background-color: var(--color-admit);
}

.post-item.result .post-bullet {
    background-color: var(--color-result);
}

.post-badge {
    background-color: #ef4444;
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
    margin-left: 5px;
    display: inline-block;
}

/* Detail Post Styling */
.post-container {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px;
    margin: 40px auto;
    max-width: 900px;
    width: 100%;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    word-wrap: break-word;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 15px;
}

.post-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary);
}

.post-content-body {
    margin-top: 25px;
    overflow-x: auto;
    max-width: 100%;
    width: 100%;
    -webkit-overflow-scrolling: touch;
}

/* Constrain all scraped elements to prevent leaking/stretching parent containers */
.post-content-body * {
    max-width: 100% !important;
    box-sizing: border-box !important;
    word-wrap: break-word !important;
}

/* Sarkari Result Table custom clean override */
.post-content-body table {
    width: 100% !important;
    border-collapse: collapse !important;
    margin: 20px 0 !important;
    font-size: 14px;
    border: 1px solid var(--border) !important;
}

.post-content-body tr {
    border-bottom: 1px solid var(--border);
}

.post-content-body td,
.post-content-body th {
    padding: 12px 15px !important;
    text-align: left !important;
    border: 1px solid var(--border) !important;
}

.post-content-body tr:nth-child(even) {
    background-color: var(--bg-primary);
}

.post-content-body th {
    background-color: var(--primary);
    color: white;
    font-weight: 600;
}

.post-content-body a {
    color: var(--primary);
    font-weight: 500;
    text-decoration: underline;
}

.post-content-body a:hover {
    color: var(--primary-hover);
}

/* Social Floating / Sticky buttons */
.social-sidebar {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 100;
}

.social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s;
}

.social-btn:hover {
    transform: scale(1.1);
}

.social-btn.telegram {
    background-color: #0088cc;
}

.social-btn.whatsapp {
    background-color: #25d366;
}

.social-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-btn.facebook {
    background-color: #1877f2;
}

/* Footer */
footer {
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border);
    padding: 40px 0;
    text-align: center;
    color: var(--text-secondary);
    font-size: 14px;
}

/* Search bar styling */
.search-wrapper {
    max-width: 500px;
    margin: 0 auto 30px;
    position: relative;
}

.search-input {
    width: 100%;
    padding: 14px 20px;
    border: 1px solid var(--border);
    border-radius: 30px;
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    font-size: 15px;
    outline: none;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.search-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.15);
}

/* Theme Toggle */
.theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
    color: var(--text-secondary);
    padding: 8px;
    border-radius: 50%;
    transition: background-color 0.2s;
}

.theme-toggle:hover {
    background-color: var(--bg-primary);
}

/* ==========================================
   PREMIUM MOBILE RESPONSIVENESS OVERRIDES
   ========================================== */

/* Tablet Viewport (max-width: 992px) */
@media (max-width: 992px) {
    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 30px 0 20px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .quick-links-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 12px;
        margin-bottom: 30px;
    }

    .category-card {
        height: 420px;
    }
}

/* Mobile Large Viewport (max-width: 768px) */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .search-wrapper {
        margin-bottom: 20px;
    }

    .category-card {
        height: 380px;
        /* Shorter card height for rapid mobile scanning */
    }

    .post-item {
        padding: 10px 16px;
        font-size: 13px;
    }
}

/* Mobile Small Viewport (max-width: 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .navbar {
        padding: 10px 0;
    }

    .logo {
        font-size: 20px;
    }

    .hero {
        padding: 20px 0 10px;
    }

    .hero h1 {
        font-size: 24px;
        line-height: 1.3;
    }

    .hero p {
        font-size: 13px;
        line-height: 1.5;
    }

    .search-input {
        padding: 12px 16px;
        font-size: 14px;
    }

    .quick-links-grid {
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
        /* Force clean 2-column cards on smallest screens */
        gap: 8px;
    }

    .quick-card {
        padding: 12px 10px;
        gap: 6px;
        border-radius: 8px;
    }

    .quick-card i {
        font-size: 18px;
    }

    .quick-card span {
        font-size: 12px !important;
    }

    .category-header {
        padding: 12px 16px;
        font-size: 14px;
    }

    .category-body {
        padding: 5px 0;
    }

    .post-item {
        padding: 8px 12px;
        font-size: 12.5px;
    }
}

/* ==========================================
   CATEGORY PAGE LAYOUTS & RESPONSIVENESS
   ========================================== */
.category-page-container {
    padding: 40px 20px;
}

.category-page-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.category-page-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary);
    line-height: 1.3;
}

.category-page-title i {
    flex-shrink: 0;
}

.category-posts-list {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.category-post-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    border-bottom: 1px solid var(--border);
    transition: background-color 0.2s;
}

.category-post-item:hover {
    background-color: var(--bg-primary);
}

.category-post-item:last-child {
    border-bottom: none;
}

.category-post-title {
    font-weight: 500;
    font-size: 15px;
    color: var(--text-primary);
    padding-right: 15px;
    line-height: 1.5;
}

.category-post-date {
    font-size: 13px;
    color: var(--text-secondary);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Tablet Viewport Overrides */
@media (max-width: 992px) {
    .category-page-container {
        padding: 30px 16px;
    }

    .category-page-title {
        font-size: 28px;
        margin-bottom: 24px;
    }

    .post-container {
        padding: 24px;
        margin: 20px auto;
    }

    .post-title {
        font-size: 24px;
    }
}

/* Mobile Large Viewport Overrides */
@media (max-width: 768px) {
    .category-page-title {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .category-post-item {
        padding: 14px 18px;
    }

    .category-post-title {
        font-size: 14.5px;
    }

    .category-post-date {
        font-size: 12.5px;
    }

    .post-container {
        padding: 16px;
        margin: 15px auto;
        border-radius: 8px;
    }

    .post-title {
        font-size: 22px;
        line-height: 1.4;
    }

    .post-meta {
        font-size: 13px;
        gap: 10px;
        margin-bottom: 15px;
        padding-bottom: 10px;
    }

    .post-content-body table {
        font-size: 14px;
    }

    .post-content-body td,
    .post-content-body th {
        padding: 10px 12px !important;
    }
}

/* Mobile Small Viewport Overrides (Forces stacked flex layout to prevent text squashing) */
@media (max-width: 480px) {
    .category-page-container {
        padding: 20px 12px;
    }

    .category-page-title {
        font-size: 22px;
        margin-bottom: 15px;
        gap: 8px;
    }

    .category-post-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
        padding: 12px 14px;
    }

    .category-post-title {
        font-size: 14.5px;
        padding-right: 0;
    }

    .category-post-date {
        font-size: 12.5px;
    }

    .post-container {
        padding: 12px;
        margin: 10px auto;
        border-radius: 6px;
    }

    .post-title {
        font-size: 20px;
        margin-bottom: 10px;
        line-height: 1.35;
    }

    .post-meta {
        font-size: 12px;
        gap: 8px;
    }

    .post-content-body table {
        font-size: 13.5px;
    }

    .post-content-body td,
    .post-content-body th {
        padding: 8px 10px !important;
    }
}

/* ==========================================
   SARKARI RESULT COLOR HIGHLIGHT GRID BOXES
   ========================================== */
.highlight-boxes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 40px;
}

.highlight-box-card {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 16px 12px;
    min-height: 80px;
    border-radius: 4px;
    color: #ffffff !important;
    font-weight: 700;
    font-size: 14.5px;
    line-height: 1.35;
    transition: transform 0.2s ease, opacity 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.highlight-box-card:hover {
    transform: scale(1.02);
    opacity: 0.92;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Color definitions sequentially matching the Sarkari Result original image */
.highlight-box-card.color-0 {
    background-color: #7c7a16 !important;
}

/* Olive */
.highlight-box-card.color-1 {
    background-color: #0000a0 !important;
}

/* Dark Blue */
.highlight-box-card.color-2 {
    background-color: #f06000 !important;
}

/* Orange */
.highlight-box-card.color-3 {
    background-color: #780000 !important;
}

/* Maroon */
.highlight-box-card.color-4 {
    background-color: #e00000 !important;
}

/* Red */
.highlight-box-card.color-5 {
    background-color: #006000 !important;
}

/* Forest Green */
.highlight-box-card.color-6 {
    background-color: #f000c0 !important;
}

/* Magenta */
.highlight-box-card.color-7 {
    background-color: #0080ff !important;
}

/* Light Blue */

/* Responsive Media Queries for Highlights Grid */
@media (max-width: 992px) {
    .highlight-boxes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }

    .highlight-box-card {
        font-size: 13px;
        padding: 12px 8px;
        min-height: 66px;
    }
}

@media (max-width: 480px) {
    .highlight-boxes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
        margin-bottom: 25px;
    }

    .highlight-box-card {
        font-size: 12px;
        padding: 10px 6px;
        min-height: 56px;
        border-radius: 3px;
    }
}

/* Custom premium list and bullet styling inside post body content */
.post-content-body ul {
    list-style-type: none !important;
    padding-left: 0 !important;
    margin: 8px 0 !important;
}

.post-content-body li {
    position: relative !important;
    padding-left: 18px !important;
    margin-bottom: 6px !important;
    line-height: 1.55 !important;
    list-style-type: none !important;
}

.post-content-body li::before {
    content: "•" !important;
    position: absolute !important;
    left: 4px !important;
    color: var(--primary) !important;
    /* Premium brand primary color bullet points */
    font-weight: 700 !important;
    font-size: 17px !important;
    top: -2px !important;
}

.premium-bullet {
    color: var(--primary) !important;
    /* Premium brand primary color */
    font-weight: 700 !important;
    font-size: 17px !important;
    margin-right: 6px !important;
    display: inline-block !important;
    line-height: 1 !important;
    vertical-align: middle !important;
}

/* Connect With Us & Sarkari Result Footer Styles */
.site-footer {
    background-color: #1e1e1e;
    color: #eeeeee;
    padding: 0;
    margin-top: 50px;
    border-top: 3px solid var(--primary);
    font-family: Arial, sans-serif;
}

.site-footer a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.site-footer a:hover {
    color: #3b82f6;
    text-decoration: underline;
}

.sarkari-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
    text-align: center;
}

.sarkari-wrapper h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #ffffff;
    border-bottom: 1px solid #333333;
    padding-bottom: 10px;
}

.sarkari-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 30px;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.sarkari-grid a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14.5px;
    color: #cccccc;
    padding: 6px 12px;
    background-color: #262626;
    border-radius: 4px;
    border: 1px solid #333333;
    transition: all 0.2s ease;
}

.sarkari-grid a::before {
    content: "•";
    color: #3b82f6;
    font-weight: bold;
    font-size: 18px;
}

.sarkari-grid a:hover {
    background-color: #333333;
    color: #ffffff;
    border-color: #444444;
}

.gb-container-d1f47294 {
    background-color: #121212;
    padding: 25px 20px;
    text-align: center;
    border-top: 1px solid #222222;
}

.gb-headline-e41178b2 {
    font-size: 14px;
    color: #999999;
    line-height: 1.6;
    margin-bottom: 15px;
}

.gb-headline-e41178b2 strong a {
    color: #ffffff;
    font-weight: 700;
}

.gb-container-658f27a5 {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 20px;
    margin-top: 15px;
}

.gb-button-text {
    font-size: 14px;
    color: #cccccc !important;
    text-decoration: none;
    transition: color 0.2s ease;
}

.gb-button-text:hover {
    color: #ffffff !important;
    text-decoration: underline;
}

/* FAQ Container Section */
.faq-section {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px;
    margin: 40px auto;
    max-width: 1200px;
    box-shadow: var(--shadow-sm);
}

.faq-section h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 25px;
    border-bottom: 2px solid var(--border);
    padding-bottom: 10px;
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px dashed var(--border);
    padding-bottom: 15px;
}

.faq-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.faq-item .question {
    font-weight: 700;
    font-size: 16px;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.faq-item .answer {
    font-size: 14.5px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* SEO content details styling */
.seo-description-container {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 35px 25px;
    margin: 40px auto;
    max-width: 1200px;
    box-shadow: var(--shadow-sm);
    line-height: 1.7;
    color: var(--text-primary);
}

.seo-description-container h2 {
    font-size: 20px;
    font-weight: 700;
    margin: 25px 0 15px;
    color: var(--primary);
}

.seo-description-container p {
    margin-bottom: 15px;
    font-size: 14.5px;
}

.seo-description-container table {
    width: 80% !important;
    max-width: 800px;
    margin: 20px auto !important;
    border-collapse: collapse !important;
    border: 1px solid var(--border) !important;
}

.seo-description-container td {
    padding: 10px 15px !important;
    border: 1px solid var(--border) !important;
    text-align: center !important;
    font-size: 14px;
}

.seo-description-container a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
}

.seo-description-container ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.seo-description-container li {
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--text-secondary);
}

/* Responsive Overrides for Connect Grid */
@media (max-width: 768px) {
    .sarkari-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}