* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a4d2e;
    --secondary-color: #4f8a6d;
    --accent-color: #d4af37;
    --text-dark: #2c3e50;
    --text-light: #5a6c7d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e1e8ed;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
    --shadow-hover: 0 4px 20px rgba(0,0,0,0.15);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.primary-navigation {
    background-color: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-logo img {
    border-radius: 50%;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.hero-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.statistics-panel {
    background-color: var(--bg-white);
    padding: 60px 20px;
}

.statistics-panel h2 {
    text-align: center;
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 15px;
}

.stat-card h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-card p {
    color: var(--text-light);
}

.features-overview {
    padding: 80px 20px;
}

.features-overview h2 {
    text-align: center;
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 50px;
}

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

.feature-box {
    background-color: var(--bg-white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.feature-box:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 20px;
}

.feature-box h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.transparent-block {
    background-color: rgba(248, 249, 250, 0.5);
}

.whitepaper-preview {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.whitepaper-preview .container {
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.preview-content h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.preview-list {
    list-style: none;
    margin: 30px 0;
}

.preview-list li {
    padding: 10px 0;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.cta-secondary {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

.preview-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.recent-insights {
    padding: 80px 20px;
}

.recent-insights h2 {
    text-align: center;
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.blog-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.blog-preview-card {
    background-color: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.blog-preview-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-preview-card h3 {
    padding: 20px 20px 10px;
    color: var(--primary-color);
}

.blog-preview-card p {
    padding: 0 20px 15px;
    color: var(--text-light);
}

.read-more {
    display: inline-block;
    padding: 0 20px 20px;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--primary-color);
}

.view-all-link {
    display: block;
    text-align: center;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 20px;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-button-large {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--text-dark);
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-button-large:hover {
    background-color: #ffd700;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.2);
}

.site-footer {
    background-color: var(--text-dark);
    color: white;
    padding: 60px 20px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    margin-bottom: 20px;
    color: var(--accent-color);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: white;
}

.registration-number {
    font-size: 0.9rem;
    color: #95a5a6;
    margin-top: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    color: #95a5a6;
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    padding: 30px;
    z-index: 9999;
    display: none;
}

.cookie-consent.active {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background-color: var(--primary-color);
    color: white;
}

.cookie-btn.accept:hover {
    background-color: var(--secondary-color);
}

.cookie-btn.decline {
    background-color: #e74c3c;
    color: white;
}

.cookie-btn.decline:hover {
    background-color: #c0392b;
}

.cookie-btn.customize {
    background-color: var(--bg-light);
    color: var(--text-dark);
    border: 2px solid var(--border-color);
}

.cookie-btn.customize:hover {
    background-color: var(--border-color);
}

.cookie-policy-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 0.95rem;
}

.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
}

.whitepaper-intro {
    padding: 80px 20px;
}

.whitepaper-intro .container {
    max-width: 1200px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}

.intro-content h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.whitepaper-intro img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.whitepaper-sections {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.whitepaper-sections h2 {
    text-align: center;
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 60px;
}

.section-block {
    max-width: 1200px;
    margin: 0 auto 60px;
    display: grid;
    grid-template-columns: 80px 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.section-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
}

.section-content h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.section-highlights {
    list-style: none;
    margin-top: 20px;
}

.section-highlights li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.section-highlights li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.section-block img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.key-takeaways {
    padding: 80px 20px;
}

.key-takeaways h2 {
    text-align: center;
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 50px;
}

.takeaways-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.takeaway-card {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
}

.takeaway-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 15px;
}

.takeaway-card h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.cta-disclaimer {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.cta-disclaimer .container {
    max-width: 1200px;
    margin: 0 auto;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 50px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 40px;
}

.cta-box h2 {
    margin-bottom: 15px;
}

.disclaimer-box {
    background-color: #fff3cd;
    border-left: 5px solid #ffc107;
    padding: 30px;
    border-radius: 5px;
}

.disclaimer-box h3 {
    color: #856404;
    margin-bottom: 15px;
}

.disclaimer-box p {
    color: #856404;
    margin-bottom: 15px;
}

.registration-info {
    margin-top: 20px;
    font-weight: 600;
}

.blog-listing {
    padding: 60px 20px;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.blog-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    background-color: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 30px 30px 30px 0;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.blog-category {
    background-color: var(--primary-color);
    color: white;
    padding: 3px 12px;
    border-radius: 3px;
    font-size: 0.85rem;
}

.blog-content h2 {
    margin-bottom: 15px;
}

.blog-content h2 a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-content h2 a:hover {
    color: var(--secondary-color);
}

.read-more-btn {
    display: inline-block;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    margin-top: 10px;
    transition: color 0.3s ease;
}

.read-more-btn:hover {
    color: var(--primary-color);
}

.blog-sidebar-section {
    padding: 60px 20px;
    background-color: var(--bg-light);
}

.blog-sidebar {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    border-radius: 10px;
}

.blog-sidebar h3 {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.sidebar-box {
    background-color: var(--bg-white);
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 25px;
    box-shadow: var(--shadow);
}

.sidebar-box h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.sidebar-link {
    display: inline-block;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    margin-top: 10px;
    transition: color 0.3s ease;
}

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

.stats-list, .topics-list {
    list-style: none;
}

.stats-list li, .topics-list li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.stats-list li:last-child, .topics-list li:last-child {
    border-bottom: none;
}

.mission-section {
    padding: 80px 20px;
}

.mission-section .container {
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: center;
}

.mission-content h2 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 2.2rem;
}

.mission-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.mission-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.values-section {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.values-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 50px;
    font-size: 2.2rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background-color: var(--bg-light);
    padding: 35px;
    border-radius: 10px;
    text-align: center;
}

.value-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 20px;
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.team-section {
    padding: 80px 20px;
}

.team-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 2.2rem;
}

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    color: var(--text-light);
    font-size: 1.1rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-card {
    background-color: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.team-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.team-card h3 {
    padding: 20px 25px 10px;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.team-role {
    padding: 0 25px;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.95rem;
}

.team-bio {
    padding: 15px 25px 25px;
    color: var(--text-light);
    line-height: 1.6;
}

.story-section {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.story-section .container {
    max-width: 1200px;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: center;
}

.story-content h2 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 2.2rem;
}

.story-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.story-section img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.achievements-section {
    padding: 80px 20px;
}

.achievements-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 50px;
    font-size: 2.2rem;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.achievement-item {
    text-align: center;
}

.achievement-item h3 {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.achievement-item p {
    color: var(--text-dark);
    font-size: 1.1rem;
}

.contact-section {
    padding: 60px 20px;
}

.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

.contact-info {
    padding: 40px;
    border-radius: 10px;
}

.contact-info h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
}

.info-block {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-icon {
    font-size: 2rem;
}

.info-block h4 {
    color: var(--primary-color);
    margin-bottom: 8px;
}

.info-block a {
    color: var(--secondary-color);
    text-decoration: none;
}

.info-block a:hover {
    text-decoration: underline;
}

.info-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 5px;
}

.contact-form-wrapper {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-form-wrapper h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.submit-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 14px 32px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.office-hours {
    padding: 80px 20px;
}

.office-hours h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 40px;
    font-size: 2.2rem;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 30px;
}

.hours-item {
    background-color: var(--bg-white);
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
}

.hours-item h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.hours-note {
    text-align: center;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    font-style: italic;
}

.faq-section {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.faq-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 50px;
    font-size: 2.2rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
}

.faq-item h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background-color: white;
    padding: 50px;
    border-radius: 10px;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.modal-icon {
    display: inline-block;
    width: 80px;
    height: 80px;
    background-color: #27ae60;
    color: white;
    font-size: 3rem;
    line-height: 80px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.modal-content h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 2rem;
}

.modal-close-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.modal-close-btn:hover {
    background-color: var(--secondary-color);
}

.blog-post {
    background-color: var(--bg-white);
}

.post-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 60px 20px 40px;
}

.post-header .container {
    max-width: 900px;
}

.post-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.post-reading-time {
    opacity: 0.9;
}

.post-header h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.post-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
    margin-bottom: 40px;
}

.post-featured-image {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.post-content {
    padding: 60px 20px;
}

.post-content .container {
    max-width: 800px;
}

.post-content h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin: 40px 0 20px;
}

.post-content h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin: 30px 0 15px;
}

.post-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.05rem;
}

.post-content ul, .post-content ol {
    margin: 20px 0 20px 30px;
    line-height: 1.8;
}

.post-content li {
    margin-bottom: 10px;
}

.post-navigation {
    background-color: var(--bg-light);
    padding: 40px 20px;
}

.post-navigation .container {
    max-width: 900px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.back-to-blog {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.back-to-blog:hover {
    color: var(--primary-color);
}

.next-prev-posts {
    display: flex;
    gap: 20px;
}

.next-post, .prev-post {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.next-post:hover, .prev-post:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .nav-links {
        gap: 15px;
        font-size: 0.9rem;
    }
    
    .hero-section {
        grid-template-columns: 1fr;
        padding: 40px 20px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .whitepaper-preview .container {
        grid-template-columns: 1fr;
    }
    
    .blog-preview-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .section-block {
        grid-template-columns: 1fr;
    }
    
    .blog-card {
        grid-template-columns: 1fr;
    }
    
    .blog-image img {
        height: 250px;
    }
    
    .blog-content {
        padding: 20px;
    }
    
    .mission-section .container,
    .story-section .container,
    .whitepaper-intro .container {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .post-header h1 {
        font-size: 2rem;
    }
    
    .post-navigation .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .next-prev-posts {
        flex-direction: column;
        text-align: center;
    }
}