:root {
    --primary-green: #1b5e20;
    --primary-green-light: #2e7d32;
    --solar-gold: #f9a825;
    --solar-gold-light: #fdd835;
    --accent-white: #ffffff;
    --accent-cream: #f5f5f0;
    --text-light: #e0e0e0;
    --text-muted: #9e9e9e;
    --glass-bg: rgba(255,255,255,0.06);
    --glass-border: rgba(255,255,255,0.1);
    --shadow-gold: 0 0 30px rgba(249,168,37,0.25);
    --shadow-green: 0 0 30px rgba(27,94,32,0.35);
    --font-heading: 'Cinzel', 'Playfair Display', serif;
    --font-body: 'Poppins', 'Inter', sans-serif;
    /* Indian Flag Colors */
    --indian-saffron: #FF9933;
    --indian-white: #FFFFFF;
    --indian-green: #138808;
    --indian-blue: #000080;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh;
}

.container { width: 92%; max-width: 1280px; margin: 0 auto; }

/* Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    gap: 0.5rem; padding: 0.85rem 2rem; border-radius: 50px;
    font-family: var(--font-body); font-weight: 600; font-size: 0.95rem;
    text-decoration: none; border: none; cursor: pointer; transition: all 0.3s ease;
    letter-spacing: 0.02em;
}
.btn-gold {
    background: linear-gradient(135deg, var(--solar-gold), #e65100);
    color: #1a1a1a; box-shadow: var(--shadow-gold);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(249,168,37,0.4); }
.btn-outline {
    background: transparent; color: var(--accent-white);
    border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--solar-gold); }
.btn-green {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
    color: #fff; box-shadow: var(--shadow-green);
}
.btn-sm { padding: 0.55rem 1.3rem; font-size: 0.85rem; }
.btn-block { width: 100%; }

/* Header */
.main-header {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    background: rgba(10,10,10,0.75);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.4s ease;
}
.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: 0.6rem 3%; max-width: 1600px; margin: 0 auto;
}
.logo-link { display: flex; align-items: center; gap: 0.8rem; text-decoration: none; }
.logo-img { height: 48px; width: auto; filter: drop-shadow(0 0 6px rgba(249,168,37,0.3)); }
.logo-title { display: block; font-family: var(--font-heading); font-size: 1.3rem; color: var(--solar-gold); letter-spacing: 1px; }
.logo-tagline { display: block; font-size: 0.6rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1.5px; }

.nav-list { display: flex; list-style: none; gap: 0.3rem; }
.nav-link {
    color: var(--text-light); text-decoration: none; font-size: 0.82rem;
    font-weight: 500; padding: 0.5rem 0.85rem; border-radius: 6px; transition: all 0.3s ease;
    position: relative;
}
.nav-link::after {
    content: ''; position: absolute; bottom: 2px; left: 50%; transform: translateX(-50%);
    width: 0; height: 2px; background: var(--solar-gold); border-radius: 2px; transition: width 0.3s ease;
}
.nav-link:hover, .nav-link.active { color: var(--solar-gold); }
.nav-link:hover::after, .nav-link.active::after { width: 60%; }
.admin-link { color: var(--solar-gold); font-weight: 700; }

.header-actions { display: flex; align-items: center; gap: 0.6rem; }
.mobile-menu-toggle {
    display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer;
}
.mobile-menu-toggle span { display: block; width: 25px; height: 2px; background: var(--accent-white); transition: 0.3s; }

/* Hero */
.hero-section {
    position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.hero-bg-video, .hero-bg-slider {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.5), rgba(10,30,10,0.85));
    z-index: 1;
}
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 900px; padding: 2rem; }
.hero-tag {
    display: inline-block; padding: 0.4rem 1.2rem; border-radius: 50px;
    background: rgba(249,168,37,0.15); border: 1px solid rgba(249,168,37,0.3);
    color: var(--solar-gold); font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 2px;
    margin-bottom: 1.5rem; backdrop-filter: blur(8px);
}
.hero-title {
    font-family: var(--font-heading); font-size: clamp(2rem, 5vw, 3.8rem);
    color: var(--accent-white); line-height: 1.15; margin-bottom: 1.2rem;
    text-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.hero-title span { color: var(--solar-gold); }
.hero-subtitle {
    font-size: 1.1rem; color: var(--text-light); opacity: 0.9; max-width: 700px;
    margin: 0 auto 2.5rem; line-height: 1.7;
}
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-highlights {
    display: flex; gap: 2rem; justify-content: center; margin-top: 3rem; flex-wrap: wrap;
}
.hero-highlight-item {
    display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: var(--text-muted);
}
.hero-highlight-item i { color: var(--solar-gold); font-size: 1.1rem; }

/* Swiper Hero */
.swiper-hero { width: 100%; height: 100%; position: absolute; inset: 0; }
.swiper-hero .swiper-slide img { width: 100%; height: 100%; object-fit: cover; }
.swiper-hero .swiper-pagination-bullet { background: rgba(255,255,255,0.4); opacity: 1; }
.swiper-hero .swiper-pagination-bullet-active { background: var(--solar-gold); }

/* Sections */
.section { padding: 6rem 0; position: relative; }
.section-title {
    font-family: var(--font-heading); font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: var(--accent-white); text-align: center; margin-bottom: 0.8rem;
}
.section-subtitle { text-align: center; color: var(--text-muted); margin-bottom: 3rem; font-size: 1rem; }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 4rem; }

/* Glass Cards */
.glass-card {
    background: var(--glass-bg); border: 1px solid var(--glass-border);
    border-radius: 20px; padding: 2.2rem; backdrop-filter: blur(12px);
    transition: all 0.4s ease; position: relative; overflow: hidden;
}
.glass-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--solar-gold));
    opacity: 0; transition: opacity 0.4s ease;
}
.glass-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.3); border-color: rgba(255,255,255,0.2); }
.glass-card:hover::before { opacity: 1; }

/* Stats Counter */
.stats-section {
    background: linear-gradient(135deg, rgba(27,94,32,0.15), rgba(249,168,37,0.08));
    border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border);
}
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; }
.stat-item { text-align: center; padding: 1.5rem; }
.stat-number {
    font-family: var(--font-heading); font-size: 2.8rem; color: var(--solar-gold);
    display: block; margin-bottom: 0.3rem;
}
.stat-label { font-size: 0.9rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

/* Projects Grid */
.projects-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.project-card { position: relative; border-radius: 20px; overflow: hidden; }
.project-card-img { width: 100%; height: 240px; object-fit: cover; transition: transform 0.6s ease; }
.project-card:hover .project-card-img { transform: scale(1.08); }
.project-card-body { padding: 1.8rem; background: linear-gradient(to top, rgba(10,10,10,0.95), rgba(20,20,20,0.9)); }
.project-card-category {
    display: inline-block; padding: 0.3rem 0.9rem; border-radius: 50px;
    background: rgba(249,168,37,0.12); color: var(--solar-gold); font-size: 0.72rem;
    font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.8rem;
}
.project-card-title { font-family: var(--font-heading); font-size: 1.2rem; color: var(--accent-white); margin-bottom: 0.6rem; }
.project-card-text { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; margin-bottom: 1.2rem; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.2rem; }
.gallery-item { position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 4/3; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item-overlay {
    position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    display: flex; align-items: flex-end; padding: 1.5rem; opacity: 0; transition: opacity 0.4s ease;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }

/* Crowdfunding */
.campaign-card { border-radius: 20px; overflow: hidden; background: rgba(255,255,255,0.03); border: 1px solid var(--glass-border); }
.campaign-card-img { height: 200px; width: 100%; object-fit: cover; }
.campaign-card-body { padding: 1.5rem; }
.campaign-progress { height: 6px; background: rgba(255,255,255,0.1); border-radius: 10px; overflow: hidden; margin: 1rem 0; }
.campaign-progress-bar { height: 100%; background: linear-gradient(90deg, var(--primary-green), var(--solar-gold)); border-radius: 10px; }

/* Founder Timeline */
.timeline { position: relative; padding-left: 2rem; }
.timeline::before { content: ''; position: absolute; left: 6px; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--solar-gold), var(--primary-green)); }
.timeline-item { position: relative; padding-bottom: 2.5rem; }
.timeline-item::before { content: ''; position: absolute; left: -1.55rem; top: 4px; width: 14px; height: 14px; border-radius: 50%; background: var(--solar-gold); border: 3px solid var(--primary-green); box-shadow: 0 0 0 4px rgba(249,168,37,0.2); }
.timeline-year { font-family: var(--font-heading); color: var(--solar-gold); font-size: 0.9rem; margin-bottom: 0.3rem; }
.timeline-title { color: var(--accent-white); font-weight: 600; margin-bottom: 0.4rem; }
.timeline-desc { color: var(--text-muted); font-size: 0.9rem; }

/* Forms */
.form-group { margin-bottom: 1.4rem; }
.form-label { display: block; margin-bottom: 0.4rem; font-size: 0.85rem; color: var(--text-light); font-weight: 500; }
.form-control {
    width: 100%; padding: 0.85rem 1.1rem; background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border); border-radius: 12px; color: var(--accent-white);
    font-family: var(--font-body); font-size: 0.95rem; transition: all 0.3s ease;
}
.form-control:focus { outline: none; border-color: var(--solar-gold); background: rgba(255,255,255,0.08); box-shadow: 0 0 0 3px rgba(249,168,37,0.1); }
.form-control::placeholder { color: rgba(255,255,255,0.3); }
textarea.form-control { min-height: 130px; resize: vertical; }

/* Auth Pages */
.auth-section { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 6rem 1rem; }
.auth-card {
    width: 100%; max-width: 480px; background: var(--glass-bg);
    border: 1px solid var(--glass-border); border-radius: 24px;
    padding: 2.5rem; backdrop-filter: blur(20px);
}
.auth-card h2 { font-family: var(--font-heading); color: var(--accent-white); text-align: center; margin-bottom: 0.3rem; }
.auth-card p { text-align: center; color: var(--text-muted); margin-bottom: 2rem; }

/* Chatbot */
.chatbot-widget { position: fixed; bottom: 25px; right: 25px; z-index: 9999; }
.chatbot-toggle {
    width: 60px; height: 60px; border-radius: 50%; border: none;
    background: linear-gradient(135deg, var(--primary-green), var(--solar-gold));
    color: #fff; font-size: 1.4rem; cursor: pointer; box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    display: flex; align-items: center; justify-content: center; gap: 0.3rem; padding: 0; transition: transform 0.3s ease;
}
.chatbot-toggle:hover { transform: scale(1.08); }
.chatbot-label { display: none; font-size: 0.75rem; }
.chatbot-panel {
    position: absolute; bottom: 75px; right: 0; width: 360px; max-height: 500px;
    background: rgba(15,15,20,0.95); border: 1px solid var(--glass-border); border-radius: 20px;
    backdrop-filter: blur(20px); display: none; flex-direction: column; overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.chatbot-panel.open { display: flex; }
.chatbot-header {
    padding: 1rem 1.2rem; background: linear-gradient(90deg, rgba(27,94,32,0.5), rgba(249,168,37,0.2));
    border-bottom: 1px solid var(--glass-border); display: flex; align-items: center; gap: 0.8rem;
}
.chatbot-avatar { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: var(--solar-gold); font-size: 1.1rem; }
.chatbot-info h5 { font-size: 0.95rem; color: var(--accent-white); }
.chatbot-status { font-size: 0.7rem; color: var(--text-muted); display: flex; align-items: center; gap: 0.3rem; }
.status-dot { width: 7px; height: 7px; border-radius: 50%; background: #4caf50; animation: pulse 2s infinite; }
@keyframes pulse { 0% { opacity: 1; } 50% { opacity: 0.4; } 100% { opacity: 1; } }
.chatbot-close { margin-left: auto; background: none; border: none; color: var(--text-muted); cursor: pointer; font-size: 1rem; }
.chatbot-messages { flex: 1; padding: 1rem; overflow-y: auto; display: flex; flex-direction: column; gap: 0.8rem; }
.message { max-width: 85%; padding: 0.8rem 1rem; border-radius: 14px; font-size: 0.88rem; line-height: 1.5; }
.bot-message { align-self: flex-start; background: rgba(27,94,32,0.25); border: 1px solid rgba(27,94,32,0.3); color: var(--text-light); }
.user-message { align-self: flex-end; background: rgba(249,168,37,0.15); border: 1px solid rgba(249,168,37,0.25); color: var(--accent-white); }
.chatbot-input-area { padding: 0.8rem 1rem; border-top: 1px solid var(--glass-border); display: flex; gap: 0.5rem; align-items: center; }
.chat-lang-select { background: rgba(255,255,255,0.05); border: 1px solid var(--glass-border); border-radius: 8px; color: var(--text-light); padding: 0.4rem; font-size: 0.75rem; }
#chatInput { flex: 1; background: rgba(255,255,255,0.05); border: 1px solid var(--glass-border); border-radius: 10px; padding: 0.5rem 0.8rem; color: var(--accent-white); font-size: 0.85rem; }
#chatSend { width: 36px; height: 36px; border-radius: 50%; border: none; background: var(--solar-gold); color: #1a1a1a; cursor: pointer; display: flex; align-items: center; justify-content: center; }

/* Background Customizer */
.bg-customizer { position: fixed; bottom: 100px; right: 25px; z-index: 9998; }
.bg-customizer-toggle { width: 44px; height: 44px; border-radius: 50%; border: none; background: rgba(255,255,255,0.08); border: 1px solid var(--glass-border); color: var(--solar-gold); cursor: pointer; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; }
.bg-customizer-toggle:hover { background: rgba(255,255,255,0.15); }
.bg-customizer-panel {
    position: absolute; bottom: 55px; right: 0; width: 220px; background: rgba(15,15,20,0.97);
    border: 1px solid var(--glass-border); border-radius: 16px; padding: 1.2rem;
    backdrop-filter: blur(20px); display: none; box-shadow: 0 15px 50px rgba(0,0,0,0.4);
}
.bg-customizer-panel.open { display: block; }
.bg-customizer-panel h6 { color: var(--accent-white); font-size: 0.85rem; margin-bottom: 0.8rem; }
.color-presets { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1rem; }
.color-preset { width: 28px; height: 28px; border-radius: 50%; border: 2px solid transparent; cursor: pointer; transition: transform 0.2s; }
.color-preset:hover { transform: scale(1.15); }
.color-preset.active { border-color: var(--solar-gold); }
#customBgColor { width: 100%; height: 36px; border: none; border-radius: 8px; cursor: pointer; margin-top: 0.3rem; }

/* Footer */
.main-footer { border-top: 1px solid var(--glass-border); background: rgba(0,0,0,0.4); }
.footer-top { padding: 4rem 0 3rem; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 3rem; }
.footer-logo { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 1rem; }
.footer-logo-img { height: 42px; }
.footer-logo h3 { font-family: var(--font-heading); color: var(--solar-gold); font-size: 1.2rem; }
.footer-about p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.2rem; }
.social-links { display: flex; gap: 0.7rem; }
.social-links a {
    width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.06);
    border: 1px solid var(--glass-border); display: flex; align-items: center; justify-content: center;
    color: var(--text-light); font-size: 0.9rem; transition: all 0.3s ease; text-decoration: none;
}
.social-links a:hover { background: var(--solar-gold); color: #1a1a1a; border-color: var(--solar-gold); transform: translateY(-3px); }
.footer-col h4 { color: var(--accent-white); font-size: 1rem; margin-bottom: 1.2rem; font-weight: 600; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { color: var(--text-muted); text-decoration: none; font-size: 0.9rem; transition: color 0.3s; }
.footer-col ul li a:hover { color: var(--solar-gold); }
.contact-info li { display: flex; align-items: flex-start; gap: 0.6rem; color: var(--text-muted); font-size: 0.9rem; }
.contact-info li i { color: var(--solar-gold); margin-top: 0.2rem; font-size: 0.85rem; }
.footer-bottom { border-top: 1px solid var(--glass-border); padding: 1.5rem 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; color: var(--text-muted); font-size: 0.8rem; }
.footer-bottom-inner a { color: var(--text-muted); text-decoration: none; }
.footer-bottom-inner a:hover { color: var(--solar-gold); }

/* Responsive */
@media (max-width: 992px) {
    .main-nav { display: none; position: fixed; top: 70px; left: 0; width: 100%; background: rgba(10,10,10,0.97); padding: 1.5rem; }
    .main-nav.open { display: block; }
    .nav-list { flex-direction: column; gap: 0.5rem; }
    .mobile-menu-toggle { display: flex; }
    .hero-title { font-size: 2.2rem; }
    .chatbot-panel { width: 90vw; right: -10px; }
}
@media (max-width: 576px) {
    .header-inner { padding: 0.5rem 4%; }
    .logo-tagline { display: none; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .btn { width: 100%; max-width: 280px; }
}

/* Admin Dashboard Base Styles */
.admin-sidebar { width: 260px; background: rgba(0,0,0,0.4); border-right: 1px solid var(--glass-border); min-height: 100vh; position: fixed; left: 0; top: 0; padding-top: 80px; }
.admin-content { margin-left: 260px; padding: 2rem; }
.admin-nav { list-style: none; padding: 1rem; }
.admin-nav li { margin-bottom: 0.3rem; }
.admin-nav a { display: flex; align-items: center; gap: 0.7rem; padding: 0.7rem 1rem; color: var(--text-muted); text-decoration: none; border-radius: 10px; transition: all 0.3s; font-size: 0.9rem; }
.admin-nav a:hover, .admin-nav a.active { background: rgba(249,168,37,0.1); color: var(--solar-gold); }
.table-responsive { overflow-x: auto; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th, .admin-table td { padding: 0.9rem 1rem; text-align: left; border-bottom: 1px solid var(--glass-border); font-size: 0.9rem; }
.admin-table th { color: var(--solar-gold); font-weight: 600; background: rgba(255,255,255,0.02); }
.admin-table td { color: var(--text-light); }
.badge { display: inline-block; padding: 0.25rem 0.7rem; border-radius: 50px; font-size: 0.72rem; font-weight: 600; }
.badge-success { background: rgba(76,175,80,0.15); color: #4caf50; }
.badge-warning { background: rgba(255,193,7,0.15); color: #ffc107; }
.badge-danger { background: rgba(244,67,54,0.15); color: #f44336; }
.badge-info { background: rgba(33,150,243,0.15); color: #2196f3; }

/* Indian Flag Theme Classes */
.theme-saffron .section-title { color: var(--indian-saffron); }
.theme-saffron .btn-gold { background: linear-gradient(135deg, var(--indian-saffron), #e65100); }
.theme-green .section-title { color: var(--indian-green); }
.theme-green .btn-gold { background: linear-gradient(135deg, var(--indian-green), #0d5c00); }
.theme-tricolor .section-title { background: linear-gradient(90deg, var(--indian-saffron), var(--indian-white), var(--indian-green)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.theme-tricolor .btn-gold { background: linear-gradient(135deg, var(--indian-saffron), var(--indian-green)); }

/* Indian Map Background Watermark */
.india-map-bg {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none; z-index: 0; opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 140'%3E%3Cpath d='M45,5 L50,2 L55,5 L58,12 L62,18 L65,25 L68,32 L70,40 L72,48 L74,55 L76,62 L78,70 L80,78 L82,85 L84,92 L85,100 L84,108 L82,115 L80,122 L78,128 L75,133 L70,136 L65,138 L60,137 L55,135 L50,132 L45,130 L40,128 L35,125 L30,122 L28,115 L26,108 L25,100 L26,92 L28,85 L30,78 L32,70 L34,62 L36,55 L38,48 L40,40 L42,32 L44,25 L45,18 L45,12 Z' fill='%23FF9933'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: center; background-size: 500px auto;
}

/* Gallery hover reveal */
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover .gallery-hover-reveal { transform: translateY(0) !important; }

/* Blog post content styling */
.blog-content p { margin-bottom: 1.2rem; }
.blog-content h2, .blog-content h3 { color: var(--solar-gold); font-family: var(--font-heading); margin: 1.5rem 0 0.8rem; }
.blog-content ul { margin-left: 1.5rem; color: var(--text-muted); }
.blog-content strong { color: var(--accent-white); }
