/* styles.css */
:root {
    --text-primary: #2d3748;
    --text-secondary: #4a5568;
    --accent: #ad0101;
    --bg-light: #f7fafc;
    --border-color: #e2e8f0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'system-ui', -apple-system, sans-serif;
    line-height: 1.75;
    color: var(--text-primary);
    background: var(--bg-light);
}

.blog-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    background: white;
}

.blog-header {
    margin-bottom: 2rem;
}

.blog-meta {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.featured-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    margin: 2rem 0;
    border-radius: 8px;
}

.blog-container section h1 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.blog-container section h2 {
    font-size: 1.75rem;
    margin: 2.5rem 0 1rem;
    color: var(--text-primary);
}

.blog-container section h3 {
    font-size: 1.35rem;
    margin: 2rem 0 1rem;
    color: var(--text-primary);
}

.blog-container section p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.lead {
    font-size: 1.2rem;
    color: var(--text-primary);
    line-height: 1.8;
}

ul, ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
    color: var(--text-secondary);
}

li {
    margin-bottom: 0.75rem;
}

.definition-box {
    background: var(--bg-light);
    padding: 1.5rem;
    border-left: 4px solid var(--accent);
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}

blockquote {
    border-left: 4px solid var(--accent);
    padding-left: 1rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .blog-container {
        padding: 1rem;
    }

    h1 {
        font-size: 2rem;
    }

    .featured-image {
        height: 300px;
    }
}
.blog-navigation {
    display: flex;
    justify-content: space-between;
    gap: 20rem;
}

.nav-arrow {
    display: flex;
    align-items: center;
    color: white;
    background: linear-gradient(135deg, #ff3333, #cc0000);
    padding: 0.5rem 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(204, 0, 0, 0.2);
    margin-top: 4rem;
    text-decoration: none;
}

.nav-arrow:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(204, 0, 0, 0.3);
    background: linear-gradient(135deg, #ff4444, #dd0000);
}

.nav-label {
    font-size: 1rem;
    font-weight: 400;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-arrow svg {
    width: 20px;
    height: 20px;
    stroke-width: 3;
}

.prev svg {
    margin-right: 0.5rem;
}

.next svg {
    margin-left: 0.5rem;
}
/* table */
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 16px;
    text-align: left;
}

.comparison-table thead {
    background-color: #f4f4f4;
}

.comparison-table th, 
.comparison-table td {
    padding: 12px 15px;
    border: 1px solid #ddd;
}

.comparison-table th {
    font-weight: bold;
    text-transform: uppercase;
}

.comparison-table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

.comparison-table tbody tr:hover {
    background-color: #f1f1f1;
}

.comparison-table td {
    vertical-align: top;
}
@media (max-width: 768px) {
    .blog-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-arrow {
        margin-top: 1rem;
        justify-content: center;
        width: auto;
    }
}
@media screen and (max-width: 768px) {
    .comparison-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar;
    }
    
    .comparison-table th,
    .comparison-table td {
        white-space: nowrap;
        min-width: 100px;
    }
}

/* For very small screens */
@media screen and (max-width: 480px) {
    .comparison-table {
        font-size: 14px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 8px 10px;
    }
}