:root {
    --primary-color: #0066cc;
    --secondary-color: #333;
    --light-gray: #f5f5f5;
    --dark-gray: #777;
    --white: #ffffff;
    --green-up: #007A00;
    --red-down: #cc0000;
    --breaking-red: #e63946;
    --breaking-dark: #c1121f;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: var(--light-gray);
    color: var(--secondary-color);
    line-height: 1.6;
}

/* Header Styles */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
}

.logo img {
    height: 40px;
}

/* Main Container */
.container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
}

/* Blog Post Styles */
.post-header {
    margin-bottom: 30px;
}

.rt-cat-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 14px;
    margin-bottom: 15px;
}

.post-header .title {
    font-size: 32px;
    margin: 15px 0;
    line-height: 1.3;
}

.post-meta {
    color: var(--dark-gray);
    font-size: 14px;
    margin-bottom: 20px;
}

.post-meta ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

.post-img {
    margin-bottom: 30px;
}

.post-img img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.post-body {
    font-size: 16px;
    line-height: 1.8;
}

.post-body h3 {
    margin: 25px 0 15px;
    color: var(--primary-color);
}

.post-body ul, .post-body ol {
    margin: 20px 0;
    padding-left: 30px;
}

.post-body li {
    margin-bottom: 10px;
}

.rt-dropcap-style-1::first-letter {
    float: left;
    font-size: 56px;
    line-height: 1;
    margin-right: 10px;
    color: var(--primary-color);
    font-weight: bold;
}

/* Author Box */
.author-box-style-1 {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    margin: 40px 0;
    display: flex;
    gap: 20px;
    align-items: center;
}

.author-content h3 {
    margin-bottom: 5px;
}

.author-role {
    color: var(--dark-gray);
    font-size: 14px;
    display: block;
    margin-bottom: 15px;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: white;
    padding: 60px 0 20px;
    margin-top: 60px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-column {
    flex: 1;
    min-width: 300px;
}

.footer-logo img {
    margin-bottom: 20px;
}

.footer-about {
    color: #aaa;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-title {
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
    }
    
    .post-header .title {
        font-size: 28px;
    }
    
    .author-box-style-1 {
        flex-direction: column;
        text-align: center;
    }
}
/* Add to style.css */
.metric-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.metric-card {
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
}

.metric-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.metric-label {
    font-size: 14px;
    color: var(--dark-gray);
}

.disclaimer {
    font-size: 12px;
    color: var(--dark-gray);
    margin-top: 15px;
    font-style: italic;
}