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

/* Base Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background: #fafaf9;
}

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

/* Header */
header {
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2f5233;
    text-decoration: none;
}

nav {
    display: flex;
    gap: 32px;
}

nav a {
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

nav a:hover {
    color: #2f5233;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #2f5233;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2f5233 0%, #3d6b42 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hero .subtitle {
    font-size: 24px;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: inline-flex;
    gap: 16px;
}

/* Framework Section */
.framework-section {
    padding: 60px 0;
}

.framework-intro {
    font-size: 20px;
    font-weight: 500;
    color: #2f5233;
    margin-bottom: 30px;
}

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

.principle-card {
    background: white;
    border: 2px solid #e8f0e9;
    border-radius: 8px;
    padding: 30px;
}

.principle-card h3 {
    color: #2f5233;
    font-size: 22px;
    margin-bottom: 12px;
}

.principle-card p {
    color: #4a5568;
    line-height: 1.6;
}

.step-principle {
    font-style: italic;
    color: #2f5233;
    font-weight: 500;
    margin-top: 20px;
}

/* Principles Section */
.principles-section {
    background: #f8f9fa;
    padding: 60px 0;
}

.principles-section p {
    margin-bottom: 30px;
}

.principles-section strong:first-child {
    color: #2f5233;
    font-size: 20px;
    display: block;
    margin-bottom: 8px;
}

/* Buttons */
.btn {
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background: #fff;
    color: #2f5233;
}

.btn-primary:hover {
    background: #f7fafc;
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
}

/* Intro Section */
.intro-section {
    padding: 80px 0;
    text-align: center;
}

.intro-section h2 {
    font-size: 36px;
    color: #1a202c;
    margin-bottom: 24px;
}

.intro-section p {
    font-size: 20px;
    color: #4a5568;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 40px;
}

/* Featured Content */
.featured-content {
    background: #fff;
    padding: 80px 0;
    border-top: 1px solid #e2e8f0;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 32px;
    color: #1a202c;
    margin-bottom: 12px;
}

.section-header p {
    font-size: 18px;
    color: #718096;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.content-card {
    background: #fafaf9;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: transform 0.2s, box-shadow 0.2s;
}

.content-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.content-card-body {
    padding: 32px;
}

.content-card h3 {
    font-size: 22px;
    color: #2f5233;
    margin-bottom: 12px;
}

.content-card p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 16px;
}

.content-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}
.content-card a {
    color: #2f5233;
    font-weight: 600;
    text-decoration: none;
}

.content-card a:hover {
    text-decoration: underline;
}

/* Key Sections */
.key-sections {
    padding: 80px 0;
}

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

.section-box {
    background: #fff;
    padding: 40px 32px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: transform 0.2s;
}

.section-box:hover {
    transform: translateY(-4px);
}

.section-box h3 {
    font-size: 24px;
    color: #2f5233;
    margin-bottom: 16px;
}

.section-box p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 20px;
}

.section-box a {
    display: inline-block;
    color: #2f5233;
    font-weight: 600;
    text-decoration: none;
}

.section-box a:hover {
    text-decoration: underline;
}

/* Author Section */
.author-section {
    background: #f7f9f7;
    padding: 48px 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    margin: 0;
}

.author-section p {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.8;
    max-width: 740px;
    margin: 0 auto 16px;
}

.author-section p:last-child {
    margin-bottom: 0;
    font-style: italic;
    color: #2f5233;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
}

.faq-group {
    margin-bottom: 60px;
}

.faq-group h2 {
    font-size: 24px;
    color: #2f5233;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e8f0e9;
}

.faq-item {
    margin-bottom: 40px;
}

.faq-item h3 {
    font-size: 20px;
    color: #2d3748;
    margin-bottom: 12px;
}

.faq-item p {
    font-size: 18px;
    line-height: 1.5;
    color: #2d3748;
    margin-bottom: 12px;
}

.faq-cta {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    margin-top: 40px;
}

.faq-cta h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.faq-cta p {
    margin-bottom: 24px;
    color: #4a5568;
}

.faq-cta .btn {
    margin: 0 8px;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, #2f5233 0%, #3d6b42 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.newsletter-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
    font-weight: 700;
}

.newsletter-section p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.email-signup {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    gap: 12px;
}

.email-signup input {
    flex: 1;
    padding: 16px 20px;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    background: #fff;
}

.email-signup button {
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    background: #1a202c;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s;
}

.email-signup button:hover {
    background: #2d3748;
}

/* Footer */
footer {
    background: #1a202c;
    color: #a0aec0;
    padding: 40px 0;
    text-align: center;
}

/* Callout Boxes */
.callout-box {
    background-color: #f8f9f6;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #2f5233;
    margin: 30px 0;
}

.callout-box p {
    margin-bottom: 15px;
}

.callout-box p:last-child {
    margin-bottom: 0;
}

.highlight-text {
    background-color: #fff3cd;
    padding: 2px 6px;
    border-radius: 3px;
}

.closing-statement {
    background-color: #2f5233;
    color: white !important;
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    margin-top: 40px;
}

.closing-statement * {
    color: white !important;
}

.closing-statement p {
    margin-bottom: 15px;
    color: white !important;
}

.closing-statement .lead {
    font-size: 1.3em;
    margin-bottom: 20px;
    color: white !important;
}

.closing-statement p:last-child {
    margin-bottom: 0;
}

/* CTA Section */
.cta-section .btn {
    background: #2f5233;
    color: #fff;
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    margin-top: 24px;
}

/* System Page Specific Styles */
.step-card {
    background: #fff;
    padding: 48px 40px;
    margin-bottom: 40px;
    border-radius: 8px;
    border-left: 5px solid #2f5233;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.step-card:nth-child(even) {
    background: #f8f9f6;
}

.step-number {
    display: inline-block;
    width: 48px;
    height: 48px;
    background: #2f5233;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 48px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.step-card h2 {
    color: #2f5233;
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
}

.step-card p {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 16px;
}

.step-card p:last-child {
    margin-bottom: 0;
}

.step-highlight {
    background: #fff3cd;
    padding: 20px;
    border-radius: 6px;
    margin-top: 24px;
    font-style: italic;
    color: #2d3748;
}

.method-intro {
    background: #fff;
    padding: 60px 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.method-intro p {
    font-size: 20px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 20px;
}

.method-intro p:last-child {
    margin-bottom: 0;
}

.method-intro strong {
    color: #2f5233;
}

.steps-section {
    padding: 80px 0;
}

.key-insight {
    background: linear-gradient(135deg, #2f5233 0%, #3d6b42 100%);
    color: #fff;
    padding: 60px 0;
    margin: 40px 0;
    text-align: center;
}

.key-insight .container {
    max-width: 900px;
}

.key-insight h2 {
    font-size: 32px;
    margin-bottom: 24px;
    font-weight: 700;
}

.key-insight p {
    font-size: 20px;
    line-height: 1.8;
    opacity: 0.95;
}

.cta-section {
    background: #fff;
    padding: 80px 0;
    text-align: center;
    border-top: 1px solid #e2e8f0;
}

.cta-section h3 {
    font-size: 36px;
    color: #1a202c;
    margin-bottom: 24px;
    line-height: 1.3;
}

.cta-section p {
    font-size: 20px;
    color: #4a5568;
    margin-bottom: 16px;
}

/* Single Post Styles */
.single-post {
    background: #fff;
}

.post-header {
    padding: 60px 0 40px;
    border-bottom: 1px solid #e2e8f0;
}

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

.post-header h1 {
    font-size: 42px;
    color: #1a202c;
    line-height: 1.3;
    margin-bottom: 32px;
}

.post-featured-image {
    margin-top: 32px;
}

.post-featured-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.post-content {
    padding: 60px 0;
    position: relative;
    z-index: 2;
    background: #fff;
}

.post-header-wrapper {
    overflow: hidden;
}

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

.post-content p {
    font-size: 18px;
    line-height: 1.5;
    color: #2d3748;
    margin-bottom: 24px;
}

.post-content h2 {
    font-size: 32px;
    color: #1a202c;
    margin-top: 48px;
    margin-bottom: 20px;
}

.post-content h3 {
    font-size: 24px;
    color: #1a202c;
    margin-top: 36px;
    margin-bottom: 16px;
}

.post-content ul,
.post-content ol {
    font-size: 18px;
    line-height: 1.5;
    color: #2d3748;
    margin-bottom: 0;
}

.post-content li {
    margin-bottom: 0;
    padding-left: 20px;
}

.post-footer {
    padding: 40px 0;
    border-top: 1px solid #e2e8f0;
    background: #fff;
}

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

.post-footer a {
    color: #2f5233;
    font-weight: 600;
    text-decoration: none;
}

.post-footer a:hover {
    text-decoration: underline;
}

.post-featured-image {
    position: relative;
    z-index: 1;
}

.post-content {
    position: relative;
    z-index: 2;
    background: #fff;
}

.post-category a {
    color: inherit;
    text-decoration: none;
}
.post-category a:hover {
    text-decoration: underline; /* or whatever hover behavior you want */
}

/* Blog Page Styles */
.featured-post-section {
    padding: 60px 0;
    background: #fff;
    border-bottom: 1px solid #e2e8f0;
}

.featured-post {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.featured-post-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.featured-post-content h2 {
    font-size: 36px;
    color: #1a202c;
    margin-bottom: 16px;
    line-height: 1.3;
}

.featured-post-content h2 a {
    color: #1a202c;
    text-decoration: none;
    transition: color 0.2s;
}

.featured-post-content h2 a:hover {
    color: #2f5233;
}

.post-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    font-size: 14px;
}

.post-category {
    background: #2f5233;
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 600;
}

.post-date {
    color: #718096;
}

.excerpt {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 24px;
}

.read-more {
    color: #2f5233;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}

.read-more:hover {
    color: #3d6b42;
}

/* Recent Posts Grid */
.recent-posts-section {
    padding: 80px 0;
}

.section-title {
    font-size: 32px;
    color: #1a202c;
    margin-bottom: 40px;
    text-align: center;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
}

.post-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: transform 0.2s, box-shadow 0.2s;
}

.post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.post-card-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.post-card-content {
    padding: 24px;
}

.post-card-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.post-card-content h3 a {
    color: #1a202c;
    text-decoration: none;
    transition: color 0.2s;
}

.post-card-content h3 a:hover {
    color: #2f5233;
}

.post-card-content p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 16px;
}

/* Archives Section */
.archives-section {
    padding: 80px 0;
    background: #fff;
    border-top: 1px solid #e2e8f0;
}

.archive-list {
    max-width: 900px;
    margin: 0 auto;
}

.archive-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid #e2e8f0;
}

.archive-item:last-child {
    border-bottom: none;
}

.archive-date {
    color: #718096;
    font-size: 14px;
    font-weight: 600;
}

.archive-content h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.archive-content h4 a {
    color: #1a202c;
    text-decoration: none;
    transition: color 0.2s;
}

.archive-content h4 a:hover {
    color: #2f5233;
}

.archive-excerpt {
    color: #4a5568;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.archive-content .post-category {
    display: inline-block;
    font-size: 12px;
}

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

.post-share {
    background: #f8f9fa;
    padding: 20px 0;
    margin: 20px 0;
}

.post-share h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #2d3748;
}

.share-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: opacity 0.2s;
}

.share-btn:hover {
    opacity: 0.8;
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.pinterest {
    background: #e60023;
}

.share-btn.linkedin {
    background: #0077b5;
}

.share-btn.email {
    background: #6c757d;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid #e2e8f0;
        gap: 16px;
    }
    
    nav.active {
        display: flex;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero .subtitle {
        font-size: 20px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .content-grid,
    .section-boxes {
        grid-template-columns: 1fr;
    }
    
    .email-signup {
        flex-direction: column;
    }
    
    .step-card {
        padding: 32px 24px;
    }
    
    .step-card h2 {
        font-size: 26px;
    }
    
    .featured-post {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .featured-post-image img {
        height: 250px;
    }
    
    .featured-post-content h2 {
        font-size: 28px;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .archive-item {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}