.code { 		
	max-height:200px;
	overflow:auto;
	overflow-x: hidden; 
	margin: 0 15px 15px;
}
pre {
	max-width:650px !important;
	overflow-x: auto; 
	padding:10px;
	border:1px solid gainsboro;
	font-size:90%;
	color:darkblue;
}
#entry li {
	line-height:1.7em;
	margin-bottom:.4em;
}

code {
	background:transparent; 
	padding:0px; margin:0px;
}
.syntaxhighlighter {
	margin:0px !important;
}
		
div.syntaxhighlighter {
	border:1px solid gainsboro !important;
	margin-bottom:24px !important;
	word-break: break-all;
}
.code, pre { 		
	max-height:300px;
	overflow:auto;
	overflow-x: hidden; 
	margin: 0 0px 15px;
}
pre {
	overflow-x: auto; 
	padding:2px 7px;
	border:1px solid gainsboro;
	color:darkblue;
	background-color: transparent;
	width:95%;
}


#entry ul {
	margin: 0px 0 10px 20px;
	padding-left: 12px;
	margin-bottom: 24px;
}

#entry li {
	line-height:1.7em;
	margin-bottom:.4em;
}

.tech-article img {
  max-width: 60%;
  display: block;
  margin: 10px auto 30px auto;
  padding:1px;
  box-shadow: 0 3px 10px rgba(0,0,0, 0.05);
  max-height: 280px;
  border: 1px solid gainsboro;
}

.kb-article h1, .kb-article h2, .kb-article h3, .kb-article h4, .kb-article h5 {
    font-family: Roboto, sans-serif;
}
.kb-article h1{
    font-weight:700;
	font-size: 36px;
}
.kb-article-body-main h3 {
    font-weight: 500;
    font-size: 22px;
}
.kb-article-body-main h2 {
    font-weight: 700;
    font-size: 28px;
    line-height: 34px;
}
.kb-article-body-sidebar h3{
	font-size: 20px;
	font-weight: 400;
}

/* ============================================================================
   Enhanced Product Window
   ============================================================================ */

.kb-product-window {
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 0;
    margin: 2rem auto; /* Center it */
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    position: relative;
    
    /* More flexible width */
    width: 100%;
    max-width: 600px; /* Increased from 400px */
    min-width: 320px;
}

/* Alternative: Full width within article constraints */
.kb-product-window.full-width {
    max-width: 100%;
    width: 100%;
}

/* Alternative: Sidebar placement (narrower) */
.kb-product-window.sidebar {
    max-width: 350px;
    margin: 1rem 0;
}

.kb-product-header {
    background: linear-gradient(135deg, #00A0FF 0%, #2193D6 100%);
    color: white;
    padding: 1.25rem 1.5rem; /* Slightly more padding */
    position: relative;
}

.kb-product-title {
    font-size: 1.2rem; /* Slightly larger */
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.kb-product-subtitle {
    font-size: 0.9rem; /* Slightly larger */
    opacity: 0.9;
    margin: 0;
    line-height: 1.4;
}

.kb-product-body {
    padding: 2rem 1.5rem 1.5rem;
}

/* Image styling within product window */
.kb-product-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 0 0 1.5rem 0;
    border: 1px solid #E2E8F0;
}

.kb-product-description {
    color: #4A5568;
    font-size: 1rem; /* Slightly larger for better readability */
    line-height: 1.6;
    margin: 0 0 1.5rem 0;
}

/* Feature list styling */
.kb-product-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin: 0.75rem 0;
    font-size: 0.95rem; /* Slightly larger */
    color: #2D3748;
    line-height: 1.5;
}

.kb-product-feature::before {
    content: "✓";
    color: #22C55E;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: 0.1rem;
    font-size: 1rem;
}

.kb-product-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 2rem; /* More space above buttons */
}

.kb-product-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem; /* More padding */
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem; /* Slightly larger */
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    text-align: center;
}

.kb-product-btn-primary {
    background: #00A0FF;
    color: white;
}

.kb-product-btn-primary:hover {
    background: #0080CC;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 160, 255, 0.3);
}

.kb-product-btn-secondary {
    background: #F8FAFC;
    color: #00A0FF;
    border: 1px solid #00A0FF;
}

.kb-product-btn-secondary:hover {
    background: rgba(0, 160, 255, 0.05);
    transform: translateY(-1px);
}

.kb-product-btn-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Meta section for additional context */
.kb-product-meta {
    background: #F8FAFC;
    padding: 1rem 1.5rem;
    border-top: 1px solid #E2E8F0;
    font-size: 0.9rem;
    color: #64748B;
    text-align: center;
    line-height: 1.4;
}

/* ============================================================================
   Responsive Design
   ============================================================================ */

/* Large screens - can be wider */
@media (min-width: 1024px) {
    .kb-product-window {
        max-width: 650px;
    }
    
    .kb-product-actions {
        flex-direction: row; /* Side by side buttons */
    }
    
    .kb-product-btn {
        flex: 1; /* Equal width buttons */
    }
}

/* Medium screens - standard width */
@media (max-width: 1023px) and (min-width: 768px) {
    .kb-product-window {
        max-width: 550px;
    }
}

/* Small screens - optimize for mobile */
@media (max-width: 767px) {
    .kb-product-window {
        max-width: 100%;
        margin: 1.5rem 0;
        border-radius: 12px;
    }
    
    .kb-product-header {
        padding: 1rem 1.25rem;
    }
    
    .kb-product-title {
        font-size: 1.1rem;
    }
    
    .kb-product-subtitle {
        font-size: 0.85rem;
    }
    
    .kb-product-body {
        padding: 1.5rem 1.25rem 1.25rem;
    }
    
    .kb-product-description {
        font-size: 0.95rem;
    }
    
    .kb-product-feature {
        font-size: 0.9rem;
    }
    
    .kb-product-btn {
        padding: 0.875rem 1rem;
        font-size: 0.9rem;
    }
}

/* Very small screens */
@media (max-width: 480px) {
    .kb-product-window {
        border-radius: 8px;
    }
    
    .kb-product-header {
        padding: 0.875rem 1rem;
    }
    
    .kb-product-body {
        padding: 1.25rem 1rem 1rem;
    }
}

/* ============================================================================
   Service Definition Card Component
   ============================================================================ */

.kb-service-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-left: 4px solid #00A0FF;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.2s ease;
}

.kb-service-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Logo/Icon container */
.kb-service-logo {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F8FAFC;
    border-radius: 8px;
    border: 1px solid #E2E8F0;
}

.kb-service-logo img {
    max-width: 100%!important;
    max-height: 100%!important;
    object-fit: contain!important;
}

/* Text content area */
.kb-service-content {
    flex: 1;
    min-width: 0; /* Prevents flex overflow */
}

.kb-service-title {
    color: #001B3A;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 0.75rem 0;
    line-height: 1.3;
}

.kb-service-description {
    color: #4A5568;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* Alternative layouts */
.kb-service-card.large {
    padding: 2rem;
}

.kb-service-card.large .kb-service-logo {
    width: 80px;
    height: 80px;
}

.kb-service-card.large .kb-service-title {
    font-size: 1.3rem;
}

.kb-service-card.large .kb-service-description {
    font-size: 1rem;
}

/* Color variants */
.kb-service-card.primary {
    border-left-color: #00A0FF;
    background: linear-gradient(135deg, rgba(0, 160, 255, 0.02) 0%, rgba(255, 255, 255, 1) 100%);
}

.kb-service-card.secondary {
    border-left-color: #2193D6;
    background: linear-gradient(135deg, rgba(33, 147, 214, 0.02) 0%, rgba(255, 255, 255, 1) 100%);
}


/* With action button */
.kb-service-card-with-action {
    padding-bottom: 1.25rem;
}

.kb-service-actions {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #E2E8F0;
}

.kb-service-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 160, 255, 0.1);
    color: #00A0FF;
    border: 1px solid rgba(0, 160, 255, 0.2);
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.kb-service-btn:hover {
    background: rgba(0, 160, 255, 0.15);
    transform: translateY(-1px);
    text-decoration: none;
}

/* Icon-only variant (no logo image) */
.kb-service-card.icon-only .kb-service-logo {
    background: linear-gradient(135deg, #00A0FF 0%, #2193D6 100%);
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

/* Stacked variant for mobile or narrow spaces */
.kb-service-card.stacked {
    flex-direction: column;
    text-align: center;
}

.kb-service-card.stacked .kb-service-logo {
    align-self: center;
}

/* ============================================================================
   Responsive Design
   ============================================================================ */

@media (max-width: 640px) {
    .kb-service-card {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
        gap: 1rem;
    }
    
    .kb-service-logo {
        align-self: center;
        width: 50px;
        height: 50px;
    }
    
    .kb-service-title {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .kb-service-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    /* Keep large variant desktop-only */
    .kb-service-card.large {
        padding: 1.25rem;
    }
    
    .kb-service-card.large .kb-service-logo {
        width: 50px;
        height: 50px;
    }
    
    .kb-service-card.large .kb-service-title {
        font-size: 1.1rem;
    }
    
    .kb-service-card.large .kb-service-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .kb-service-card {
        margin: 1.5rem 0;
        padding: 1rem;
        border-radius: 8px;
    }
    
    .kb-service-logo {
        width: 45px;
        height: 45px;
    }
    
    .kb-service-title {
        font-size: 1rem;
    }
    
    .kb-service-description {
        font-size: 0.875rem;
    }
}


/* ============================================================================
   Responsive Design
   ============================================================================ */
@media (max-width: 768px) {
    .kb-carousel-header {
        padding: 0.875rem 1rem;
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
    
    .kb-carousel-nav {
        order: -1;
    }
    
    .kb-tabs-nav {
        flex-wrap: wrap;
    }
    
    .kb-tab-button {
        flex: 1;
        min-width: 120px;
    }
    
    .kb-product-window {
        max-width: 100%;
    }
    
    .kb-step {
        gap: 0.75rem;
    }
    
    .kb-step-number {
        width: 2rem;
        height: 2rem;
        font-size: 0.8rem;
    }
    
    .kb-card-tip,
    .kb-card-warning,
    .kb-card-example {
        padding: 1.25rem;
        margin: 1.5rem 0;
    }
}

/* ============================================================================
   Step Number Component
   ============================================================================ */

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    background: linear-gradient(135deg, #00A0FF 0%, #2193D6 100%);
    color: white;
    border-radius: 50%;
    font-weight: 600;
    font-size: 0.875rem;
    margin-right: 0.75rem;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 160, 255, 0.3);
    position: relative;
    top: -1px; /* Slight alignment adjustment */
}

.step-number.secondary {
    background: linear-gradient(135deg, #64748B 0%, #475569 100%);
    box-shadow: 0 2px 8px rgba(100, 116, 139, 0.3);
}

/* Outline style variant */
.step-number.outline {
    background: white;
    color: #00A0FF;
    border: 2px solid #00A0FF;
    box-shadow: 0 2px 8px rgba(0, 160, 255, 0.15);
}

/* Integration with headings */
.tech-article > h3 .step-number,
.arc-kb > h3 .step-number {
    /* Ensure step numbers don't inherit heading styles */
    padding: 0 !important;
    border: none !important;
    background: linear-gradient(135deg, #00A0FF 0%, #2193D6 100%) !important;
    margin: 0 0.75rem 0 0 !important;
    font-size: 0.875rem !important;
    line-height: 1 !important;
}

/* Hover effects */
.step-number:hover {
    transform: scale(1.05);
    transition: transform 0.2s ease;
}

/* Accessibility - focus states */
h2:focus .step-number,
h3:focus .step-number {
    outline: 2px solid #00A0FF;
    outline-offset: 2px;
}

/* ============================================================================
   Responsive Design
   ============================================================================ */

@media (max-width: 768px) {
    .step-number {
        width: 1.75rem;
        height: 1.75rem;
        font-size: 0.8rem;
        margin-right: 0.5rem;
    }
    
    .step-number.large,
    .tech-article > h2 .step-number {
        width: 2rem !important;
        height: 2rem !important;
        font-size: 0.875rem !important;
        margin-right: 0.75rem !important;
    }
    
    .kb-connected-steps h3:not(:last-child)::after {
        left: 0.875rem;
    }
}

@media (max-width: 480px) {
    .step-number {
        width: 1.5rem;
        height: 1.5rem;
        font-size: 0.75rem;
        margin-right: 0.5rem;
    }
    
    .step-number.large,
    .tech-article > h2 .step-number {
        width: 1.75rem !important;
        height: 1.75rem !important;
        font-size: 0.8rem !important;
        margin-right: 0.5rem !important;
    }
}

/* ============================================================================
   Utility Classes
   ============================================================================ */
.kb-component-spacing {
    margin: 2rem 0;
}

.kb-component-spacing-sm {
    margin: 1rem 0;
}

.kb-component-spacing-lg {
    margin: 3rem 0;
}

/* ============================================================================
   Engagement and Support
   ============================================================================ */
.engagement-section {
    margin-top: 40px;
}

.engagement-group {
    margin-bottom: 24px;
}

.engagement-group:last-child {
    margin-bottom: 0;
}

.engagement-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
}

.related-articles-mini {
    font-size: 14px;
}

.related-article-item {
    margin-bottom: 12px;
    padding-left: 16px;
    position: relative;
}

.related-article-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 4px;
    height: 4px;
    background: #2193D6;
    border-radius: 50%;
}

.related-article-item a {
    color: #444;
    text-decoration: none;
    transition: color 0.2s;
    display: block;
    line-height: 1.4;
}

.related-article-item a:hover {
    color: #2193D6;
}

.support-link,
.community-link {
    display: flex;
    align-items: center;
    padding: 10px;
    margin-bottom: 8px;
    color: #444;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s;
}

.support-link:hover,
.community-link:hover {
    background: #f1f3f5;
    color: #2193D6;
}

.support-link i,
.community-link i {
    width: 24px;
    margin-right: 8px;
    color: #00A0FF;
}

.kb-search {
    position: relative;
}

.search-input-group {
    display: flex;
    align-items: center;
    position: relative;
}

.kb-search .form-control {
    width: 100%;
    padding: 8px 36px 8px 36px;
    border: 1px solid #DBDFEA;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.2s;
}

.kb-search .form-control:focus {
    outline: none;
    border-color: #2193D6;
    box-shadow: 0 0 0 3px rgba(33,147,214,0.1);
}

.search-icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #00A0FF;
    font-size: 14px;
    pointer-events: none;
}

.search-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 4px;
    color: #666;
    cursor: pointer;
    transition: color 0.2s;
}

.search-btn:hover {
    color: #2193D6;
}

/* ============================================================================
   FAQ Section Component
   ============================================================================ */

.kb-faq-section {
    margin: 4rem 0; 
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.kb-faq-title {
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F3F4 100%);
    margin: 0 !important;
    padding: 2rem 2.5rem 1.5rem;
    font-size: 1.875rem !important;
    font-weight: 600 !important;
    color: #001B3A !important;
    border-left: none !important;
    border-bottom: 1px solid #E2E8F0;
    position: relative;
}

.kb-faq-description {
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F3F4 100%);
    margin: 0 !important;
    padding: 0 2.5rem 2rem;
    color: #4A5568 !important;
    font-size: 1.1rem !important;
    line-height: 1.6 !important;
    border-bottom: 1px solid #E2E8F0;
}

.kb-faq-container {
    padding: 0;
}

/* FAQ Item */
.kb-faq-item {
    border-bottom: 1px solid #E2E8F0;
    transition: all 0.2s ease;
}

.kb-faq-item:last-child {
    border-bottom: none;
}

.kb-faq-item:hover {
    background: rgba(0, 160, 255, 0.01);
}

/* FAQ Question Button */
.kb-faq-question {
    width: 100%;
    padding: 1.75rem 2.5rem;
    border: none;
    background: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    transition: all 0.2s ease;
    position: relative;
}

.kb-faq-question:hover {
    background: rgba(0, 160, 255, 0.02);
}

.kb-faq-question:focus {
    outline: 2px solid #00A0FF;
    outline-offset: -2px;
}

.kb-faq-question h3 {
    text-align: left;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    color: #001B3A !important;
    font-size: 1.2rem !important;
    font-weight: 500 !important;
    line-height: 1.4 !important;
    flex: 1;
}

/* FAQ Toggle Icon */
.kb-faq-toggle {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 160, 255, 0.1);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.kb-faq-icon {
    width: 12px;
    height: 12px;
    position: relative;
    transition: transform 0.3s ease;
}

.kb-faq-icon::before,
.kb-faq-icon::after {
    content: '';
    position: absolute;
    background: #00A0FF;
    transition: all 0.3s ease;
}

.kb-faq-icon::before {
    width: 12px;
    height: 2px;
    top: 5px;
    left: 0;
}

.kb-faq-icon::after {
    width: 2px;
    height: 12px;
    top: 0;
    left: 5px;
}

/* Expanded state */
.kb-faq-item.expanded .kb-faq-toggle {
    background: rgba(0, 160, 255, 0.15);
    transform: rotate(180deg);
}

.kb-faq-item.expanded .kb-faq-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

/* FAQ Answer */
.kb-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: #FAFBFC;
}

.kb-faq-item.expanded .kb-faq-answer {
    max-height: 1000px;
    padding: 0 2.5rem 2rem;
}

.kb-faq-answer > div {
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 160, 255, 0.1);
}

.kb-faq-answer p {
    color: #2D3748 !important;
    font-size: 1.1rem !important;
    line-height: 1.8 !important;
    margin: 0 0 1.25rem 0 !important;
}

.kb-faq-answer p:last-child {
    margin-bottom: 0 !important;
}

.kb-faq-answer ul {
    margin: 1rem 0 1.5rem 0 !important;
    padding-left: 1.5rem !important;
}

.kb-faq-answer li {
    color: #2D3748 !important;
    font-size: 1.05rem !important;
    line-height: 1.7 !important;
    margin-bottom: 0.75rem !important;
    position: relative;
}

.kb-faq-answer li::marker {
    color: #00A0FF;
}

.kb-faq-answer li strong {
    color: #001B3A;
    font-weight: 600;
}

/* Inline links */
.kb-inline-link {
    color: #00A0FF !important;
    text-decoration: none !important;
    border-bottom: 1px solid transparent;
    transition: all 0.2s ease;
    font-weight: 500;
}

.kb-inline-link:hover {
    color: #0080CC !important;
    border-bottom-color: #0080CC;
    text-decoration: none !important;
}

/* Animation for smooth reveal */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.kb-faq-item.expanded .kb-faq-answer > div {
    animation: fadeInUp 0.4s ease-out 0.1s both;
}

/* ============================================================================
   Responsive Design
   ============================================================================ */

@media (max-width: 768px) {
    .kb-faq-title {
        font-size: 1.5rem !important;
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .kb-faq-title::before {
        left: 1rem;
        font-size: 1.2rem;
    }
    
    .kb-faq-description {
        padding: 0 1.5rem 1.5rem;
        font-size: 1rem !important;
    }
    
    .kb-faq-question {
        padding: 1.25rem 1.5rem;
        gap: 0.75rem;
    }
    
    .kb-faq-question h3 {
        font-size: 1.1rem !important;
    }
    
    .kb-faq-toggle {
        width: 28px;
        height: 28px;
    }
    
    .kb-faq-icon {
        width: 10px;
        height: 10px;
    }
    
    .kb-faq-icon::before {
        width: 10px;
        height: 2px;
        top: 4px;
    }
    
    .kb-faq-icon::after {
        width: 2px;
        height: 10px;
        left: 4px;
    }
    
    .kb-faq-item.expanded .kb-faq-answer {
        padding: 0 1.5rem 1.5rem;
    }
    
    .kb-faq-answer p {
        font-size: 1rem !important;
        line-height: 1.7 !important;
    }
    
    .kb-faq-answer li {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
    }
}

@media (max-width: 480px) {
    .kb-faq-section {
        margin: 2rem 0;
        border-radius: 12px;
    }
    
    .kb-faq-title {
        font-size: 1.3rem !important;
        padding: 1.25rem 1rem 0.75rem;
    }
    
    .kb-faq-description {
        padding: 0 1rem 1.25rem;
        font-size: 0.95rem !important;
    }
    
    .kb-faq-question {
        padding: 1rem;
    }
    
    .kb-faq-question h3 {
        font-size: 1rem !important;
    }
    
    .kb-faq-item.expanded .kb-faq-answer {
        padding: 0 1rem 1.25rem;
    }
}

/* ============================================================================
   CTA - Path Selection
   ============================================================================ */

.cta-path-selector {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    margin: 3rem 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.cta-path-title {
    text-align: center;
    color: #001B3A;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 2rem 0;
}

.cta-path-options {
    display: grid;
    gap: 1rem;
}

.cta-path-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    transition: all 0.2s ease;
    text-decoration: none;
    color: inherit;
}

.cta-path-option:hover {
    border-color: #00A0FF;
    background: rgba(0, 160, 255, 0.02);
    transform: translateX(4px);
    text-decoration: none;
}

.cta-path-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #00A0FF 0%, #2193D6 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.cta-path-content h4 {
    color: #001B3A;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
}

.cta-path-content p {
    color: #4A5568;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.cta-path-arrow {
    color: #00A0FF;
    font-size: 1.2rem;
    margin-left: auto;
}

/* Responsive */
@media (max-width: 768px) {
    .cta-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-actions .cta-btn {
        width: 100%;
        max-width: 300px;
    }
}