/* ============================================
   Smart Money Hub - Main Stylesheet
   ============================================ */

/* CSS Variables */
:root {
    --primary-color: #2563EB;
    --primary-dark: #1E40AF;
    --primary-light: #60A5FA;
    --secondary-color: #10B981;
    --secondary-dark: #059669;
    --text-color: #1F2937;
    --text-light: #6B7280;
    --text-lighter: #9CA3AF;
    --bg-color: #FFFFFF;
    --bg-light: #F9FAFB;
    --bg-dark: #111827;
    --border-color: #E5E7EB;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --transition: all 0.3s ease;
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --max-width: 1200px;
    --header-height: 70px;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -100px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 10px 20px;
    z-index: 9999;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

/* Screen Reader Only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Top Bar */
.top-bar {
    background: var(--bg-dark);
    color: white;
    padding: 8px 0;
    font-size: 13px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-links {
    display: flex;
    gap: 20px;
}

.top-bar-links a {
    color: #D1D5DB;
}

.top-bar-links a:hover {
    color: white;
}

/* Header */
.site-header {
    background: white;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    gap: 20px;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-image {
    width: 200px;
    height: auto;
    max-height: 50px;
    object-fit: contain;
}

/* Navigation */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-list a {
    color: var(--text-color);
    font-weight: 500;
    font-size: 15px;
    position: relative;
    padding: 5px 0;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--primary-color);
}

.nav-list a.active::after,
.nav-list a:hover::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-arrow {
    transition: transform 0.3s;
}

.dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
    z-index: 100;
    list-style: none;
    padding: 10px 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 8px 20px;
    color: var(--text-color);
    font-size: 14px;
}

.dropdown-menu a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger-line {
    width: 25px;
    height: 2px;
    background: var(--text-color);
    transition: all 0.3s;
}

/* Search Box */
.search-box {
    display: flex;
    align-items: center;
}

.search-box form {
    display: flex;
    align-items: center;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 5px 10px;
    transition: all 0.3s;
}

.search-box form:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.search-box input {
    border: none;
    background: none;
    padding: 5px;
    outline: none;
    width: 150px;
    font-size: 14px;
}

.search-box button {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-light);
    display: flex;
    align-items: center;
    padding: 5px;
}

/* Breadcrumbs */
.breadcrumbs-wrapper {
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
    padding: 10px 0;
}

.breadcrumbs ol {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
    font-size: 14px;
}

.breadcrumbs a {
    color: var(--text-light);
}

.breadcrumbs a:hover {
    color: var(--primary-color);
}

.breadcrumbs .separator {
    color: var(--text-lighter);
    margin: 0 4px;
}

.breadcrumbs span[aria-current="page"] {
    color: var(--text-color);
    font-weight: 500;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #EEF2FF 0%, #FFFFFF 100%);
    padding: 50px 0;
    border-bottom: 1px solid var(--border-color);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.hero-title {
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
}

.hero-title a {
    color: var(--text-color);
}

.hero-title a:hover {
    color: var(--primary-color);
}

.hero-excerpt {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.hero-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text-light);
    font-size: 14px;
}

.meta-icon {
    font-size: 16px;
}

.hero-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-light {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Content Layout */
.content-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 30px;
    padding: 40px 0;
}

.main-content {
    min-width: 0;
}

/* Section Headers */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
}

.section-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-color);
}

.section-line {
    flex: 1;
    height: 2px;
    background: var(--primary-color);
    margin-left: 15px;
    border-radius: 2px;
}

.view-all {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
}

/* Article Grid */
.article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.article-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.article-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.article-card:hover .article-image img {
    transform: scale(1.05);
}

.category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
}

.category-badge:hover {
    background: var(--primary-dark);
    color: white;
}

.article-body {
    padding: 20px;
}

.article-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
}

.article-title a {
    color: var(--text-color);
}

.article-title a:hover {
    color: var(--primary-color);
}

.article-excerpt {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 13px;
    color: var(--text-light);
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.tag-link {
    display: inline-block;
    color: var(--text-light);
    font-size: 12px;
    padding: 3px 8px;
    background: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s;
}

.tag-link:hover {
    background: var(--primary-color);
    color: white;
    text-decoration: none;
}

.read-more {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
}

/* Category Section */
.category-section {
    margin-bottom: 40px;
}

.category-articles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.mini-article-card {
    display: flex;
    gap: 12px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    padding: 12px;
    transition: all 0.3s;
}

.mini-article-card:hover {
    background: white;
    box-shadow: var(--shadow-md);
}

.mini-article-image {
    flex-shrink: 0;
}

.mini-article-image img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.mini-article-body h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.3;
}

.mini-article-body h4 a {
    color: var(--text-color);
}

.mini-article-body h4 a:hover {
    color: var(--primary-color);
}

.mini-article-date {
    font-size: 12px;
    color: var(--text-light);
}

/* Load More */
.load-more-wrapper {
    text-align: center;
    margin: 40px 0;
}

/* Single Article */
.single-article {
    padding: 40px 0;
}

.article-header {
    margin-bottom: 30px;
}

.article-category-badge {
    margin-bottom: 15px;
}

.article-category-badge a {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.article-category-badge a:hover {
    background: var(--primary-dark);
    color: white;
}

.single-article .article-title {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.meta-left,
.meta-right {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.share-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    color: white;
}

.share-btn.facebook {
    background: #1877F2;
}

.share-btn.facebook:hover {
    background: #0d5ab9;
}

.share-btn.twitter {
    background: #1DA1F2;
}

.share-btn.twitter:hover {
    background: #0c7abf;
}

.share-btn.linkedin {
    background: #0A66C2;
}

.share-btn.linkedin:hover {
    background: #084a8f;
}

.share-btn.whatsapp {
    background: #25D366;
}

.share-btn.whatsapp:hover {
    background: #1a9e4b;
}

.share-btn.copy-link {
    background: #6B7280;
}

.share-btn.copy-link:hover {
    background: #4B5563;
}

.article-featured-image {
    margin-bottom: 30px;
}

.article-featured-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.article-content {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-color);
}

.article-content h2 {
    font-size: 24px;
    font-weight: 700;
    margin: 30px 0 15px;
    color: var(--text-color);
}

.article-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 25px 0 12px;
    color: var(--text-color);
}

.article-content p {
    margin-bottom: 20px;
}

.article-content ul,
.article-content ol {
    margin: 15px 0 20px 25px;
}

.article-content li {
    margin-bottom: 10px;
}

.article-content img {
    border-radius: var(--radius-md);
    margin: 20px 0;
}

.article-content blockquote {
    border-left: 4px solid var(--primary-color);
    padding: 15px 20px;
    margin: 20px 0;
    background: var(--bg-light);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-style: italic;
}

.article-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.article-content th,
.article-content td {
    padding: 12px;
    border: 1px solid var(--border-color);
    text-align: left;
}

.article-content th {
    background: var(--bg-light);
    font-weight: 600;
}

/* Article Tags Full */
.article-tags-full {
    margin: 30px 0;
    padding: 20px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
}

.article-tags-full h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.article-tags-full .tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* Author Box */
.author-box {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    margin: 30px 0;
}

.author-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: var(--shadow-md);
}

.author-info h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.author-info p {
    color: var(--text-light);
    margin-bottom: 10px;
}

.author-social {
    display: flex;
    gap: 10px;
}

.author-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--text-light);
    transition: all 0.3s;
}

.author-social a svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.author-social a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Related Articles */
.related-articles {
    margin: 40px 0;
}

.related-articles h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.related-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s;
}

.related-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.related-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.related-card h4 {
    font-size: 14px;
    font-weight: 600;
    padding: 10px;
    line-height: 1.3;
}

.related-card h4 a {
    color: var(--text-color);
}

.related-card h4 a:hover {
    color: var(--primary-color);
}

.related-date {
    display: block;
    padding: 0 10px 10px;
    font-size: 12px;
    color: var(--text-light);
}

/* Comments Section */
.comments-section {
    margin: 40px 0;
    padding: 25px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
}

.comments-section h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.widget {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 20px;
}

.widget-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-color);
}

/* Trending Widget */
.trending-item {
    margin-bottom: 15px;
}

.trending-item:last-child {
    margin-bottom: 0;
}

.trending-item a {
    display: flex;
    gap: 10px;
    align-items: center;
    text-decoration: none;
}

.trending-item img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.trending-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
    line-height: 1.3;
}

.trending-info span {
    font-size: 12px;
    color: var(--text-light);
}

/* Categories Widget */
.widget-categories ul {
    list-style: none;
}

.widget-categories li {
    margin-bottom: 10px;
}

.widget-categories a {
    display: flex;
    justify-content: space-between;
    color: var(--text-color);
    font-size: 14px;
}

.widget-categories a:hover {
    color: var(--primary-color);
}

.widget-categories .count {
    color: var(--text-light);
    font-size: 12px;
}

/* Tags Widget */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.widget-tags .tag-link {
    font-size: 14px;
    padding: 5px 10px;
}

/* Ad Container */
.ad-container {
    margin: 30px 0;
    text-align: center;
    min-height: 90px;
}

.ad-label {
    display: block;
    font-size: 11px;
    color: var(--text-lighter);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.header-ad {
    margin: 20px 0;
}

/* Sticky Ad */
.sticky-ad {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    display: none;
}

.sticky-ad-close {
    position: absolute;
    top: -25px;
    right: 10px;
    background: var(--bg-dark);
    color: white;
    border: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
}

/* ============================================
   STATIC PAGES STYLES (About, Contact, Privacy, Terms, Disclaimer)
   ============================================ */

/* Page Hero (General) */
.page-hero {
    background: linear-gradient(135deg, #1E3A5F 0%, #2563EB 50%, #10B981 100%);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="white" stroke-width="0.5" opacity="0.1"/></svg>');
    background-size: 100px 100px;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.page-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    backdrop-filter: blur(10px);
}

.page-hero-title {
    font-size: 40px;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 15px;
}

.page-hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Static Page Content */
.static-content {
    padding: 60px 0;
}

.static-container {
    max-width: 800px;
    margin: 0 auto;
}

/* Section Label */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

/* About Page Specific */
.about-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.about-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-stat-number {
    font-size: 36px;
    font-weight: 800;
    color: white;
}

.about-stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.about-section {
    margin-bottom: 50px;
}

.about-section h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-color);
}

.about-section p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.about-card {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 25px;
    transition: all 0.3s;
}

.about-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.about-card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.about-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.about-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
}

/* About Mission */
.about-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 50px;
}

.about-mission-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.about-mission-point {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.about-mission-point svg {
    color: var(--secondary-color);
    flex-shrink: 0;
    margin-top: 3px;
}

.about-mission-point h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
}

.about-mission-point p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 0;
}

/* Contact Page Specific */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
}

.contact-info-card {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px;
}

.contact-info-card h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-info-card > p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.6;
}

.contact-detail-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.contact-detail-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail-item h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 3px;
}

.contact-detail-item p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 0;
}

.contact-form-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-sm);
}

.contact-form-card h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 14px;
    outline: none;
    transition: all 0.3s;
    font-family: var(--font-family);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-success {
    background: #D1FAE5;
    color: #065F46;
    padding: 20px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    text-align: center;
}

.form-error {
    background: #FEE2E2;
    color: #991B1B;
    padding: 20px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    text-align: center;
}

/* Policy Pages (Privacy, Terms, Disclaimer) */
.policy-section {
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid var(--border-color);
}

.policy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.policy-section h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.policy-section h2 .policy-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.policy-section h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 20px 0 10px;
}

.policy-section p {
    margin-bottom: 15px;
    color: var(--text-light);
    line-height: 1.8;
}

.policy-section ul {
    margin: 10px 0 20px 25px;
}

.policy-section li {
    margin-bottom: 8px;
    color: var(--text-light);
    line-height: 1.6;
}

/* CTA Section (About Page) */
.about-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 60px 0;
    text-align: center;
}

.about-cta h2 {
    font-size: 32px;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
}

.about-cta p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.site-footer {
    background: var(--bg-dark);
    color: #D1D5DB;
    margin-top: 50px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding: 50px 0 30px;
}

.footer-logo {
    margin-bottom: 15px;
}

.footer-logo img {
    max-width: 160px;
    height: auto;
}

.footer-widget p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-title {
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #D1D5DB;
    font-size: 14px;
}

.footer-links a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s;
}

.social-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.social-icon:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.newsletter-text {
    font-size: 14px;
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    outline: none;
    font-size: 14px;
}

.newsletter-form input::placeholder {
    color: #9CA3AF;
}

.newsletter-form button {
    padding: 10px 20px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.newsletter-form button:hover {
    background: var(--primary-dark);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
}

.disclaimer {
    margin-top: 10px;
    color: #9CA3AF;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s;
    z-index: 100;
}

.back-to-top svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

.back-to-top.visible {
    display: flex;
}

/* Meta Icon SVG */
.meta-icon-svg {
    flex-shrink: 0;
    color: var(--text-light);
    transition: color 0.3s;
}

.meta-item:hover .meta-icon-svg {
    color: var(--primary-color);
}

/* Search Page */
.search-header {
    padding: 30px 0;
    text-align: center;
}

.search-header h1 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
}

.search-box-large {
    max-width: 600px;
    margin: 50px auto;
    text-align: center;
}

.search-box-large form {
    display: flex;
    gap: 10px;
}

.search-box-large input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 16px;
    outline: none;
}

.search-box-large input:focus {
    border-color: var(--primary-color);
}

.search-box-large button {
    padding: 15px 30px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.popular-searches {
    margin-top: 30px;
}

.popular-searches h3 {
    margin-bottom: 15px;
}

.popular-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.results-count {
    margin-bottom: 20px;
    color: var(--text-light);
}

.no-results {
    text-align: center;
    padding: 50px 0;
}

.no-results h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.popular-categories {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
}

/* Error Pages */
.error-page {
    padding: 80px 0;
    text-align: center;
}

.error-code {
    font-size: 100px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 20px;
}

.error-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.error-message {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.error-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 50px;
}

.popular-articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.popular-article-card {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.popular-article-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.popular-article-card h4 {
    font-size: 14px;
    padding: 10px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-image img {
        height: 300px;
    }
    
    .content-layout {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .category-articles {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .about-mission {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-list {
        position: absolute;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        box-shadow: var(--shadow-lg);
        display: none;
    }
    
    .nav-list.active {
        display: flex;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding-left: 20px;
    }
    
    .search-box input {
        width: 100px;
    }
    
    .hero-title {
        font-size: 28px;
    }
    
    .single-article .article-title {
        font-size: 24px;
    }
    
    .article-grid {
        grid-template-columns: 1fr;
    }
    
    .category-articles {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-widget {
        text-align: center;
    }
    
    .footer-logo {
        display: flex;
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .article-meta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .meta-left,
    .meta-right {
        width: 100%;
        justify-content: space-between;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
    }
    
    .sticky-ad {
        display: block;
    }
    
    .page-hero {
        padding: 40px 0;
    }
    
    .page-hero-title {
        font-size: 28px;
    }
    
    .about-stats {
        gap: 20px;
    }
    
    .about-stat-number {
        font-size: 28px;
    }
    
    .about-section h2 {
        font-size: 24px;
    }
    
    .about-cta h2 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
    }
    
    .hero-excerpt {
        font-size: 16px;
    }
    
    .section-header h2 {
        font-size: 20px;
    }
    
    .article-title {
        font-size: 16px;
    }
    
    .top-bar {
        display: none;
    }
    
    .search-box {
        display: none;
    }
    
    .header-content {
        gap: 10px;
    }
    
    .logo-image {
        width: 150px;
    }
    
    .static-header h1 {
        font-size: 28px;
    }
    
    .search-box-large form {
        flex-direction: column;
    }
    
    .error-code {
        font-size: 70px;
    }
    
    .page-hero-title {
        font-size: 22px;
    }
    
    .page-hero-subtitle {
        font-size: 14px;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
}