/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #10b981;
    --accent-color: #f59e0b;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --excellent-color: #10b981;
    --good-color: #3b82f6;
    --fair-color: #f59e0b;
    --poor-color: #ef4444;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
header {
    background-color: var(--bg-white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    background-color: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.btn-link:hover {
    color: var(--primary-dark);
}

/* Page Header */
.page-header {
    background-color: var(--bg-light);
    padding: 3rem 0;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.page-header p {
    font-size: 1.125rem;
    color: var(--text-light);
}

/* Sections */
section {
    padding: 4rem 0;
}

section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--text-dark);
}

/* Quick Tools Grid */
.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.tool-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.tool-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.tool-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.tool-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* Loan Types */
.loan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.loan-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 1rem;
    border-left: 4px solid var(--primary-color);
}

.loan-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.loan-card ul {
    list-style: none;
    margin-bottom: 1rem;
}

.loan-card ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.loan-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Key Factors */
.factors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.factor-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.factor-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.factor-card ul {
    list-style: disc;
    margin-left: 1.5rem;
}

.factor-card ul li {
    margin: 0.5rem 0;
    color: var(--text-light);
}

/* Score Ranges */
.score-ranges {
    margin-top: 1rem;
}

.score-range {
    padding: 0.75rem;
    margin: 0.5rem 0;
    border-radius: 0.5rem;
    font-weight: 600;
    text-align: center;
}

.score-range.excellent {
    background-color: #d1fae5;
    color: #065f46;
}

.score-range.good {
    background-color: #dbeafe;
    color: #1e40af;
}

.score-range.fair {
    background-color: #fef3c7;
    color: #92400e;
}

.score-range.poor {
    background-color: #fee2e2;
    color: #991b1b;
}

.score-range.very-poor {
    background-color: #fecaca;
    color: #7f1d1d;
}

/* Tips Section */
.tips-section {
    background-color: var(--bg-light);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.tip-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.tip-number {
    display: inline-block;
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.tip-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.tip-card p {
    color: var(--text-light);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Calculator Styles */
.calculator-section {
    background-color: var(--bg-light);
}

.calculator-section:nth-child(even) {
    background-color: var(--bg-white);
}

.calculator-card {
    background: var(--bg-white);
    border-radius: 1rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.calculator-description {
    color: var(--text-light);
    margin-bottom: 2rem;
    text-align: center;
}

.calculator-body {
    margin-top: 2rem;
}

.input-group {
    margin-bottom: 1.5rem;
}

.input-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.input-group input,
.input-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.input-group input:focus,
.input-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.input-group small {
    display: block;
    margin-top: 0.25rem;
    color: var(--text-light);
    font-size: 0.875rem;
}

.debt-inputs {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin: 1.5rem 0;
}

.debt-inputs h4 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

/* Result Box */
.result-box {
    background-color: var(--bg-light);
    border-radius: 1rem;
    padding: 2rem;
    margin-top: 2rem;
    border: 2px solid var(--primary-color);
}

.result-box h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.result-item:last-child {
    border-bottom: none;
}

.result-item.large {
    font-size: 1.25rem;
    font-weight: bold;
}

.result-label {
    color: var(--text-light);
    font-weight: 500;
}

.result-value {
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.125rem;
}

.result-value.highlight {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.result-explanation {
    margin-top: 1rem;
    padding: 1rem;
    background-color: var(--bg-white);
    border-radius: 0.5rem;
    color: var(--text-dark);
}

/* DTI Gauge */
.dti-gauge {
    margin: 2rem 0;
}

.gauge-bar {
    height: 2rem;
    background: linear-gradient(to right, #10b981 0%, #3b82f6 36%, #f59e0b 43%, #ef4444 50%);
    border-radius: 1rem;
    position: relative;
    overflow: hidden;
}

.gauge-fill {
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    border-right: 3px solid var(--text-dark);
    transition: width 0.5s ease;
}

.gauge-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Payment Breakdown */
.payment-breakdown,
.loan-summary {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
}

.payment-breakdown h4,
.loan-summary h4 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

/* Credit Score Slider */
.credit-score-range {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.credit-score-range input[type="range"] {
    flex: 1;
}

.range-label {
    font-weight: 600;
    color: var(--text-light);
}

/* Credit Tier Badge */
.credit-tier {
    text-align: center;
    margin-bottom: 1.5rem;
}

.tier-label {
    font-weight: 600;
    margin-right: 1rem;
}

.tier-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-weight: 700;
    font-size: 1.125rem;
}

/* Comparison Table */
.comparison-table {
    margin-top: 2rem;
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 0.75rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background-color: var(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
}

.comparison-table tr:hover {
    background-color: var(--bg-light);
}

/* Guide Styles */
.guide-card {
    background: var(--bg-white);
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-bottom: 2rem;
}

.guide-content {
    margin-top: 1.5rem;
}

.guide-content h3 {
    font-size: 1.75rem;
    margin: 2rem 0 1rem 0;
    color: var(--text-dark);
}

.guide-content h4 {
    font-size: 1.25rem;
    margin: 1.5rem 0 0.75rem 0;
    color: var(--primary-color);
}

.guide-content p {
    margin-bottom: 1rem;
    color: var(--text-dark);
    line-height: 1.8;
}

.guide-content ul,
.guide-content ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.guide-content ul li,
.guide-content ol li {
    margin: 0.5rem 0;
    color: var(--text-dark);
}

/* TOC */
.toc-section {
    background-color: var(--bg-light);
    padding: 2rem 0;
}

.toc-card {
    background: var(--bg-white);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.toc-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.toc-list a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.toc-list a:hover {
    color: var(--primary-dark);
}

/* Requirements Grid */
.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.requirement-item {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 0.75rem;
}

.requirement-item h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Steps List */
.steps-list {
    margin: 1.5rem 0;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 0.75rem;
}

.step-number {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.125rem;
}

.step-content h4 {
    margin-bottom: 0.5rem;
}

/* Tip Box */
.tip-box {
    background-color: #dbeafe;
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0.5rem;
}

.tip-box h4 {
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.warning-box {
    background-color: #fef3c7;
    border-left: 4px solid var(--warning-color);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0.5rem;
}

.warning-box h4 {
    color: #92400e;
    margin-bottom: 1rem;
}

/* Credit Tips Styles */
.score-breakdown {
    margin: 2rem 0;
}

.breakdown-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.breakdown-item {
    text-align: center;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 0.75rem;
}

.percentage {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.breakdown-item h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.breakdown-item p {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Score Ranges Detailed */
.score-ranges-detailed {
    margin: 2rem 0;
}

.range-item {
    padding: 1.5rem;
    margin: 1rem 0;
    border-radius: 0.75rem;
    border-left: 4px solid;
}

.range-item.excellent {
    background-color: #d1fae5;
    border-color: var(--excellent-color);
}

.range-item.very-good {
    background-color: #dbeafe;
    border-color: #3b82f6;
}

.range-item.good {
    background-color: #e0e7ff;
    border-color: #6366f1;
}

.range-item.fair {
    background-color: #fef3c7;
    border-color: var(--fair-color);
}

.range-item.poor {
    background-color: #fee2e2;
    border-color: var(--poor-color);
}

.range-item h4 {
    margin-bottom: 0.5rem;
}

/* Quick Wins */
.wins-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.win-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-top: 4px solid var(--primary-color);
}

.win-card .impact {
    color: var(--text-light);
    font-style: italic;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

/* Timeline */
.timeline {
    margin: 2rem 0;
    position: relative;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 2rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--border-color);
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-marker {
    flex-shrink: 0;
    width: 4rem;
    height: 4rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.875rem;
    text-align: center;
    z-index: 1;
}

.timeline-content {
    flex: 1;
    padding-top: 0.5rem;
}

.timeline-content .expected {
    color: var(--success-color);
    font-weight: 600;
    margin-top: 1rem;
}

.timeline-note {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 0.75rem;
    margin-top: 2rem;
}

/* FAQ Styles */
.faq-category {
    margin-bottom: 3rem;
}

.faq-category h2 {
    text-align: left;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.faq-item {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: var(--bg-light);
}

.faq-question h3 {
    font-size: 1.125rem;
    color: var(--text-dark);
    margin: 0;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: bold;
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 2000px;
}

.faq-answer {
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-answer p {
    margin-bottom: 1rem;
}

.faq-answer ul,
.faq-answer ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.faq-answer li {
    margin: 0.5rem 0;
}

/* Contact Section */
.contact-section {
    background-color: var(--bg-light);
}

.contact-card {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.contact-card h2 {
    margin-bottom: 1rem;
}

.contact-card p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Footer */
footer {
    background-color: var(--text-dark);
    color: white;
    padding: 3rem 0 1rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin: 0.5rem 0;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .tools-grid,
    .loan-grid,
    .factors-grid,
    .tips-grid {
        grid-template-columns: 1fr;
    }

    .timeline:before {
        left: 1.5rem;
    }

    .timeline-marker {
        width: 3rem;
        height: 3rem;
        font-size: 0.75rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
}

/* Utility Classes */
.checklist {
    list-style: none;
}

.checklist li {
    position: relative;
    padding-left: 2rem;
    margin: 0.75rem 0;
}

.checklist li:before {
    content: "☐";
    position: absolute;
    left: 0;
    font-size: 1.25rem;
    color: var(--primary-color);
}

/* Additional Business Loan Styles */
.business-loan-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.biz-loan-card {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border-top: 3px solid var(--primary-color);
}

.biz-loan-card h4 {
    margin-bottom: 0.5rem;
}

.biz-loan-card p {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 1rem;
}

.documents-checklist {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 0.75rem;
    margin: 1.5rem 0;
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.doc-category {
    background-color: var(--bg-white);
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Resource Cards */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.resource-card {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 0.75rem;
}

.resource-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Action Plan */
.action-plan {
    background-color: var(--bg-light);
}

.cta-card {
    text-align: center;
}

.action-steps {
    text-align: left;
    max-width: 800px;
    margin: 2rem auto;
}

.action-steps h3 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.action-steps ol {
    margin-left: 1.5rem;
}

.action-steps li {
    margin: 0.75rem 0;
    line-height: 1.6;
}

/* Mistakes List */
.mistakes-list {
    margin: 2rem 0;
}

.mistake-item {
    background-color: var(--bg-light);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 0.75rem;
    border-left: 4px solid var(--warning-color);
}

.mistake-item h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.mistake-item p {
    margin: 0.5rem 0;
}

.mistakes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.mistake-card {
    background-color: #fef3c7;
    padding: 1.5rem;
    border-radius: 0.75rem;
    border-left: 4px solid var(--warning-color);
}

.mistake-card h3 {
    color: var(--text-dark);
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.mistake-card p {
    color: var(--text-dark);
    font-size: 0.9375rem;
}
