@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;500;600;700&display=swap');

:root {
    /* Enhanced Professional Color Palette */
    --primary-color: #DC2626;
    --primary-dark: #B91C1C;
    --primary-light: #EF4444;
    --secondary-color: #F59E0B;
    --accent-color: #0EA5E9;
    
    /* Sophisticated Neutral Colors */
    --text-primary: #111827;
    --text-secondary: #374151;
    --text-muted: #6B7280;
    --text-light: #9CA3AF;
    
    /* Professional Background Colors */
    --bg-primary: #FFFFFF;
    --bg-secondary: #F9FAFB;
    --bg-tertiary: #F3F4F6;
    --bg-gradient: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
    
    /* Refined Border & Shadow */
    --border-color: #E5E7EB;
    --border-light: #F3F4F6;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.03);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
    
    /* Professional Spacing */
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 1.1rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    
    /* Enhanced Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    
    /* Smooth Professional Transitions */
    --transition-fast: 200ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 350ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Refined Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
}

/* Professional H2 - Section Headers */
h2 { 
    font-family: var(--font-heading);
    font-size: var(--font-size-4xl);
    font-weight: 600;
    color: var(--text-primary);
    margin-top: var(--space-3xl);
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-lg);
    position: relative;
    text-decoration: none !important;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

h2::after {
    
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 2px;
}

/* Enhanced H3 - Subsection Headers */
h3 { 
    font-family: var(--font-heading);
    font-size: var(--font-size-3xl);
    font-weight: 600;
    color: var(--text-primary);
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-lg);
    position: relative;
    padding-left: var(--space-lg);
    letter-spacing: -0.02em;
    line-height: 1.3;
}

h3::before {
    
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 4px;
    height: 1.5em;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Professional H4 - Sub-subsection Headers */
h4 { 
    font-size: var(--font-size-2xl);
    font-weight: 600;
    color: var(--text-primary);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
    position: relative;
    padding-left: var(--space-lg);
    letter-spacing: -0.015em;
}

h4::before {
    
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-size: var(--font-size-sm);
    transform: rotate(90deg);
    opacity: 0.8;
}

/* Refined H5 - Minor Headers */
h5 { 
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--text-secondary);
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: var(--font-primary);
}

/* Elegant H6 - Smallest Headers */
h6 { 
    font-size: var(--font-size-lg);
    font-weight: 500;
    color: var(--text-muted);
    margin-top: var(--space-md);
    margin-bottom: var(--space-sm);
    font-style: italic;
    letter-spacing: 0.025em;
}

/* Professional Enhanced Table Styles */
table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--space-xl) 0;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
    font-family: var(--font-primary);
}

thead {
    background: linear-gradient(135deg, var(--text-primary), #374151);
    color: white;
}

thead th {
    padding: var(--space-lg) var(--space-md);
    font-weight: 600;
    text-align: left;
    font-size: var(--font-size-sm);
    text-transform: uppercase;
    letter-spacing: 0.075em;
    position: relative;
    border-bottom: 2px solid var(--primary-color);
}

thead th:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 30%;
    bottom: 30%;
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
}

tbody tr {
    transition: all var(--transition-fast);
    border-bottom: 1px solid var(--border-light);
}

tbody tr:hover {
    background: var(--bg-secondary);
    transform: translateX(3px);
    box-shadow: var(--shadow-sm);
}

tbody tr:last-child {
    border-bottom: none;
}

tbody tr:nth-child(even) {
    background: rgba(249, 250, 251, 0.5);
}

tbody tr:nth-child(even):hover {
    background: var(--bg-secondary);
}

td, th {
    padding: var(--space-md) var(--space-lg);
    text-align: left;
    vertical-align: top;
    font-size: var(--font-size-sm);
    line-height: 1.6;
}

td {
    color: var(--text-secondary);
    border-right: 1px solid var(--border-light);
}

td:last-child {
    border-right: none;
}

td[data-type="number"],
td.number {
    text-align: right;
    font-weight: 600;
    color: var(--primary-color);
    font-variant-numeric: tabular-nums;
}

td[data-type="currency"],
td.currency {
    text-align: right;
    font-weight: 600;
    color: var(--secondary-color);
    font-variant-numeric: tabular-nums;
}

td[data-type="status"],
td.status {
    text-align: center;
}

img {
    max-width: 100%;
    border-radius: var(--radius-md);
}

td[data-type="date"],
td.date {
    color: var(--text-muted);
    font-size: var(--font-size-xs);
    font-variant-numeric: tabular-nums;
}

caption {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    text-align: left;
    caption-side: top;
    font-family: var(--font-heading);
}

.table-wrapper {
    overflow-x: auto;
    margin: var(--space-xl) 0;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.table-wrapper table {
    margin: 0;
    box-shadow: none;
    border-radius: 0;
    border: none;
}

/* Professional Blog Section */
.blog-section {
    padding: var(--space-3xl) 0;
    background: var(--bg-primary);
}

.blog-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
    padding: var(--space-3xl) 0;
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
    position: relative;
    overflow: hidden;
}

.blog-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23374151' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}

.blog-header > * {
    position: relative;
    z-index: 1;
}

.page-title {
    font-family: var(--font-heading);
    font-size: var(--font-size-5xl);
    font-weight: 700;
    margin-bottom: var(--space-lg);
    color: var(--text-primary);
    letter-spacing: -0.03em;
}

.page-description {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

/* Professional Blog Grid Layout */
.blog-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: var(--space-3xl);
    align-items: start;
    
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.blog-main {
    min-height: 100vh;
}

/* Enhanced Blog Post Styles */
.blog-post-title {
    font-family: var(--font-heading);
    font-size: var(--font-size-4xl);
    font-weight: 700;
    margin-bottom: var(--space-lg);
    line-height: 1.2;
    color: var(--text-primary);
    letter-spacing: -0.025em;
}

.blog-post-meta {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
    padding: var(--space-lg);
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.blog-post-category {
    background: var(--primary-color);
    color: white;
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-md);
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: var(--shadow-sm);
}

.blog-post-image {
    margin-bottom: var(--space-2xl);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
    border: 1px solid var(--border-light);
}

.blog-post-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.blog-post-image:hover img {
    transform: scale(1.02);
}

.blog-post-content {
    font-size: var(--font-size-lg);
    line-height: 1.8;
    color: var(--text-secondary);
}

.blog-post-content p {
    margin-bottom: var(--space-xl);
}

.blog-post-content h2,
.blog-post-content h3,
.blog-post-content h4 {
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-lg);
    position: relative;
    padding: 3px;	
}

.blog-post-content h2::before {
    content: '';
    position: absolute;
    left: -24px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.blog-post-tags {
    margin: var(--space-2xl) 0;
    padding: var(--space-xl);
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
}

.blog-post-tag {
    display: inline-block;
    background: white;
    color: var(--text-primary);
    padding: var(--space-sm) var(--space-md);
    margin: var(--space-xs);
    border-radius: var(--radius-md);
    text-decoration: none !important;
    font-size: var(--font-size-sm);
    font-weight: 500;
    border: 1px solid var(--border-color);
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.blog-post-tag:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.blog-post-share {
    margin-top: var(--space-2xl);
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.blog-post-share h3 {
    color: white;
    margin-bottom: var(--space-lg);
    font-size: var(--font-size-xl);
}

.blog-post-share-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* Professional Enhanced Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-md);
    text-decoration: none !important;
    font-weight: 600;
    font-size: var(--font-size-sm);
    transition: all var(--transition-fast);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    font-family: var(--font-primary);
    letter-spacing: 0.025em;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left var(--transition-normal);
}

.btn:hover::before {
    left: 100%;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-social {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    padding: 0;
    box-shadow: var(--shadow-md);
}

.btn-facebook { background: #1877f2; }
.btn-twitter { background: #1da1f2; }
.btn-whatsapp { background: #25D366; }
.btn-email { background: var(--secondary-color); }

/* Professional Blog Cards */
.blog-posts {
    display: grid;
    gap: var(--space-2xl);
}

.blog-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 1px solid var(--border-light);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.blog-card-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 0;
    height: fit-content;
}

.blog-card-image {
    position: relative;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
    display: block;
}

/* Fix for broken images stretching layout */
.blog-card-image {
    position: relative;
    overflow: hidden;
    background: #f3f4f6;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-card-content {
    padding: var(--space-xl);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog-card-category {
    background: var(--primary-color);
    color: white;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: var(--font-size-xs);
    font-weight: 600;
    text-transform: uppercase;
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    box-shadow: var(--shadow-sm);
}

.blog-card-title {
    font-family: var(--font-heading);
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: var(--space-md);
    line-height: 1.4;
}

.blog-card-title a {
    color: var(--text-primary);
    text-decoration: none !important;
    transition: color var(--transition-fast);
}

.blog-card-title a:hover {
    color: var(--primary-color);
}

.blog-card-excerpt {
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    line-height: 1.6;
    flex-grow: 1;
}

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-md);
    border-top: 1px solid var(--border-light);
}

.blog-card-tags {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.blog-card-tag {
    color: var(--primary-color);
    font-size: var(--font-size-xs);
    font-weight: 500;
    text-decoration: none !important;
    padding: var(--space-xs) var(--space-sm);
    background: var(--bg-tertiary);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.blog-card-tag:hover {
    background: var(--primary-color);
    color: white;
}

/* Enhanced Related Posts */
.related-posts-title {
    font-family: var(--font-heading);
    font-size: var(--font-size-2xl);
    margin: var(--space-2xl) 0 var(--space-xl);
    color: var(--text-primary);
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
}

.related-post-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 1px solid var(--border-light);
}

.related-post-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.related-post-image img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.related-post-content {
    padding: var(--space-lg);
}

.related-post-title {
    font-family: var(--font-heading);
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-md);
    font-weight: 600;
    line-height: 1.4;
}

.related-post-excerpt {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

/* Professional Sidebar */
.blog-sidebar {
    position: sticky;
    top: var(--space-xl);
}

.sidebar-card {
    background: white;
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    margin-bottom: var(--space-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.sidebar-title {
    font-family: var(--font-heading);
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: var(--space-lg);
    color: var(--text-primary);
    position: relative;
    padding-bottom: var(--space-sm);
}

.sidebar-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
    border-radius: 2px;
}

.sidebar-list {
    list-style: none;
}

.sidebar-list li {
    margin-bottom: var(--space-md);
    padding-left: var(--space-md);
    position: relative;
}

.sidebar-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 600;
    opacity: 0.7;
}

.sidebar-list a {
    color: var(--text-secondary);
    text-decoration: none !important;
    font-size: var(--font-size-sm);
    transition: color var(--transition-fast);
    font-weight: 500;
}

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

.sidebar-text {
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    line-height: 1.6;
}

/* Professional Newsletter */
.newsletter-form {
    margin-top: var(--space-lg);
}

.newsletter-input-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.newsletter-input {
    padding: var(--space-md);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: var(--font-size-base);
    transition: all var(--transition-fast);
    background: white;
    font-family: var(--font-primary);
}

.newsletter-input:focus {
    outline: none !important;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

/* Enhanced Tag Cloud */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.tag-cloud-item {
    background: var(--bg-tertiary);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    text-decoration: none !important;
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    font-weight: 500;
    transition: all var(--transition-fast);
    border: 1px solid var(--border-light);
}

.tag-cloud-item:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
    border-color: var(--primary-color);
}

/* Professional Popular Posts */
.popular-posts {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.popular-post {
    display: flex;
    gap: var(--space-md);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--border-light);
    transition: all var(--transition-fast);
}

.popular-post:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.popular-post:hover {
    transform: translateX(6px);
}

.popular-post-image {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
}

.popular-post-image img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    display: block;
}

.popular-post-content {
    flex-grow: 1;
    min-width: 0; /* Critical for flex content wrapping */
}

.popular-post-title {
    font-size: var(--font-size-sm);
    font-weight: 600;
    margin-bottom: var(--space-xs);
    line-height: 1.4;
}

.popular-post-title a {
    color: var(--text-primary);
    text-decoration: none !important;
    transition: color var(--transition-fast);
}

.popular-post-title a:hover {
    color: var(--primary-color);
}

.popular-post-date {
    font-size: var(--font-size-xs);
    color: var(--text-muted);
    font-variant-numeric: tabular-nums;
}

/* Professional Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-2xl);
}

.pagination-item {
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    text-decoration: none !important;
    color: var(--text-secondary);
    background: var(--bg-tertiary);
    font-size: var(--font-size-sm);
    transition: all var(--transition-fast);
    border: 1px solid var(--border-light);
    font-weight: 500;
}

.pagination-item.active, .pagination-item:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.pagination-item.disabled {
    color: var(--text-light);
    pointer-events: none;
    opacity: 0.5;
}

/* Enhanced CTA Card */
.cta-card {
    background: var(--bg-gradient);
    color: white;
    border: none;
    box-shadow: var(--shadow-lg);
}

.cta-card .sidebar-title {
    color: white;
}

.cta-card .sidebar-text {
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.btn-block {
    width: 100%;
    text-align: center;
}

/* Enhanced Responsive Design */
@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
        padding: 0 var(--space-md);
    }
    
    .blog-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .blog-card-grid {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .blog-card-image img {
        height: 250px;
    }
    
    .blog-post-image img {
        height: 300px;
    }
    
    .blog-post-share-buttons {
        flex-direction: column;
    }
    
    .page-title {
        font-size: var(--font-size-4xl);
    }
    
    h2 {
        font-size: var(--font-size-3xl);
    }
    
    h3 {
        font-size: var(--font-size-2xl);
    }
    
    h4 {
        font-size: var(--font-size-xl);
    }
    
    h5 {
        font-size: var(--font-size-lg);
    }
    
    h6 {
        font-size: var(--font-size-base);
    }
    
    table {
        font-size: var(--font-size-xs);
    }
    
    td, th {
        padding: var(--space-sm);
    }
    
    thead th {
        padding: var(--space-md) var(--space-sm);
    }
    
    .blog-grid {
        padding: 0 var(--space-sm);
    }
}

/* Global professional link styling - REMOVES ALL UNDERLINES AND FOCUS BORDERS */
a {
    text-decoration: none !important;
    transition: all var(--transition-fast);
}

a:focus,
a:active,
a:visited {
    text-decoration: none !important;
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

/* Remove focus borders from all elements */
*:focus,
*:active {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

/* Remove focus borders specifically from buttons */
button:focus,
button:active,
.btn:focus,
.btn:active {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

/* Remove focus borders from form elements */
input:focus,
textarea:focus,
select:focus {
    outline: none !important;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}


 .button-container {
            text-align: center;
            margin: 30px 0;
        }
        
        .cta-button {
            background: #ff0006;
            color: white;
            padding: 15px 30px;
            border: none;
            border-radius: 25px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }
        
        .cta-button:hover {
            background: #cc0005;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 0, 6, 0.4);
        }
        
        .cta-button:active {
            transform: translateY(0);
        }
