/* Modern Scoped Styles for Page Content */
.zicosh-modern-wrap {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--global-palette4, #2D3748);
}

/* SECTION 1: HERO SECTION */
.zicosh-hero {
    background: linear-gradient(135deg, #1A202C 0%, #215387 100%);
    color: #ffffff;
    border-radius: 12px;
    padding: 56px 44px;
    margin: 16px 0 44px;
}
.zicosh-hero-inner {
    max-width: 800px;
}
.zicosh-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.12);
    color: #dbebff;
    padding: 5px 14px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.zicosh-hero h1 {
    font-size: 38px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 16px;
    color: #ffffff !important;
    letter-spacing: -0.5px;
}
.zicosh-hero h1 span {
    color: #63b3ed;
}
.zicosh-hero-desc, .zicosh-hero p {
    font-size: 16px;
    color: #e2e8f0;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 640px;
}
.zicosh-btn-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}
.zicosh-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #2B6CB0;
    color: #ffffff !important;
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s;
}
.zicosh-btn-primary:hover {
    background: #215387;
    transform: translateY(-1px);
}
.zicosh-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #ffffff !important;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    padding: 10px 22px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s;
}
.zicosh-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}
.zicosh-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 20px;
    max-width: 640px;
}
.zicosh-stat h4 {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff !important;
    margin: 0;
}
.zicosh-stat-label, .zicosh-stat p {
    font-size: 12px;
    color: #cbd5e0;
    margin: 0;
    font-weight: 500;
    display: block;
}
.zicosh-ad-wrapper-below-hero {
    max-width: 860px;
    margin: -16px auto 40px;
    padding: 16px;
    background: #ffffff;
    border: 1px solid #EDF2F7;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    text-align: center;
}

/* Section Headers */
.zicosh-section-header {
    text-align: center;
    max-width: 680px;
    margin: 54px auto 32px;
}
.zicosh-section-badge {
    display: inline-block;
    background: #dbebff;
    color: #215387;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 8px;
}
.zicosh-section-header h2 {
    font-size: 28px;
    font-weight: 800;
    color: #1A202C !important;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
}
.zicosh-section-header h2 span {
    color: #215387;
}
.zicosh-section-header p {
    font-size: 14px;
    color: #718096;
}

/* SECTION 2: ROADMAP */
.zicosh-roadmap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 48px;
}
.zicosh-step-card {
    background: #ffffff;
    border: 1px solid #EDF2F7;
    border-radius: 8px;
    padding: 20px;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    text-decoration: none;
    color: inherit;
    display: block;
}
.zicosh-step-card:hover {
    border-color: #215387;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(33, 83, 135, 0.08);
}
.zicosh-step-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}
.zicosh-step-num {
    width: 30px;
    height: 30px;
    background: #215387;
    color: white;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 13px;
}
.zicosh-step-icon {
    color: #2664eb;
}
.zicosh-step-icon svg {
    width: 20px;
    height: 20px;
}
.zicosh-step-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: #1A202C !important;
    margin-bottom: 6px;
}
.zicosh-step-card p {
    font-size: 12px;
    color: #718096;
    line-height: 1.5;
    margin-bottom: 10px;
}
.zicosh-step-link {
    font-size: 11px;
    font-weight: 700;
    color: #2B6CB0;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* SECTION 3: SOLVED MCQS */
.zicosh-mcq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 20px;
    margin-bottom: 48px;
}
.zicosh-mcq-card {
    background: #ffffff;
    border: 1px solid #EDF2F7;
    border-radius: 10px;
    padding: 22px;
    transition: all 0.25s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 12px rgba(33, 83, 135, 0.04);
}
.zicosh-mcq-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(33, 83, 135, 0.1);
    border-color: #2B6CB0;
}
.zicosh-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}
.zicosh-subject-badge {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 4px;
    background: #dbebff;
    color: #215387;
}
.zicosh-icon-circle {
    width: 36px;
    height: 36px;
    background: #dbebff;
    color: #2664eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.zicosh-icon-circle svg {
    width: 18px;
    height: 18px;
}
.zicosh-mcq-card h3 {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 6px;
}
.zicosh-mcq-card h3 a {
    color: #1A202C !important;
    text-decoration: none;
}
.zicosh-mcq-card h3 a:hover {
    color: #2B6CB0 !important;
}
.zicosh-mcq-card p {
    font-size: 13px;
    color: #718096;
    margin-bottom: 14px;
    line-height: 1.5;
}
.zicosh-mcq-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #EDF2F7;
    padding-top: 10px;
    font-size: 12px;
    font-weight: 600;
    color: #2B6CB0;
}
.zicosh-mcq-footer span {
    color: #718096;
}
.zicosh-mcq-footer a {
    color: #2B6CB0;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.zicosh-mcq-footer a:hover {
    color: #215387;
}

/* SECTION 4: ESSENTIAL MODULES */
.zicosh-modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 18px;
    margin-bottom: 48px;
}
.zicosh-module-card {
    background: #ffffff;
    border: 1px solid #EDF2F7;
    border-radius: 10px;
    padding: 22px;
    display: flex;
    gap: 16px;
    transition: all 0.2s;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}
.zicosh-module-card:hover {
    border-color: #215387;
    box-shadow: 0 10px 20px rgba(33, 83, 135, 0.09);
    transform: translateY(-2px);
}
.zicosh-module-icon {
    width: 46px;
    height: 46px;
    background: #dbebff;
    color: #2664eb;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.zicosh-module-icon svg {
    width: 22px;
    height: 22px;
}
.zicosh-module-body h3 {
    font-size: 16px;
    font-weight: 700;
    color: #1A202C !important;
    margin-bottom: 4px;
}
.zicosh-module-body p {
    font-size: 12px;
    color: #718096;
    margin-bottom: 8px;
    line-height: 1.5;
}
.zicosh-module-link {
    font-size: 12px;
    font-weight: 700;
    color: #2B6CB0;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* SECTION 5: LATEST BLOG */
.zicosh-blog-section {
    margin-bottom: 48px;
}
.zicosh-blog-heading {
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin: 54px 0 28px;
}
.zicosh-blog-heading .part1 {
    color: #1A202C;
}
.zicosh-blog-heading .part2 {
    color: #215387;
    margin-left: 6px;
}
.zicosh-blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}
.zicosh-blog-card {
    background: #ffffff;
    border: 1px solid #EDF2F7;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.25s;
    box-shadow: 0 4px 12px rgba(33, 83, 135, 0.04);
    display: flex;
    flex-direction: column;
}
.zicosh-blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(33, 83, 135, 0.12);
    border-color: #2B6CB0;
}
.zicosh-blog-img-wrap {
    display: block;
    height: 190px;
    overflow: hidden;
    background: #EDF2F7;
}
.zicosh-blog-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.zicosh-blog-card:hover .zicosh-blog-img-wrap img {
    transform: scale(1.04);
}
.zicosh-blog-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}
.zicosh-blog-date {
    font-size: 11px;
    font-weight: 700;
    color: #718096;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    display: inline-block;
}
.zicosh-blog-content h3 {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 8px;
}
.zicosh-blog-content h3 a {
    color: #1A202C !important;
    text-decoration: none;
    transition: color 0.2s;
}
.zicosh-blog-content h3 a:hover {
    color: #2B6CB0 !important;
}
.zicosh-blog-content p {
    font-size: 13px;
    color: #718096;
    line-height: 1.5;
    margin-bottom: 14px;
}
.zicosh-blog-readmore {
    font-size: 12px;
    font-weight: 700;
    color: #2B6CB0;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.2s;
}
.zicosh-blog-readmore:hover {
    color: #215387;
    gap: 7px;
}

/* SECTION 5: FAQS ACCORDION */
.zicosh-faq-list {
    max-width: 860px;
    margin: 0 auto 56px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.zicosh-faq-item {
    background: #ffffff;
    border: 1px solid #EDF2F7;
    border-radius: 8px;
    transition: all 0.2s;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}
.zicosh-faq-item:hover {
    border-color: #2B6CB0;
    box-shadow: 0 6px 16px rgba(33, 83, 135, 0.06);
}
.zicosh-faq-item[open] {
    border-color: #215387;
}
.zicosh-faq-question {
    padding: 16px 20px;
    font-size: 15px;
    font-weight: 700;
    color: #1A202C;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    list-style: none;
    user-select: none;
}
.zicosh-faq-question::-webkit-details-marker {
    display: none;
}
.zicosh-faq-icon {
    width: 18px;
    height: 18px;
    color: #2B6CB0;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}
.zicosh-faq-item[open] .zicosh-faq-icon {
    transform: rotate(180deg);
}
.zicosh-faq-answer {
    padding: 0 20px 18px;
    font-size: 14px;
    line-height: 1.65;
    color: #4A5568;
    border-top: 1px solid #F7FAFC;
    padding-top: 12px;
}
.zicosh-faq-answer strong {
    color: #1A202C;
}

/* Responsive */
@media (max-width: 900px) {
    .zicosh-hero-grid { grid-template-columns: 1fr; }
    .zicosh-hero h1 { font-size: 30px; }
    .zicosh-hero { padding: 40px 24px; }
}