.toc {
    background: #f8f9fa;
    padding: 1.5rem;
}
/* Styles moved from inv-analysis-methods.html */
.toc {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}
.toc ol {
    line-height: 1.8;
}
.toc a {
    text-decoration: none;
    color: #007bff;
}
.toc a:hover {
    text-decoration: underline;
}
.toc ul {
    list-style-type: circle;
    margin-left: 1.5rem;
}
.data-table {
    width: 100%;
    margin: 1rem 0;
    border-collapse: collapse;
}
.data-table th,
.data-table td {
    border: 1px solid #ddd;
    padding: 0.75rem;
}
.data-table th {
    background: #f8f9fa;
    font-weight: 600;
}
.case-study-chart {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    text-align: center;
}
.highlight-box {
    background: #f9f9f9;
    padding: 1.5rem;
    margin: 1rem 0;
    border-radius: 4px;
}
.benefit-box {
    padding: 1.5rem;
    margin: 1rem 0;
    border-radius: 4px;
}
.formula-box {
    display: block;
    background: #eaf4ff;
    color: #222;
    font-family: 'Fira Mono', 'Consolas', monospace;
    padding: 0.75em 1em;
    border-radius: 4px;
    margin: 0.5em 0;
    font-size: 1.05em;
}
/* Procurement Savings Calculator Specific Styles (FR) */
.ad-space { margin: 2rem 0; min-height: 90px; background: #f8f9fa; border: 1px dashed #bbb; display: flex; align-items: center; justify-content: center; color: #888; font-size: 1.1rem; }
.faq-section { margin-top: 2.5rem; }
.faq-item { margin-bottom: 1.5rem; }
.copy-btn { margin-left: 0.5rem; }
.chart-container { margin-top: 2rem; }
.gauge-bar { width: 100%; height: 24px; background: #e9ecef; border-radius: 12px; overflow: hidden; margin: 1rem 0; }
.gauge-fill { height: 100%; background: #28a745; transition: width 0.5s; }
.inputs {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
}
.input-group {
    flex: 0 0 calc(50% - 1rem);
    min-width: 200px;
}
.input-group.full-width {
    flex: 0 0 100%;
}
.input-group label {
    margin-bottom: 0.5rem;
    font-weight: bold;
}
.input-group input {
    padding: 0.5rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}
#neg-slider {
    width: 90%;
    margin-right: 1rem;
}
#neg-slider-value {
    font-weight: bold;
}
/* Procurement Savings Calculator Specific Styles */
.ad-space { margin: 2rem 0; min-height: 90px; background: #f8f9fa; border: 1px dashed #bbb; display: flex; align-items: center; justify-content: center; color: #888; font-size: 1.1rem; }
.faq-section { margin-top: 2.5rem; }
.faq-item { margin-bottom: 1.5rem; }
.copy-btn { margin-left: 0.5rem; }
.chart-container { margin-top: 2rem; }
.gauge-bar { width: 100%; height: 24px; background: #e9ecef; border-radius: 12px; overflow: hidden; margin: 1rem 0; }
.gauge-fill { height: 100%; background: #28a745; transition: width 0.5s; }
.inputs {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
}
.input-group {
    flex: 0 0 calc(50% - 1rem);
    min-width: 200px;
}
.input-group.full-width {
    flex: 0 0 100%;
}
.input-group label {
    margin-bottom: 0.5rem;
    font-weight: bold;
}
.input-group input {
    padding: 0.5rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}
#neg-slider {
    width: 90%;
    margin-right: 1rem;
}
#neg-slider-value {
    font-weight: bold;
}
/* Calculators Page Header Description Alignment */
header > p {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
/* Hero Section Description Alignment */
.hero p {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    color: #fff;
    text-align: center;
}
/* =============================
   Global Variables
   ============================= */
:root {
    --color-primary: #003366; /* Deep blue */
    --color-secondary: #4CAF50; /* Muted green */
    --color-background: #f9f9f9; /* Off-white */
    --color-text: #333333; /* Dark gray for text */
    --color-muted: #666666; /* Muted gray for secondary text */
    --color-border: #dddddd; /* Light gray for borders */
    --color-success: #4CAF50; /* Green for success messages */

    --font-family: 'Inter', 'Roboto', 'Source Sans 3', sans-serif;
    --font-size-base: 16px;
    --line-height: 1.6;

    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;

    --border-radius: 6px;
    --box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* =============================
   Global Styles
   ============================= */
body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: var(--line-height);
    margin: 0;
    background-color: var(--color-background);
    color: var(--color-text);
}

h1, h2, h3, h4, h5, h6 {
    margin: var(--spacing-sm) 0;
    font-weight: 600;
    color: var(--color-primary);
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.75rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin: var(--spacing-xs) 0;
    color: var(--color-muted);
}

/* =============================
   Layout
   ============================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-sm);
}

.section {
    padding: var(--spacing-md) var(--spacing-sm);
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: var(--spacing-md);
}

.title-section {
    background: #fff;
    padding: 1.5rem 1rem 1rem 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.title-section > * {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* =============================
   Buttons
   ============================= */
/* Removed default blue button styles as requested */

/* =============================
   Cards
   ============================= */
.card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: var(--spacing-sm);
    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-5px);
}

.card h3 {
    font-size: 1.25rem;
    color: var(--color-primary);
    margin-bottom: var(--spacing-xs);
}

.card p {
    font-size: 1rem;
    color: var(--color-muted);
}

/* =============================
   Forms and Inputs
   ============================= */
input, select, textarea {
    width: 100%;
    padding: var(--spacing-xs);
    font-size: 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    margin-bottom: var(--spacing-sm);
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px rgba(0, 51, 102, 0.2);
}

/* =============================
   Tables
   ============================= */
table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--spacing-sm) 0;
    font-size: 1rem;
}

thead th {
    background: #f5f5f5;
    color: #222;
    text-align: left;
    padding: var(--spacing-xs);
    font-weight: 600;
}

tbody td {
    padding: var(--spacing-xs);
    border: 1px solid var(--color-border);
}

/* =============================
   Alerts / Highlights
   ============================= */
.alert {
    padding: var(--spacing-sm);
    border-radius: var(--border-radius);
    margin-bottom: var(--spacing-sm);
    font-size: 1rem;
}

.alert.success {
    background-color: #e8f5e9;
    color: var(--color-success);
    border: 1px solid #4CAF50;
}

/* =============================
   Footer
   ============================= */
.footer {
    background: var(--color-background);
    padding: var(--spacing-sm);
    text-align: center;
    font-size: 0.9rem;
    color: var(--color-muted);
}

.footer a {
    color: var(--color-primary);
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* Additional styles for homepage */
.hero {
    background: linear-gradient(90deg, #3a7bd5 0%, #00d2ff 100%);
    color: #fff;
    text-align: center;
    padding: 60px 20px;
}
.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}
.hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.cta-buttons a {
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    background: #007bff;
    transition: background 0.3s;
}
.cta-buttons a:hover {
    background: #0056b3;
}
.section {
    padding: 40px 20px;
    text-align: center;
}
.section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}
.section p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #555;
}
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.grid-item {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}
.grid-item:hover {
    transform: translateY(-5px);
}
.grid-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #007bff;
}
.grid-item p {
    font-size: 0.9rem;
    color: #666;
}

/* Improved Dropdown Menu Styles */
.main-nav li {
    position: relative;
}

.main-nav li ul {
    list-style: none;
    position: absolute;
    background: var(--color-background);
    border: 1px solid var(--color-border);
    padding: 10px;
    display: none;
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
    z-index: 1000;
}

.main-nav li ul li {
    padding: 5px 10px;
    transition: background-color 0.3s;
}

.main-nav li ul li:hover {
    background-color: var(--color-muted);
}

.main-nav li a {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    padding: 10px 15px;
    display: block;
    transition: color 0.3s;
}

.main-nav li a:hover {
    color: var(--color-primary);
}

.main-nav li:hover ul {
    display: block;
}

/* =============================
   Inventory Calculator Suite Styles
   ============================= */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    background: #f4f6fa;
    color: #222;
}
header {
    background: #fff;
    padding: 1.5rem 1rem 1rem 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    text-align: center;
}
.ad-space {
    background: #e9ecef;
    min-height: 80px;
    margin: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 1.1rem;
}
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 1rem;
}
.calculator-section {
    background: #fff;
    border: 1px solid #ddd;
    padding: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.inputs {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: space-between;
}
.input-group {
    display: flex;
    flex-direction: column;
    flex: 0 0 calc(50% - 1rem); /* Two input fields per row */
    min-width: 200px;
}
.input-group label {
    margin-bottom: 0.5rem;
    font-weight: bold;
}
.input-group input {
    padding: 0.5rem;
    font-size: 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
}
input[type="number"], input[type="text"] {
    padding: 0.5rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}
input[type="range"] {
    width: 100%;
}
.actions {
    margin-bottom: 1rem;
}
button {
    padding: 0.5rem 1.2rem;
    font-size: 1rem;
    border: none;
    border-radius: 4px;
    background: #007bff;
    color: #fff;
    cursor: pointer;
    margin-right: 0.5rem;
}
button:active {
    background: #0056b3;
}
.copy-btn {
    background: #6c757d;
    color: #fff;
    margin-left: 0.5rem;
}
.result {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #007bff;
}
.formula, .explanation {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}
.seo-content {
    margin-top: 2rem;
}
.faq {
    margin-top: 2rem;
    padding: 1rem;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.faq h3 {
    font-size: 1.2rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-weight: bold;
}

.faq-item {
    margin-bottom: 1rem;
    padding: 0;
    border: none;
}

.accordion {
    background: #f9f9f9;
    color: var(--color-text);
    cursor: pointer;
    padding: 0.75rem 1rem;
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius);
    text-align: left;
    outline: none;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s, color 0.3s;
    width: 100%;
}

.accordion:hover {
    background-color: #f1f5f9;
    color: var(--color-primary);
}

.accordion[aria-expanded="true"] {
    background-color: var(--color-primary);
    color: #ffffff;
    border-color: var(--color-primary);
}

.accordion:after {
    content: '+';
    font-weight: bold;
    font-size: 1.2rem;
    color: var(--color-muted);
    margin-left: auto;
}

.accordion[aria-expanded="true"]:after {
    content: '-';
    color: #ffffff;
}

.panel {
    padding: 0 1rem;
    background: #ffffff;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    border-left: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
    margin-top: 0.5rem;
}

.panel p {
    margin: 0.5rem 0;
    color: var(--color-text);
    line-height: 1.6;
    font-size: 1rem;
}

/* =============================
   Tabs Styles for Lead Time Calculator
   ============================= */
.tabs {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--color-border);
}

.tab {
    flex: 1;
    text-align: center;
    padding: 0.75rem 1rem;
    cursor: pointer;
    font-weight: bold;
    color: var(--color-text);
    border: 1px solid var(--color-border);
    border-bottom: none;
    background: var(--color-background);
    transition: background-color 0.3s, color 0.3s;
}

.tab:hover {
    background-color: var(--color-muted);
    color: #fff;
}

.tab.active {
    background-color: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

/* =============================
   Link Styles
   ============================= */
.calculator-category ul li a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: bold;
    padding: 0.5rem 1rem;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    transition: background-color 0.3s, color 0.3s;
}

.calculator-category ul li a:hover {
    background-color: var(--color-primary);
    color: #fff;
}

/* =============================
   Calculator Category Styles
   ============================= */
.calculator-category {
    background-color: #ffffff; /* White background */
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-md);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

/* Card-style links for calculator list */
.calc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.calc-card {
    display: block;
    padding: 1rem;
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    color: var(--color-text);
    text-decoration: none;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.calc-card h3 {
    margin: 0 0 0.5rem 0;
    color: var(--color-primary);
    font-size: 1.05rem;
}

.calc-card p {
    margin: 0;
    color: var(--color-muted);
    font-size: 0.95rem;
}

.calc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    border-color: rgba(0,51,102,0.12);
}

.calculator-category ul { list-style: none; margin: 0; padding: 0; }
.calculator-category li { margin: 0; }

/* KPI cards/grid for calculators pages */
.kpi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
}
.kpi-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius);
    padding: 1rem;
    text-align: center;
    box-shadow: var(--box-shadow);
}
.kpi-card .value {
    font-size: 1.35rem;
    color: var(--color-primary);
    font-weight: 700;
}
.kpi-card .label {
    font-size: 0.9rem;
    color: var(--color-muted);
}

/* KPI List Section Styles */
.kpi-list-section {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    padding: 2rem 1.5rem;
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.kpi-list-section h2 {
    color: var(--color-primary);
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    text-align: center;
}
.kpi-groups h3 {
    color: #4CAF50;
    margin-top: 2rem;
    margin-bottom: 0.7rem;
    font-size: 1.15rem;
    letter-spacing: 0.05em;
}
.kpi-groups ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}
.kpi-groups li {
    background: #f5f8fa;
    border-radius: 6px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
    margin-bottom: 0.7em;
    padding: 1.1em 1em 1.1em 1.2em;
    font-size: 1.05em;
    position: relative;
    border-left: 4px solid #4CAF50;
}
.kpi-groups li strong {
    color: var(--color-primary);
    font-weight: 600;
}
.kpi-groups li em {
    display: block;
    font-style: normal;
    color: #003366;
    font-weight: 500;
    margin-top: 0.5em;
    margin-bottom: 0.2em;
    font-size: 1.02em;
}
.kpi-groups li span {
    display: block;
    background: #eaf4ff;
    color: #222;
    font-family: 'Fira Mono', 'Consolas', monospace;
    font-size: 1.01em;
    padding: 0.45em 0.7em;
    border-radius: 4px;
    margin-bottom: 0.2em;
    margin-top: 0.1em;
    word-break: break-word;
    box-shadow: 0 1px 2px rgba(0,0,0,0.03);
}
@media (max-width: 600px) {
    .kpi-list-section {
        padding: 1.2rem 0.5rem;
    }
    .kpi-groups li {
        font-size: 0.98em;
        padding: 0.8em 0.5em 0.8em 0.7em;
    }
    .kpi-groups h3 {
        font-size: 1.05rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .top-nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        text-align: center;
        padding: 0;
    }

    .main-nav ul li {
        width: 100%;
        text-align: center;
    }

    .main-nav ul li a {
        display: block;
        text-align: center;
        width: 100%;
    }

    .hero h1 {
        font-size: 1.5rem;
        text-align: center;
    }

    .hero p {
        font-size: 1rem;
        text-align: center;
    }

    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .audience-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
        max-width: 100%;
        margin: 0 auto;
    }

    .grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        align-items: center;
    }

    .grid-item {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .cta-buttons a {
        width: 100%;
        text-align: center;
    }

    .section {
        padding: 20px;
    }

    .footer {
        text-align: center;
        font-size: 0.9rem;
    }
}

/* Styles moved from learning.html (Related Topics cards, navigation arrows, and article H3 tweaks) */
.navigation-arrows {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: #A3C586;
    color: white;
    text-decoration: none;
    font-size: 1.5em;
    font-weight: bold;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s, transform 0.2s;
}

.arrow:hover {
    background-color: #8AAE6E;
    transform: scale(1.1);
}

.related-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 1.5rem;
}
@media (max-width: 900px) {
    .related-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .related-cards-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .related-card {
        min-width: 0;
        width: 100%;
        box-sizing: border-box;
    }
}

.related-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border: 1px solid #e0e4ea;
    padding: 1.4rem 1.2rem 1.2rem 1.2rem;
    text-align: left;
    color: #003366;
    text-decoration: none;
    font-weight: 500;
    transition: box-shadow 0.18s, border 0.18s, background 0.18s;
    min-height: 110px;
}

.related-card h3 {
    margin: 0 0 0.5em 0;
    font-size: 1.18em;
    color: #003366;
    font-weight: 700;
    letter-spacing: 0.01em;
}
/* Make H3 titles smaller for article content */
article h3 {
    font-size: 1.15em;
    font-weight: 600;
    color: #003366;
    margin-top: 1.2em;
    margin-bottom: 0.6em;
}

.related-card p {
    margin: 0;
    font-size: 1.05em;
    color: #555;
    font-weight: 400;
    line-height: 1.5;
}

.related-card:hover {
    background: #f5f8fa;
    border: 1.5px solid #b3c6e0;
    box-shadow: 0 4px 16px rgba(0,0,0,0.10);
    color: #003366;
}
/* Styled links for Articles & Topics */
.styled-links {
  list-style-type: none;
  padding: 0;
}

.styled-links li {
  margin: 8px 0;
  border-bottom: 1px solid #ddd;
  padding-bottom: 5px;
}

.styled-links a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
  font-size: 1.1em;
  transition: color 0.3s, text-shadow 0.3s;
}

.styled-links a:hover {
  color: #007BFF;
  text-shadow: 0px 0px 5px rgba(0, 123, 255, 0.5);
  text-decoration: underline;
}

.styled-links .desc {
  display: block;
  color: #666;
  font-size: 0.97em;
  font-weight: 400;
  margin-top: 2px;
}

/* Navigation arrows for quick navigation */
.navigation-arrows {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background-color: #A3C586;
  color: white;
  text-decoration: none;
  font-size: 1.5em;
  font-weight: bold;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s, transform 0.2s;
}

.arrow:hover {
  background-color: #8AAE6E;
  transform: scale(1.1);
}

.back-to-top {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.9em;
  color: #007BFF;
  text-decoration: none;
  font-weight: bold;
}

.back-to-top:hover {
  text-decoration: underline;
  color: #0056b3;
}

/* Responsive Header Styles */
.top-nav {
    background-color: var(--color-background);
    border-bottom: 1px solid var(--color-border);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 100;
}
.logo img {
    height: 60px;
    vertical-align: middle;
}
.main-nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 28px;
    margin: 0;
    padding: 0;
    background: none;
    box-shadow: none;
}
.main-nav li {
    position: relative;
    transition: transform 0.18s, box-shadow 0.18s;
}
.main-nav a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.08rem;
    padding: 10px 18px;
    border-radius: 6px;
    transition: background 0.18s, color 0.18s, box-shadow 0.18s;
    display: block;
    letter-spacing: 0.01em;
}
.main-nav a:hover, .main-nav a:focus {
    background: linear-gradient(90deg, #e3f0ff 0%, #f0f7ff 100%);
    color: #0056b3;
    box-shadow: 0 2px 8px rgba(0,123,255,0.08);
    outline: none;
}
.main-nav li.active a, .main-nav a.active {
    background: #003366;
    color: #fff;
    box-shadow: 0 2px 8px rgba(0,51,102,0.13);
}
@media (max-width: 800px) {
    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        background: #fff;
        box-shadow: 0 2px 8px rgba(0,0,0,0.07);
        border-radius: 0 0 10px 10px;
    }
    .main-nav a {
        padding: 14px 24px;
        font-size: 1.08rem;
        border-radius: 0;
        width: 100%;
    }
    .main-nav a:hover, .main-nav a:focus {
        background: #e3f0ff;
        color: #003366;
        box-shadow: none;
    }
    .main-nav {
        width: 100%;
    }
    .main-nav ul {
        width: 100%;
    }
    .main-nav li {
        width: 100%;
        text-align: left;
    }
    .main-nav li ul {
        position: static;
        width: 100%;
        box-shadow: none;
        border-radius: 0 0 10px 10px;
        padding: 0;
    }
    .main-nav li ul li {
        padding: 10px 24px;
        width: 100%;
    }
    .main-nav li ul li:hover {
        background-color: #f0f7ff;
    }
    .main-nav li a {
        width: 100%;
        box-sizing: border-box;
    }
    .main-nav li.active a, .main-nav a.active {
        background: #003366;
        color: #fff;
    }
    .main-nav li ul {
        display: none;
    }
    .main-nav li.open > ul {
        display: block;
    }
}
@media (max-width: 500px) {
    .logo img {
        height: 40px;
    }
    .main-nav a {
        font-size: 1rem;
    }
    .hamburger {
        top: 6px;
        right: 6px;
    }
    .main-nav a {
        padding: 12px 14px;
    }
    .main-nav li ul li {
        padding: 10px 14px;
    }
}
/* Responsive grid for Top Supply Chain Calculators */
.top-calculators-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 10px;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}
.top-calculator-card {
    text-decoration: none;
    padding: 16px 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #f9f9f9;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s, border-color 0.2s;
}
.top-calculator-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.13);
    border-color: var(--color-primary, #003366);
}
.top-calculator-card h3 {
    color: var(--color-primary, #003366);
    font-size: 1rem;
    margin-bottom: 0.5em;
}
.top-calculator-card p {
    font-size: 0.92rem;
    margin: 0;
}
@media (max-width: 900px) {
    .top-calculators-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .top-calculators-grid {
        grid-template-columns: 1fr;
    }
    .top-calculator-card {
        font-size: 1rem;
        padding: 14px 6px;
    }
    .top-calculator-card h3 {
        font-size: 1.05rem;
    }
    .top-calculator-card p {
        font-size: 0.98rem;
    }
}

/* White container for main content */
.container, .about-section, .kpi-list-section, .calculator-section, .resource-section {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    padding: 2rem 1.5rem;
    margin-bottom: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
@media (max-width: 600px) {
    .container, .about-section, .kpi-list-section, .calculator-section, .resource-section {
        padding: 1.1rem 0.5rem;
    }
}

/* Show hamburger only on mobile */
@media (max-width: 800px) {
    .hamburger {
        display: block !important;
        position: absolute;
        left: 16px;
        top: 12px;
        z-index: 1100;
    }
    .main-nav {
        display: none;
    }
    .main-nav.menu-open {
        display: block;
        width: 100%;
        background: #fff;
        position: absolute;
        left: 0;
        top: 100%;
        z-index: 1001;
        box-shadow: 0 2px 8px rgba(0,0,0,0.07);
        border-radius: 0 0 10px 10px;
    }
    .language-switcher {
        position: absolute;
        right: 16px;
        top: 12px;
        z-index: 1100;
    }
    .top-nav {
        position: relative;
    }
}
@media (min-width: 801px) {
    .hamburger {
        display: none !important;
    }
    .main-nav {
        display: block !important;
        position: static;
        width: auto;
        background: none;
        box-shadow: none;
    }
    .language-switcher {
        position: static;
        right: auto;
        top: auto;
    }
}

/* Links in Calculator Section */
.calculator-section h2 a {
  color: #007BFF;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.calculator-section h2 a:hover {
  color: #0056b3;
  text-decoration: underline;
}

.calculator-section p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

/* Product Grid Styling */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.product-card {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
}

.product-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: var(--color-primary);
}

.product-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 15px;
}

.btn-buy {
  display: inline-block;
  padding: 10px 20px;
  font-size: 1rem;
  color: #fff;
  background-color: #007bff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-buy:hover {
  background-color: #0056b3;
}

/* Inline styles moved from index.html */

.section.audience-benefits {
    text-align: center;
}

.section.audience-benefits h2 {
    margin-bottom: 2rem;
    text-align: center;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    padding: 10px;
    max-width: 1100px;
    margin: 0 auto;
}

.audience-card {
    background: #f5f8fa;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    padding: 2rem 1.5rem;
}

.audience-card h3 {
    color: #003366;
    text-align: center;
}

.audience-card ul {
    padding-left: 0;
    list-style: none;
    text-align: left;
}

.audience-card ul li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.5em;
}

.audience-card ul li span {
    color: #4CAF50;
    font-size: 1.2em;
    margin-right: 0.5em;
}

.grid ul {
    list-style: none;
    padding-left: 0;
}

.grid ul li {
    margin-bottom: 0.5em;
}

.cta-buttons {
    text-align: center;
    margin-top: 30px;
}

.section div {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.cta-buttons {
    margin-top: 20px;
}

/* Internal links section styles */
.internal-links {
  margin: 3rem 0 2rem 0;
  padding: 0 0.5rem;
}
.internal-links h2 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #1a355e;
  text-align: center;
}
.internal-links ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 1000px;
}
.internal-links li {
  background: #fff;
  border: 1px solid #e3e8f0;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(30, 60, 90, 0.04);
  transition: box-shadow 0.2s, border-color 0.2s;
  padding: 1.2rem 1rem 1rem 1rem;
  text-align: left;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.internal-links li:hover {
  border-color: #1a355e;
  box-shadow: 0 4px 16px rgba(30, 60, 90, 0.10);
}
.internal-links a {
  color: #1a355e;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  margin-bottom: 0.5rem;
  display: block;
  transition: color 0.2s;
}
.internal-links a:hover {
  color: #2b6cb0;
  text-decoration: underline;
}
.internal-links li span {
  color: #3a4a5d;
  font-size: 0.98rem;
  font-weight: 400;
  margin-top: 0.2rem;
  display: block;
}

/* --- Inventory Glossary Page Styles --- */
.alphabet-nav {
    background: linear-gradient(135deg, #007bff 0%, #2196f3 100%);
    padding: 1.5em;
    border-radius: 8px;
    margin: 2em 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.alphabet-nav h3 {
    color: white;
    margin: 0 0 1em 0;
    font-size: 1.1em;
}
.alphabet-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}
.alphabet-links a {
    background: white;
    color: #007bff;
    padding: 8px 14px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 36px;
    text-align: center;
}
.alphabet-links a:hover {
    background: #2196f3;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}
.glossary-list h3 {
    background: linear-gradient(135deg, #007bff 0%, #2196f3 100%);
    color: white;
    padding: 12px 20px;
    margin: 2em 0 1em 0;
    border-radius: 6px;
    font-size: 1.8em;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
    scroll-margin-top: 100px;
}
.glossary-term {
    background: #f8f9fa;
    padding: 1.2em;
    margin-bottom: 0.8em;
    border-radius: 6px;
    border-left: 4px solid #007bff;
    transition: all 0.3s ease;
}
.glossary-term:hover {
    background: #e9ecef;
    border-left-color: #2196f3;
    transform: translateX(4px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.glossary-term dt {
    font-weight: 700;
    color: #2d3748;
    font-size: 1.15em;
    margin-bottom: 0.5em;
}
.glossary-term dd {
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
}
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #007bff 0%, #2196f3 100%);
    color: white;
    padding: 12px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    z-index: 1000;
}
.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}
@media (max-width: 768px) {
    .alphabet-links a {
        padding: 6px 10px;
        font-size: 0.9em;
        min-width: 30px;
    }
    .glossary-list h3 {
        font-size: 1.5em;
    }
}
/* --- End Inventory Glossary Styles --- */

/* --- KPIs & Metrics Page Styles --- */
.kpi-navigation {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
  margin: 20px 0;
}
.nav-letters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}
.nav-letters a {
  background: #007bff;
  color: white;
  padding: 8px 12px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}
.nav-letters a:hover {
  background: #0056b3;
}
.kpi-groups h3 {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: white;
  padding: 10px 15px;
  border-radius: 5px;
  margin: 30px 0 20px 0;
  font-size: 1.5em;
}
.kpi-groups li {
  margin-bottom: 15px;
  padding: 15px;
  border-left: 4px solid #007bff;
  background: #f8f9fa;
  border-radius: 0 5px 5px 0;
}
.kpi-groups span {
  background: #e9ecef;
  padding: 5px 8px;
  border-radius: 3px;
  font-family: 'Courier New', monospace;
  font-size: 0.9em;
}
.best-practices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.practice-item {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  border-top: 4px solid #28a745;
}
.practice-item h3 {
  color: #28a745;
  margin-bottom: 10px;
}
.kpi-best-practices {
  margin-top: 40px;
  padding: 30px;
  background: #f8f9fa;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .nav-letters {
    justify-content: center;
  }
  .best-practices-grid {
    grid-template-columns: 1fr;
  }
}
/* Override back-to-top for KPIs page */
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #007bff;
  color: white;
  padding: 10px 15px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  transition: background-color 0.3s;
}
.back-to-top:hover {
  background: #0056b3;
}
/* --- End KPIs & Metrics Page Styles --- */

/* --- FAQ Styles for KPIs Page --- */
.faq-container {
  margin-top: 20px;
}
.faq-item {
  margin-bottom: 15px;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.faq-question {
  width: 100%;
  background: #f8f9fa;
  border: none;
  padding: 20px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1em;
  font-weight: 600;
  color: #2c3e50;
  transition: background-color 0.3s, color 0.3s;
}
.faq-question:hover {
  background: #007bff;
  color: white;
}
.faq-question.active {
  background: #007bff;
  color: white;
}
.faq-icon {
  font-size: 1.5em;
  font-weight: bold;
  transition: transform 0.3s;
}
.faq-question.active .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background: white;
}
.faq-answer.active {
  max-height: 200px;
  transition: max-height 0.3s ease-in;
}
.faq-answer p {
  padding: 20px;
  margin: 0;
  line-height: 1.6;
  color: #4a5568;
}
@media (max-width: 768px) {
  .faq-question {
    padding: 15px;
    font-size: 1em;
  }
  .faq-answer p {
    padding: 15px;
  }
}
/* --- End FAQ Styles --- */

/* --- Resources Page Styles --- */
.breadcrumb {
  padding: 1rem 0;
  font-size: 0.9em;
  color: #666;
  margin-bottom: 1rem;
}
.breadcrumb a {
  color: #007bff;
  text-decoration: none;
}
.breadcrumb a:hover {
  text-decoration: underline;
}
.resources-intro {
    background: linear-gradient(135deg, #3a7bd5 0%, #00d2ff 100%);
    padding: 2rem;
    border-radius: 8px;
    color: white;
    margin: 2rem 0;
}
.resources-intro h2 {
  color: white;
  margin-top: 0;
}
.feature-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}
.feature-list li {
  padding: 0.5rem 0;
  font-size: 1.05em;
}
.resource-note {
  margin-top: 1.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  font-style: italic;
}
.page-header .subtitle {
  font-size: 1.1em;
  color: #666;
  font-weight: 400;
  margin-top: 0.5rem;
}
.resources-intro {
  margin: 2rem 0;
  text-align: center;
}
.resources-intro h2 {
  color: #2c3e50;
  margin-bottom: 0.75rem;
}
.resources-intro p {
  font-size: 1.05em;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}
.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2.5rem 0;
}
.resource-card {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}
.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  border-color: #007bff;
}
.resource-card .card-icon {
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 1rem;
}
.resource-card h3 {
  margin: 0 0 0.75rem 0;
  font-size: 1.4em;
  color: #2c3e50;
  font-weight: 600;
}
.resource-card .card-description {
  color: #555;
  font-size: 0.95em;
  line-height: 1.6;
  margin-bottom: 1rem;
  flex-grow: 1;
}
.resource-card .card-features {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem 0;
}
.resource-card .card-features li {
  padding-left: 1.5rem;
  margin: 0.5rem 0;
  color: #666;
  font-size: 0.9em;
  position: relative;
}
.resource-card .card-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: bold;
}
.resource-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #007bff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1em;
  margin-top: auto;
  transition: gap 0.2s;
}
.resource-card .card-link:hover {
  color: #0056b3;
  gap: 0.75rem;
}
.cta-button {
  display: inline-block;
  background: #007bff;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
  margin-top: 1rem;
}
.cta-button:hover {
  background: #0056b3;
}
.cta-button.secondary {
  background: #6c757d;
}
.cta-button.secondary:hover {
  background: #545b62;
}
.related-tools {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 8px;
  margin: 3rem 0;
}
.related-tools h2 {
  margin-top: 0;
}
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.tool-item {
  background: white;
  padding: 1.5rem;
  border-radius: 6px;
  border: 1px solid #e0e0e0;
}
.tool-item h3 {
  margin-top: 0;
  font-size: 1.2em;
}
.tool-item h3 a {
  text-decoration: none;
  color: #2c3e50;
}
.tool-item h3 a:hover {
  color: #007bff;
}
.tool-item p {
  margin: 0.5rem 0 0 0;
  color: #666;
  font-size: 0.95em;
}
.learning-path {
  margin: 3rem 0;
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 12px;
}
.learning-path h2 {
  margin-top: 0;
}
.path-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.path-step {
  background: white;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}
.path-step:hover {
  transform: translateY(-2px);
}
.step-number {
  display: inline-block;
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 3rem;
  margin-bottom: 1rem;
}
.path-step h4 {
  margin: 0.5rem 0;
  color: #2c3e50;
  font-size: 1.1em;
}
.path-step p {
  margin: 0.5rem 0 0 0;
  font-size: 0.9em;
}
.path-step a {
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
}
.path-step a:hover {
  text-decoration: underline;
}
.faq-section {
  margin: 3rem 0;
}
.faq-section .faq-item {
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 1.5rem;
  margin: 1rem 0;
}
.faq-section .faq-item h3 {
  margin-top: 0;
  color: #2c3e50;
  font-size: 1.2em;
}
.faq-section .faq-item p {
  margin: 0.5rem 0 0 0;
  color: #555;
  line-height: 1.7;
}
.cta-section {
    background: linear-gradient(135deg, #3a7bd5 0%, #00d2ff 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: 8px;
    text-align: center;
    margin: 3rem 0;
}
.cta-section h2 {
  color: white;
  margin-top: 0;
}
.cta-section p {
  font-size: 1.1em;
  margin-bottom: 2rem;
}
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-buttons .cta-button {
  margin: 0;
}
.cta-buttons .primary {
  background: white;
  color: #667eea;
}
.cta-buttons .primary:hover {
  background: #f0f0f0;
}
@media (max-width: 768px) {
  .resources-grid {
    grid-template-columns: 1fr;
  }
  .tools-grid {
    grid-template-columns: 1fr;
  }
  .path-steps {
    grid-template-columns: 1fr;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .cta-button {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
}
/* --- End Resources Page Styles --- */
