:root {
    --primary-color: #0D47A1; /* Dark Blue - approximating from reference */
    --primary-color-dark: #0B3C5D; /* Darker Blue */
    --secondary-color: #26A69A; /* Teal/Green - approximating from reference */
    --accent-color: #EC4899; /* Pink-500 */

    --text-color-primary: #1F2937; /* Gray-800 */
    --text-color-secondary: #4B5563; /* Gray-600 */
    --text-color-light: #F9FAFB; /* Gray-50 */
    --text-color-nav: #6B7280; /* Gray-500 */

    --bg-color-light: #F9FAFB; /* Gray-50 */
    --bg-color-white: #FFFFFF;
    --bg-color-dark: #111827; /* Gray-900 */
    --bg-color-footer: #0F172A; /* Slate-900 */

    --border-color: #E5E7EB; /* Gray-200 */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;

    --shadow-sm: 0 1px 2px 0 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);

    --font-family-sans: 'Inter', sans-serif;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;

    --container-width: 1200px;
    --spacing-unit: 8px; /* 0.5rem if base font-size is 16px */
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family-sans);
    line-height: 1.7;
    color: var(--text-color-primary);
    background-color: var(--bg-color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 calc(var(--spacing-unit) * 2.5); /* 20px */
}

/* Header */
.header {
    background: var(--bg-color-white);
    box-shadow: var(--shadow-md);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: calc(var(--spacing-unit) * 1.5) 0; /* 12px */
}

.logo h2 {
    color: var(--primary-color);
    font-weight: var(--font-weight-bold);
    font-size: calc(var(--spacing-unit) * 3); /* 24px */
}

@media (max-width: 768px) {
    .logo h2 {
        font-size: calc(var(--spacing-unit) * 2); /* 16px */
    }
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: calc(var(--spacing-unit) * 3); /* 24px */
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color-nav);
    font-weight: var(--font-weight-medium);
    transition: color 0.2s ease-in-out;
    font-size: calc(var(--spacing-unit) * 1.875); /* 15px */
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-cta {
    background: var(--primary-color);
    color: var(--bg-color-white) !important;
    padding: calc(var(--spacing-unit) * 1) calc(var(--spacing-unit) * 2.5); /* 8px 20px */
    border-radius: var(--border-radius-md);
    transition: background-color 0.2s ease-in-out, transform 0.2s ease-in-out;
    font-weight: var(--font-weight-semibold);
}

.nav-cta:hover {
    background: var(--primary-color-dark) !important;
    transform: translateY(-2px);
}

.nav-action-secondary {
    background: var(--bg-color-white);
    color: var(--primary-color) !important;
    padding: calc(var(--spacing-unit) * 1) calc(var(--spacing-unit) * 2.5); /* 8px 20px */
    border-radius: var(--border-radius-md);
    transition: background-color 0.2s ease-in-out, transform 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
    font-weight: var(--font-weight-semibold);
    border: 1px solid var(--primary-color);
}

.nav-action-secondary:hover {
    background: var(--bg-color-light) !important;
    color: var(--primary-color-dark) !important;
    border-color: var(--primary-color-dark);
    transform: translateY(-2px);
}

/* Hero Section */
.hero-background-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    clip-path: polygon(0 0, 100% 0, 100% 80%, 0 100%); /* Creates the diagonal cut */
    z-index: -1; /* Place it behind the content */
}
.hero {
    position: relative; /* To position the ::before pseudo-element or child shape */
    color: var(--text-color-light);
    padding: calc(var(--spacing-unit) * 15) 0 calc(var(--spacing-unit) * 10); /* 120px 80px */
    text-align: center;
    margin-top: calc(var(--spacing-unit) * 8); /* Adjust based on actual header height */
    overflow: hidden; /* To contain the shape if it extends beyond bounds */
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 3.8rem); /* Responsive font size */
    font-weight: var(--font-weight-semibold); /* Changed from bold to semibold */
    margin-bottom: calc(var(--spacing-unit) * 2.5); /* 20px */
    line-height: 1.2;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.1); /* Subtle text shadow */
}
.hero-title-highlight {
    color: var(--secondary-color); /* Emerald-500 */
    font-weight: var(--font-weight-bold); /* Or even bolder if available/needed */
}
.hero-headline-first-line {
    color: var(--secondary-color);
    font-style: italic;
    /* You can add other styles here, like a different font-weight if desired */
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem); /* Responsive font size */
    margin-bottom: calc(var(--spacing-unit) * 3.75); /* 30px */
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: var(--font-weight-light);
}

.hero-buttons {
    display: flex;
    gap: calc(var(--spacing-unit) * 2); /* 16px */
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    padding: calc(var(--spacing-unit) * 1.5) calc(var(--spacing-unit) * 3); /* 12px 24px */
    border: 1px solid transparent;
    border-radius: var(--border-radius-md);
    font-weight: var(--font-weight-semibold);
    font-size: calc(var(--spacing-unit) * 1.875); /* 15px */
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    text-decoration: none;
    display: inline-block;
    line-height: 1.5;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--text-color-light);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--primary-color-dark);
    border-color: var(--primary-color-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--bg-color-white);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--bg-color-light);
    color: var(--primary-color-dark);
    border-color: var(--primary-color-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* Sections */
section {
    padding: calc(var(--spacing-unit) * 10) 0; /* 80px */
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.8rem); /* Responsive font size */
    font-weight: var(--font-weight-bold);
    margin-bottom: calc(var(--spacing-unit) * 5); /* 40px */
    color: var(--text-color-primary);
}

/* Services Section */
.services {
    background: var(--bg-color-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: calc(var(--spacing-unit) * 3); /* 24px */
}

.service-card {
    background: var(--bg-color-white);
    padding: calc(var(--spacing-unit) * 3); /* 24px */
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    font-size: calc(var(--spacing-unit) * 4); /* 32px */
    margin-bottom: calc(var(--spacing-unit) * 1.5); /* 12px */
    color: var(--primary-color);
    line-height: 1; /* Ensure icon aligns well */
}

.service-card h3 {
    font-size: calc(var(--spacing-unit) * 2.5); /* 20px */
    font-weight: var(--font-weight-semibold);
    margin-bottom: calc(var(--spacing-unit) * 0.75); /* 6px */
    color: var(--text-color-primary);
}

.service-subtitle {
    color: var(--text-color-secondary);
    margin-bottom: calc(var(--spacing-unit) * 2); /* 16px */
    font-style: normal;
    font-size: calc(var(--spacing-unit) * 1.75); /* 14px */
    flex-grow: 1; /* Pushes pricing to bottom if card heights vary */
}

.service-card ul {
    list-style: none;
    margin-bottom: calc(var(--spacing-unit) * 2); /* 16px */
    padding-left: 0;
}

.service-card li {
    padding: calc(var(--spacing-unit) * 0.5) 0; /* 4px */
    position: relative;
    padding-left: calc(var(--spacing-unit) * 2.5); /* 20px */
    font-size: calc(var(--spacing-unit) * 1.75); /* 14px */
    color: var(--text-color-secondary);
}

.service-card li:before {
    content: "•";
    color: var(--primary-color);
    font-weight: var(--font-weight-bold);
    position: absolute;
    left: calc(var(--spacing-unit) * 0.5); /* 4px */
    top: calc(var(--spacing-unit) * 0.5); /* 4px for better alignment */
}

.service-pricing {
    font-weight: var(--font-weight-semibold);
    color: var(--primary-color);
    font-size: calc(var(--spacing-unit) * 1.75); /* 14px */
    margin-top: auto; /* Pushes to bottom */
}

/* Coming Soon Section */
.coming-soon {
    background: var(--bg-color-white);
}

.coming-soon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: calc(var(--spacing-unit) * 3); /* 24px */
    margin-bottom: calc(var(--spacing-unit) * 3); /* 24px */
}

.coming-soon-card {
    background: var(--bg-color-light);
    padding: calc(var(--spacing-unit) * 2.5); /* 20px */
    border-radius: var(--border-radius-md);
    border-left: 4px solid var(--text-color-nav); /* Using nav color for subtle border */
    transition: transform 0.2s ease-in-out, border-left-color 0.2s ease-in-out;
}

.coming-soon-card:hover {
    transform: translateY(-3px);
    border-left-color: var(--primary-color);
}

.coming-soon-card .service-icon { /* Re-use service-icon style */
    font-size: calc(var(--spacing-unit) * 3); /* 24px */
    margin-bottom: calc(var(--spacing-unit) * 1.25); /* 10px */
    color: var(--primary-color);
}

.coming-soon-card h3 {
    font-size: calc(var(--spacing-unit) * 2.25); /* 18px */
    font-weight: var(--font-weight-semibold);
    margin-bottom: calc(var(--spacing-unit) * 0.75); /* 6px */
    color: var(--text-color-primary);
}

.coming-soon-card p { /* This is the subtitle in the HTML */
    color: var(--text-color-secondary);
    margin-bottom: calc(var(--spacing-unit) * 1.5); /* 12px */
    font-size: calc(var(--spacing-unit) * 1.75); /* 14px */
}

.coming-soon-card ul {
    list-style: none;
    padding-left: 0;
}

.coming-soon-card li {
    padding: calc(var(--spacing-unit) * 0.375) 0; /* 3px */
    position: relative;
    padding-left: calc(var(--spacing-unit) * 2.5); /* 20px */
    font-size: calc(var(--spacing-unit) * 1.75); /* 14px */
    color: var(--text-color-secondary);
}

.coming-soon-card li:before {
    content: "→";
    color: var(--primary-color);
    position: absolute;
    left: calc(var(--spacing-unit) * 0.5); /* 4px */
    font-weight: var(--font-weight-semibold);
}

.early-access-note {
    background: var(--primary-color-dark); /* Darker blue for contrast */
    color: var(--text-color-light);
    padding: calc(var(--spacing-unit) * 2.5); /* 20px */
    border-radius: var(--border-radius-md);
    text-align: center;
    margin-top: calc(var(--spacing-unit) * 2); /* 16px */
}

.early-access-note p {
    color: var(--text-color-light);
    margin: 0;
    font-size: calc(var(--spacing-unit) * 1.875); /* 15px */
}
.early-access-note p strong {
    font-weight: var(--font-weight-semibold);
}


/* Why Choose Section */
.why-choose {
    background: var(--bg-color-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: calc(var(--spacing-unit) * 3); /* 24px */
}

.benefit {
    text-align: center;
    padding: calc(var(--spacing-unit) * 2.5); /* 20px */
    background-color: var(--bg-color-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
.benefit:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    font-size: calc(var(--spacing-unit) * 3.5); /* 28px */
    margin-bottom: calc(var(--spacing-unit) * 1.5); /* 12px */
    color: var(--primary-color);
}

.benefit h3 {
    font-size: calc(var(--spacing-unit) * 2.25); /* 18px */
    font-weight: var(--font-weight-semibold);
    margin-bottom: calc(var(--spacing-unit) * 0.75); /* 6px */
    color: var(--text-color-primary);
}

.benefit p {
    color: var(--text-color-secondary);
    font-size: calc(var(--spacing-unit) * 1.875); /* 15px */
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: var(--bg-color-dark);
    color: var(--text-color-light);
}

.cta-section .section-title {
    color: var(--text-color-light);
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: calc(var(--spacing-unit) * 3); /* 24px */
}

.cta-card {
    background: var(--bg-color-white);
    color: var(--text-color-primary);
    padding: calc(var(--spacing-unit) * 3.5); /* 28px */
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
}

.cta-card h3 {
    font-size: calc(var(--spacing-unit) * 2.75); /* 22px */
    font-weight: var(--font-weight-semibold);
    margin-bottom: calc(var(--spacing-unit) * 2); /* 16px */
    color: var(--text-color-primary);
}

.cta-card ul {
    list-style: none;
    margin-bottom: calc(var(--spacing-unit) * 3); /* 24px */
    text-align: left;
    padding-left: 0;
    flex-grow: 1;
}

.cta-card li {
    padding: calc(var(--spacing-unit) * 0.75) 0; /* 6px */
    position: relative;
    padding-left: calc(var(--spacing-unit) * 3); /* 24px */
    font-size: calc(var(--spacing-unit) * 1.875); /* 15px */
    color: var(--text-color-secondary);
}

.cta-card li:before {
    content: "✓";
    color: var(--secondary-color); /* Using secondary color for checkmarks */
    font-weight: var(--font-weight-bold);
    position: absolute;
    left: calc(var(--spacing-unit) * 0.5); /* 4px */
    font-size: calc(var(--spacing-unit) * 2); /* 16px */
}

.cta-card .btn { /* Ensure buttons in CTA cards are full width or appropriately sized */
    width: 100%;
    margin-top: auto; /* Pushes button to bottom */
}


/* Footer */
.footer {
    background: var(--bg-color-footer);
    color: var(--text-color-nav); /* Lighter text for footer */
    padding: calc(var(--spacing-unit) * 6) 0 calc(var(--spacing-unit) * 4); /* 48px 32px */
    border-top: 1px solid var(--text-color-secondary); /* Subtle top border */
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Align items to the start for better structure */
    flex-wrap: wrap;
    gap: calc(var(--spacing-unit) * 4); /* 32px */
}

.footer-left {
    flex-basis: 50%; /* Give more space to the left content */
    min-width: 280px; /* Ensure it doesn't get too squeezed */
}

.footer-left h3 {
    color: var(--primary-color);
    margin-bottom: calc(var(--spacing-unit) * 1); /* 8px */
    font-size: calc(var(--spacing-unit) * 2.5); /* 20px */
    font-weight: var(--font-weight-semibold);
}

.footer-left p {
    color: var(--text-color-nav);
    font-size: calc(var(--spacing-unit) * 1.75); /* 14px */
    line-height: 1.7;
}

.footer-right {
    display: flex;
    flex-direction: column; /* Stack links vertically on smaller screens if needed, or keep as row */
    gap: calc(var(--spacing-unit) * 1.5); /* 12px */
    align-items: flex-start; /* Align links to the start */
}

.footer-right a {
    color: var(--text-color-nav);
    text-decoration: none;
    font-size: calc(var(--spacing-unit) * 1.75); /* 14px */
    transition: color 0.2s ease-in-out;
    font-weight: var(--font-weight-medium);
}

.footer-right a:hover {
    color: var(--primary-color);
}

/* Mobile Responsiveness */
@media (max-width: 992px) { /* Adjusted breakpoint for tablets and larger phones */
    .services-grid,
    .coming-soon-grid,
    .benefits-grid,
    .cta-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Allow more flexible card sizing */
    }

    .hero-content h1 {
        font-size: clamp(2.2rem, 4.5vw, 3rem);
    }

    .hero-subtitle {
        font-size: clamp(0.9rem, 2vw, 1.1rem);
    }

    .section-title {
        font-size: clamp(1.8rem, 3.5vw, 2.5rem);
        margin-bottom: calc(var(--spacing-unit) * 4); /* 32px */
    }
}

@media (max-width: 768px) { /* Standard tablet breakpoint */
    .nav {
        flex-direction: row; /* Keep horizontal */
        justify-content: space-between; /* Distribute logo and menu */
        align-items: center;
        padding: calc(var(--spacing-unit) * 1.5) 0; /* 12px, consistent with desktop */
        gap: calc(var(--spacing-unit) * 1); /* 8px, smaller gap for mobile */
    }

    .nav-menu {
        flex-direction: row; /* Horizontal nav items */
        gap: calc(var(--spacing-unit) * 1); /* 8px, smaller gap between items */
        width: auto; /* Allow menu to size based on content */
        align-items: center;
    }

    .nav-menu a, .nav-cta {
        padding: calc(var(--spacing-unit) * 0.75) calc(var(--spacing-unit) * 1.25); /* 6px 10px, smaller padding */
        font-size: calc(var(--spacing-unit) * 1.75); /* 14px, slightly smaller font */
        width: auto; /* Remove fixed width */
        text-align: left; /* Remove center alignment */
    }

    .hero {
        padding: calc(var(--spacing-unit) * 12) 0 calc(var(--spacing-unit) * 8); /* 96px 64px */
        /* Adjusted margin-top to account for a potentially shorter, fixed header */
        /* The actual header height might be around 50-60px now on mobile. */
        /* (logo height + padding). Let's use a value like 8 * 7 = 56px + some buffer */
        margin-top: calc(var(--spacing-unit) * 9); /* Approx 72px, adjust if needed */
    }

    .hero-content h1 {
        font-size: clamp(2rem, 6vw, 2.8rem);
    }

    .hero-subtitle {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
        margin-bottom: calc(var(--spacing-unit) * 3); /* 24px */
    }

    .hero-buttons .btn {
        width: 90%; /* Increased width */
        max-width: 350px; /* Increased max-width */
    }

    .services-grid,
    .coming-soon-grid,
    .benefits-grid,
    .cta-grid {
        grid-template-columns: 1fr; /* Single column for smaller screens */
        gap: calc(var(--spacing-unit) * 2.5); /* 20px */
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        align-items: center; /* Center footer content */
        gap: calc(var(--spacing-unit) * 3); /* 24px */
    }

    .footer-left {
        flex-basis: auto; /* Reset flex-basis */
        width: 100%;
    }

    .footer-right {
        align-items: center; /* Center footer links */
        gap: calc(var(--spacing-unit) * 1.25); /* 10px */
    }
}

@media (max-width: 480px) { /* Small mobile devices */
    .container {
        padding: 0 calc(var(--spacing-unit) * 1.875); /* 15px */
    }

    .hero {
        padding: calc(var(--spacing-unit) * 10) 0 calc(var(--spacing-unit) * 7.5); /* 80px 60px */
    }

    .hero-content h1 {
        font-size: clamp(1.8rem, 7vw, 2.2rem);
    }

    .hero-subtitle {
        font-size: clamp(0.85rem, 3.5vw, 1rem);
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: calc(var(--spacing-unit) * 1.5); /* 12px */
    }

    .hero-buttons .btn {
        width: 100%; /* Keep full width */
        max-width: 320px; /* Slightly increase max-width for this specific button */
    }

    .btn { /* General button sizing for small screens */
        width: 100%;
        max-width: 280px; /* Consistent max width */
        padding: calc(var(--spacing-unit) * 1.25) calc(var(--spacing-unit) * 2); /* 10px 16px */
        font-size: calc(var(--spacing-unit) * 1.75); /* 14px */
    }

    section {
        padding: calc(var(--spacing-unit) * 7.5) 0; /* 60px */
    }

    .section-title {
        font-size: clamp(1.6rem, 5vw, 2rem);
        margin-bottom: calc(var(--spacing-unit) * 3.5); /* 28px */
    }

    .service-card,
    .coming-soon-card,
    .benefit,
    .cta-card {
        padding: calc(var(--spacing-unit) * 2.5); /* 20px */
    }

    .service-card h3, .coming-soon-card h3, .benefit h3, .cta-card h3 {
        font-size: calc(var(--spacing-unit) * 2.25); /* 18px */
    }

    .service-subtitle, .coming-soon-card p, .benefit p {
        font-size: calc(var(--spacing-unit) * 1.625); /* 13px */
    }

    .nav-menu a, .nav-cta {
        padding: calc(var(--spacing-unit) * 0.75) calc(var(--spacing-unit) * 1); /* 6px 8px, even smaller padding */
        font-size: calc(var(--spacing-unit) * 1.625); /* 13px, slightly smaller font */
        width: auto; /* Remove fixed width */
    }
}

/* Page Content Specific Styling */
.page-content {
    padding-top: calc(var(--spacing-unit) * 10); /* Adjust as needed, considering fixed header height */
    padding-bottom: calc(var(--spacing-unit) * 10);
    margin-top: calc(var(--spacing-unit) * 8); /* Default margin for hero, can be reused */
}

/* Styling for the imported article content */
.page-content .page-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--text-color-primary);
    margin-bottom: calc(var(--spacing-unit) * 3);
    text-align: left; /* Override general section-title center alignment */
}

.page-content .page-body p,
.page-content .page-body ul,
.page-content .page-body blockquote {
    margin-bottom: calc(var(--spacing-unit) * 2);
    line-height: 1.7;
    font-size: calc(var(--spacing-unit) * 1.875); /* 15px */
    color: var(--text-color-secondary);
}

.page-content .page-body strong {
    font-weight: var(--font-weight-semibold);
    color: var(--text-color-primary);
}

.page-content .page-body a {
    color: var(--primary-color);
    text-decoration: underline;
}

.page-content .page-body a:hover {
    color: var(--primary-color-dark);
}

.page-content .page-body ul {
    padding-left: calc(var(--spacing-unit) * 3);
}

.page-content .page-body blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: calc(var(--spacing-unit) * 2);
    margin-left: 0;
    font-style: italic;
    color: var(--text-color-secondary);
}

.page-content .page-body code { /* Style for inline code */
    background-color: var(--bg-color-light);
    padding: calc(var(--spacing-unit) * 0.25) calc(var(--spacing-unit) * 0.75);
    border-radius: var(--border-radius-sm);
    font-family: var(--font-family-code); /* Assuming you'll add a --font-family-code variable */
    font-size: 90%;
    color: var(--accent-color); /* Or another distinct color */
}

.page-content .page-body hr {
    border: none;
    border-top: 1px solid var(--border-color);
    margin: calc(var(--spacing-unit) * 3) 0;
}

/* Ensure the imported styles from the article don't override too much */
.page-content .page.sans {
    font-family: var(--font-family-sans) !important; /* Force override if needed */
}
