/* General Body Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    background-color: #f4f7f6;
    color: #333;
    line-height: 1.6;
}

/* Header and Navigation */
header {
    background-color: #fff;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
}

.logo {
    font-family: 'Inter', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    color: #0052cc;
}

.logo a {
    text-decoration: none;
    color: inherit;
}

nav a {
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    color: #555;
    margin-left: 1.5rem;
    font-weight: 700;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #0052cc;
}

/* Main Content & Hero Section */
main {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-section {
    text-align: center;
    padding: 4rem 2rem;
    background-color: #0052cc;
    color: #fff;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.hero-section h1 {
    font-family: 'Inter', sans-serif;
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.hero-section p {
    font-size: 1.2rem;
}

/* Stats Section */
.stats-section h2 {
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #333;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.stat-card {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.stat-card h3 {
    font-family: 'Inter', sans-serif;
    color: #0052cc;
    margin-top: 0;
}

/* Blog Content Styles */
.blog-content {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
}

.blog-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.8rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.blog-meta {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 2rem;
}

.blog-header-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.blog-content h2 {
    font-family: 'Inter', sans-serif;
    font-size: 2rem;
    color: #0052cc;
    margin-top: 3rem;
    border-bottom: 2px solid #eee;
    padding-bottom: 0.5rem;
}

.blog-content h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    color: #333;
    margin-top: 2rem;
}

.blog-image {
    max-width: 100%;
    border-radius: 8px;
    margin: 1rem 0;
}

/* Table Styles */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

table th, table td {
    border: 1px solid #ddd;
    padding: 0.8rem 1rem;
    text-align: left;
}

table th {
    background-color: #f2f2f2;
    font-weight: 700;
}

/* Lists */
ul {
    padding-left: 20px;
}

ul li {
    margin-bottom: 0.5rem;
}

/* Disclaimer */
.disclaimer {
    font-size: 0.8rem;
    color: #888;
    margin-top: 3rem;
    border-top: 1px solid #eee;
    padding-top: 1rem;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    margin-top: 2rem;
    background-color: #333;
    color: #fff;
}
