/* ===== NEXT-LEVEL BLOG PROSE STYLING ===== */

/* --- ROOT VARIABLES (Enhanced) --- */
:root {
    /* Brand Colors */
    --brand-primary: #2563eb;
    --brand-hover: #2d69ec;
    --brand-light: #8aabf4;
    --brand-faded: rgba(37, 99, 235, 0.08);
    --brand-darker: #1e40af;
    --accent-color: #0d6efd;
    
    /* Neutrals */
    --text-primary: #111827;
    --text-secondary: #4b5563;
    --text-light: #9ca3af;
    --bg-light: #f9fafb;
    --bg-lighter: #f3f4f6;
    --border-color: #e5e7eb;
    
    /* Glass Effect */
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.15);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #2563eb 0%, #5c8af0 100%);
    --gradient-hover: linear-gradient(135deg, #2d69ec 0%, #7a9ff5 100%);
}

/* ===== TYPOGRAPHY SYSTEM ===== */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    color: var(--text-primary);
    background-color: #fff;
    line-height: 1.6;
}

/* ===== PROSE BLOCK STYLES ===== */
.prose {
    /* font-size: 1.1rem; */
    line-height: 1.85;
    color: var(--text-primary);
    max-width: 100%;
}

/* === HEADINGS === */
.prose h1, .prose h2, .prose h3, .prose h4, .prose h5, .prose h6 {
    font-weight: 600;
    letter-spacing: -0.5px;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    line-height: 1.25;
    color: var(--text-primary);
    scroll-margin-top: 80px; /* For smooth scrolling with sticky headers */
}

.prose h1 {
    font-size: 2.25rem;
    font-weight: 900;
    letter-spacing: -1px;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.prose h2 {
    font-size: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--brand-primary);
    position: relative;
    display: inline-block;
    background: linear-gradient(90deg, var(--text-primary) 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.prose h2::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: width 0.4s ease;
}

.prose h2:hover::after {
    width: 100%;
}

.prose h3 {
    font-size: 1.4rem;
    color: var(--text-primary);
    margin-top: 2rem;
    padding-left: 1rem;
    border-left: 4px solid var(--brand-primary);
}

.prose h4 {
    font-size: 1.15rem;
    color: var(--text-primary);
    margin-top: 1.5rem;
}

/* === PARAGRAPHS === */
.prose p {
    margin-bottom: 1.25rem;
    color: var(--text-secondary);
    font-weight: 600;
}

.prose p:first-of-type {
    /* font-size: 16px; */
    /* font-weight: 500; */
    /* color: var(--text-primary); */
    letter-spacing: 0.3px;
}

/* === LINKS === */
.prose a {
    color: var(--brand-primary);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 2px solid transparent;
}

.prose a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.prose a:hover {
    color: var(--brand-hover);
}

.prose a:hover::before {
    width: 100%;
}

/* === LISTS === */
.prose ul, .prose ol {
    padding-left: 2rem;
    margin-bottom: 1.75rem;
}

.prose li {
    margin-bottom: 0.75rem;
    padding-left: 0.5rem;
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 16px;
}

.prose ul > li::marker {
    color: var(--brand-primary);
    font-weight: 700;
}

.prose ol > li::marker {
    color: var(--brand-primary);
    font-weight: 700;
}

.prose li strong {
    color: var(--text-primary);
}

/* === BLOCKQUOTES === */
.prose blockquote {
    border-left: 5px solid var(--brand-primary);
    background: linear-gradient(90deg, var(--brand-faded) 0%, transparent 100%);
    padding: 1.5rem 1.5rem 1.5rem 2rem;
    border-radius: 0 12px 12px 0;
    margin: 2rem 0;
    color: var(--text-secondary);
    font-style: italic;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.prose blockquote::before {
    content: '"';
    position: absolute;
    left: 0.75rem;
    top: -0.5rem;
    font-size: 3rem;
    color: var(--brand-primary);
    opacity: 0.3;
}

.prose blockquote:hover {
    box-shadow: var(--shadow-md);
    border-left-width: 6px;
}

/* === CODE & SYNTAX === */
.prose code {
    background: var(--bg-lighter);
    color: var(--brand-darker);
    padding: 6px 12px;
    border-radius: 6px;
    font-family: 'Courier New', 'Courier', monospace;
    font-size: 0.9em;
    font-weight: 600;
    border: 1px solid var(--border-color);
    transition: all 0.2s ease;
}

.prose code:hover {
    background: var(--brand-faded);
    color: var(--brand-primary);
}

.prose pre {
    background: #1f2937;
    color: #e5e7eb;
    padding: 1.75rem;
    border-radius: 12px;
    overflow-x: auto;
    margin: 2rem 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    box-shadow: var(--shadow-lg);
}

.prose pre code {
    background: none;
    color: #e5e7eb;
    padding: 0;
    border: none;
    font-size: 0.95em;
}

.prose pre::before {
    content: '';
    position: absolute;
    top: 1rem;
    left: 1.75rem;
    width: 12px;
    height: 12px;
    background: #ef4444;
    border-radius: 50%;
    box-shadow: 20px 0 0 #eab308, 40px 0 0 #10b981;
}

/* === TABLES === */
.prose table {
    width: 100%;
    border-collapse: collapse;
    margin: 2.5rem 0;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.prose th {
    background: var(--gradient-primary);
    color: #fff;
    font-weight: 700;
    padding: 1.25rem 1.5rem;
    text-align: left;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.prose td {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 16px;
}

.prose tr:nth-child(even) {
    background: var(--bg-lighter);
}

.prose tr:hover {
    background: var(--brand-faded);
    transition: background 0.2s ease;
}

.prose tr:last-child td {
    border-bottom: none;
}

/* === HORIZONTAL RULES === */
.prose hr {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
    margin: 3.5rem 0;
}

/* === IMAGES === */
.prose img {
    width: 100%;
    max-width: 100%;
    /* height: 400px; */
    border-radius: 12px;
    margin: 0.5rem 0;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.prose img:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

/* === STRONG & EMPHASIS === */
.prose strong {
    font-weight: 700;
    color: var(--text-primary);
}

.prose em {
    font-style: italic;
    color: var(--text-secondary);
}

/* ===== SECTION-SPECIFIC STYLES ===== */

/* --- Table of Content Sidebar --- */
.sidebar-sticky {
    position: sticky;
    top: 100px;
    z-index: 10;
}

.toc-container {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    margin-bottom: 2rem;
}

.toc-container h5 {
    color: var(--text-primary);
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--brand-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.toc-link {
    color: var(--text-secondary);
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    margin-bottom: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    font-weight: 500;
    font-size: 0.95rem;
}

.toc-link::before {
    content: '';
    width: 4px;
    height: 16px;
    background: var(--brand-primary);
    border-radius: 2px;
    margin-right: 12px;
    opacity: 0;
    transition: all 0.3s ease;
}

.toc-link:hover {
    background: var(--brand-faded);
    color: var(--brand-primary);
    padding-left: 1.5rem;
}

.toc-link:hover::before {
    opacity: 1;
}

.toc-link.active {
    background: linear-gradient(90deg, var(--brand-faded) 0%, transparent 100%);
    color: var(--brand-primary);
    font-weight: 700;
    border-left: 3px solid var(--brand-primary);
}

.toc-link.active::before {
    opacity: 1;
    height: 20px;
}

/* Support Status Badge */
.support-status {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.support-badge {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.6);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 10px rgba(16, 185, 129, 0.6);
    }
    50% {
        box-shadow: 0 0 20px rgba(16, 185, 129, 0.8);
    }
}

/* --- CTA Card in Sidebar --- */
.cta-card {
    background: var(--gradient-primary);
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: slideUp 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.cta-card-header {
    background: rgba(0, 0, 0, 0.1);
    padding: 1.75rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-card-header h4 {
    color: #fff;
    font-weight: 800;
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.4;
}

.cta-card-body {
    padding: 1.75rem;
    text-align: center;
}

.cta-card-body p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: #fff;
    color: var(--brand-primary);
    padding: 0.875rem 1.75rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.2);
}

.cta-btn:hover {
    background: var(--bg-lighter);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.cta-btn svg {
    width: 18px;
    height: 18px;
    stroke-width: 2.5;
}

/* --- Main Content Area --- */
.blog-content {
    padding-right: 2rem;
}

/* --- Featured Lists --- */
.prose ul:not(.toc-list) li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 16px;
}

.prose ul:not(.toc-list) > li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--brand-primary);
    font-weight: 800;
    opacity: 0;
    transition: all 0.3s ease;
}

.prose ul:not(.toc-list) > li:hover::before {
    opacity: 1;
    left: -8px;
}

/* --- Numbered Lists with Icons --- */
.prose ol > li {
    counter-increment: list-counter;
    color: var(--text-secondary);
}

/* ===== SECTION ENHANCEMENTS ===== */

/* --- Hero Section --- */
.blog-hero {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    background-size: cover;
    background-position: center;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.25) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(-50%, -50%) translateY(0px); }
    50% { transform: translate(-50%, -50%) translateY(20px); }
}

.hero-title {
    font-weight: 900;
    letter-spacing: -1.5px;
    line-height: 1.1;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.lead-text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    line-height: 1.7;

}

/* --- Quick Answer Box --- */
.quick-answer-box {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.quick-answer-box:hover {
    background: rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.25);
}

.badge-quick {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.answer-text {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 500;
}

/* --- FAQ Section --- */
.faq-section {
    background: linear-gradient(180deg, var(--bg-light) 0%, #fff 100%);
    padding: 3rem 0;
    margin-top: 4rem;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
}

.accordion-item {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 1.25rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--brand-primary);
}

.accordion-button {
    background: #fff;
    color: var(--text-primary);
    font-weight: 600;
    padding: 1.5rem 1.75rem;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: var(--brand-faded);
    color: var(--brand-primary);
    box-shadow: none;
}

.accordion-button:hover {
    background: var(--brand-faded);
    color: var(--brand-primary);
}

.accordion-button::after {
    width: 1.5rem;
    height: 1.5rem;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232563eb'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 1.5rem 1.75rem;
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1rem;
    background: #fff;
}

/* --- Conclusion Section --- */
.conclusion-section {
    background: linear-gradient(180deg, #fff 0%, var(--bg-light) 100%);
    padding: 4rem 0;
    margin-top: 4rem;
}

.conclusion-wrapper {
    background: rgba(37, 99, 235, 0.05);
    border-radius: 16px;
    padding: 3rem;
    margin-bottom: 3rem;
    border: 1px solid var(--border-color);
}

.conclusion-text {
    color: var(--text-secondary);
    line-height: 1.85;
    font-size: 1.05rem;
}

/* --- Final CTA Section --- */
.final-cta {
    background: var(--gradient-primary);
    border-radius: 20px;
    padding: 3.5rem 2rem;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    margin-top: 3rem;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.final-cta h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    border: none;
    padding-left: 0;
}

.final-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.final-cta-btn {
    display: inline-block;
    background: #fff;
    color: var(--brand-primary);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.final-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: var(--bg-lighter);
}

/* ===== ANIMATIONS ===== */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-slide-up {
    animation: slideUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes fadeInScaleUp {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .blog-content {
        padding-right: 0;
    }
    
    .prose h1 {
        font-size: 2rem;
    }
    
    .prose h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .prose {
        font-size: 1rem;
    }
    
    .prose h1 {
        font-size: 1.75rem;
        margin-top: 2rem;
    }
    
    .prose h2 {
        font-size: 1.35rem;
        margin-top: 1.5rem;
    }
    
    .prose h3 {
        font-size: 1.1rem;
        padding-left: 0.75rem;
    }
    
    .prose ul, .prose ol {
        padding-left: 1.5rem;
    }
    
    .prose table {
        font-size: 0.95rem;
    }
    
    .prose th, .prose td {
        padding: 0.75rem 1rem;
    }
    
    .blog-hero {
        padding: 80px 0;
    }
    
    .lead-text {
        font-size: 1.1rem;
    }
    
    .final-cta {
        padding: 2.5rem 1.5rem;
    }
    
    .final-cta h3 {
        font-size: 1.25rem;
    }
}

@media (max-width: 576px) {
    .prose {
        font-size: 0.95rem;
    }
    
    .prose h1 {
        font-size: 1.5rem;
    }
    
    .prose h2 {
        font-size: 1.2rem;
    }
    
    .prose h3 {
        font-size: 1rem;
    }
    
    .prose ul, .prose ol {
        padding-left: 1.25rem;
    }
    
    .blog-hero {
        padding: 60px 0;
    }
    
    .quick-answer-box {
        padding: 1.5rem;
    }
    
    .cta-card {
        margin-bottom: 2rem;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .sidebar-sticky,
    .cta-card,
    .final-cta-btn,
    .accordion-button {
        display: none;
    }
    
    .prose {
        color: #000;
    }
    
    .prose a {
        color: #0d6efd;
        text-decoration: underline;
    }
    
    .prose h1, .prose h2, .prose h3 {
        page-break-after: avoid;
    }
}

/* Container for the cards */
.support-card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 2rem 0;
    font-family: sans-serif;
}

/* Individual Card Styling */
.feature-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

/* Big Blue Header (matching your image) */
.card-header {
    font-size: 20px;
    font-weight: 800;
    color: #2563eb; /* Professional Blue */
    margin-bottom: 12px;
}

/* Recommended Highlight */
.feature-card.recommended {
    border: 2px solid #2563eb;
    background-color: #f8faff;
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #2563eb;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

/* Integrating your existing Prose Class */
.prose ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.prose ul li {
    position: relative;
    padding-left: 0; /* Centered for card style */
    font-size: 16px;
    color: #475569;
    line-height: 1.5;
}

/* Mobile Adjustments */
@media (max-width: 600px) {
    .card-header {
        font-size: 20px;
    }
}

.camera-section {
            padding: 1.5rem 1rem;
            /* background-color: #f1f5f9; */
        }

        /* Card Container */
        .card-wrapper {
            background: #ffffff;
            border-radius: 12px;
            border: 1px solid #e2e8f0;
            padding: 1.5rem;
            height: 100%;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        }

        /* Header Style */
        .card-title-area {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 1.5rem;
        }

        .card-title-area i {
            font-size: 1.5rem;
            color: #2563eb;
        }

        .card-title-area h2 {
            font-size: 1.25rem;
            font-weight: 700;
            margin: 0;
            color: #0f172a;
        }

        /* Row-based List Alternative */
        .info-row {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 0.85rem;
            line-height: 1.5;
            color: #334155;
            font-size: 0.95rem;
        }

        .info-row .chevron {
            color: #dc2626;
            font-weight: 900;
            font-size: 1.2rem;
            line-height: 1;
            flex-shrink: 0;
        }

        .text-bold {
            font-weight: 600;
            color: #2563eb;
        }