:root {
    /* Dark Theme Colors */
    --background: #0a0a0a;
    --foreground: #f5f5f5;
    --card: #1a1a1a;
    --card-foreground: #f5f5f5;
    --primary: #b38d31; /* Golden accent */
    --primary-foreground: #0a0a0a;
    --secondary: #2a2a2a;
    --secondary-foreground: #f5f5f5;
    --muted: #1f1f1f;
    --muted-foreground: #a1a1a1;
    --accent: #b38d31;
    --accent-foreground: #0a0a0a;
    --border: #2a2a2a;
    --ring: #b38d31;
    --warm-light: #b38d31;
    --color-black: #000000;
    --color-white: #ffffff;
    --color-gold: #ffd700;
    --color-light-grey: #e0e0e0;
    --color-medium-grey: #aaaaaa;
    
    /* Fonts (Assumes Poppins and Lato are imported in HTML head) */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Lato', sans-serif;
}

/* Body - Matching main site */
body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: var(--foreground);
    background-color: var(--background);
    overflow-x: hidden;
}

/* Typography - Matching main site */
h1, h2, h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

/* Container - Matching main site */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    
}

/* CTA Buttons - Matching main site */
.cta-btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--primary);
    color: var(--primary-foreground);
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 700;
}

.cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 10px var(--primary);
}

.cta-btn.secondary {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.cta-btn.secondary:hover {
    background-color: var(--primary);
    color: var(--primary-foreground);
}

/* Section Titles and Subtitles - Matching main site */
.section-title {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: -.4rem;
    color: var(--foreground);
}

.section-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--muted-foreground);
    text-align: center;
    margin-bottom: 2.5rem;
}

/* =========================================
   3. Article Page Styles (Light Reading Mode)
   ========================================= */

/* The article page body itself is now very light gray/white */
.article-page {
    background-color: var(--color-light-grey); /* Using #e0e0e0 or similar light background */
    color: var(--color-black); 
    padding-top: 50px; /* Space below fixed header */
}

.article-container {
    max-width: 900px; /* Reduced max-width for better reading line length */
    margin: 0 auto;
    padding: 20px;
}

/* Specific Article Content Styling - The "paper" where the text is */
.article-content {
    background-color: var(--color-white); /* Pure white background for content */
    padding: 40px 60px;
    border-radius: 8px;
    /* Soft, subtle shadow to lift the article off the page */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(0, 0, 0, 0.05); 
}

.article-meta-breadcrumbs {
    font-size: 1.2rem;
    color: var(--muted-foreground); /* Darker gray for subtle text */
    margin-bottom: 20px;
    padding-top: 20px;
}

.article-meta-breadcrumbs a {
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 0.2s;
}

.article-meta-breadcrumbs a:hover {
    color: var(--primary); /* Gold hover */
}

.article-headline {
    font-size: 2.5rem;
    color: var(--color-black); /* Headline is black/dark for contrast */
    margin-bottom: 30px;
}

.article-hero-image {
    width: 100%;
    margin: 30px 0;
}

.article-hero-image img {
    width: 100%;
    height: auto;
    max-height: 400px; /* Adjusted height for light mode image */
    object-fit: cover;
    border-radius: 6px;
}

/* Article Body Text */
.article-body p {
    font-family: var(--font-body);
    font-size: 1.15rem; /* Slightly larger for easier reading on light mode */
    line-height: 1.8;
    color: var(--color-black); /* Main reading text is dark */
    margin-bottom: 1.5em;
}

.article-body p strong {
    color: var(--primary); /* Gold highlight */
}

.strong {
    font-weight: 700;
    color: var(--primary); /* Gold for strong text */
}

.article-subheadline {
    font-size: 2rem;
    color: var(--color-black); /* Subheadlines are dark */
    margin-top: 40px;
    margin-bottom: 20px;
}

.article-list-title {
    font-size: 1.25rem;
    color: var(--color-black);
    margin-top: 30px;
    margin-bottom: 15px;
}

/* Custom bullet list for article content */
.article-points-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 40px;
}

.article-points-list li {
    font-size: 1.1rem;
    line-height: 2;
    color: var(--color-black);
    padding-left: 25px;
    position: relative;
}

.article-points-list li::before {
    content: "•";
    color: var(--primary); /* Gold bullet */
    font-size: 1.4rem;
    position: absolute;
    left: 0;
    top: -2px;
}

/* CTA Wrapper for centering the final button */
.article-cta-wrapper {
    text-align: center;
    padding-top: 20px;
}

/* --- Article Navigation (New Styles) --- */
.article-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* Match the padding of the article content */
    padding: 30px 60px; 
    margin-top: 0; /* Attach directly to article content */
    /* Use the same background/border as article content */
    background-color: var(--color-white);
    border-top: 1px solid rgba(0, 0, 0, 0.1); 
    border-radius: 0 0 8px 8px; /* Round only the bottom corners */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05); /* Match article shadow */
}

.article-nav-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-black);
}

.article-nav-links {
    display: flex;
    gap: 15px;
}

.article-nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid var(--muted-foreground);
    background-color: transparent;
    color: var(--color-black);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.article-nav-link:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--color-black);
}

.article-nav-link.active {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--color-black);
}


/* Responsive adjustments */
@media (max-width: 768px) {
    .article-content {
        padding: 20px;
    }
    .article-headline {
        font-size: 2rem;
    }
    .article-subheadline {
        font-size: 1.6rem;
    }
    .article-body p, .article-points-list li {
        font-size: 1rem;
    }
    .article-nav {
        flex-direction: column;
        padding: 20px;
    }
    .article-nav-title {
        margin-bottom: 20px;
    }
}

