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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #ffffff;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: white;
    padding: 20px;
    z-index: 1000;
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-buttons button {
    background: #27ae60;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s;
}

.cookie-buttons button:hover {
    background: #229954;
}

.cookie-buttons button:nth-child(2) {
    background: #e67e22;
}

.cookie-buttons button:nth-child(2):hover {
    background: #d35400;
}

.cookie-buttons button:nth-child(3) {
    background: #34495e;
}

.cookie-buttons button:nth-child(3):hover {
    background: #2c3e50;
}

/* Cookie Settings Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1001;
}

.cookie-modal-content {
    background: white;
    padding: 30px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-option {
    margin: 20px 0;
}

.cookie-option label {
    display: flex;
    align-items: center;
    font-weight: bold;
    margin-bottom: 5px;
}

.cookie-option input[type="checkbox"] {
    margin-right: 10px;
}

.cookie-modal-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 20px;
}

.cookie-modal-buttons button {
    background: #27ae60;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.cookie-modal-buttons button:hover {
    background: #229954;
}

/* Header */
.header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c2c2c;
}

.nav-brand i {
    margin-right: 10px;
    color: #27ae60;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #2c2c2c;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #27ae60;
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #2c2c2c;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(255,255,255,0.8);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    background: #27ae60;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}

.cta-button:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.4);
}

.cta-button i {
    margin-right: 10px;
}

/* Sections */
section {
    padding: 80px 0;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c2c2c;
}

h2 i {
    margin-right: 15px;
    color: #27ae60;
}

/* Services Section */
.services {
    background: #f8f9fa;
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-card i {
    font-size: 3rem;
    color: #27ae60;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    text-align: left;
    margin-bottom: 2rem;
}

.stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat i {
    font-size: 2rem;
    color: #27ae60;
    margin-bottom: 0.5rem;
}

.stat h3 {
    font-size: 2rem;
    color: #2c2c2c;
    margin-bottom: 0.5rem;
}

.about-svg {
    width: 100%;
    height: auto;
    max-width: 400px;
}

/* Process Section */
.process {
    background: #f8f9fa;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    position: relative;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #27ae60;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.step i {
    font-size: 2.5rem;
    color: #e67e22;
    margin: 1rem 0;
}

/* Reviews Section */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-left: 4px solid #27ae60;
}

.review-stars {
    color: #f39c12;
    margin-bottom: 1rem;
}

.review-author {
    display: flex;
    align-items: center;
    margin-top: 1rem;
    font-weight: bold;
    color: #2c2c2c;
}

.review-author i {
    margin-right: 10px;
    font-size: 1.5rem;
    color: #27ae60;
}

/* Contact Section */
.contact {
    background: #f8f9fa;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info h3,
.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #2c2c2c;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.contact-item i {
    color: #27ae60;
    margin-right: 15px;
    margin-top: 5px;
    font-size: 1.2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #27ae60;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: background 0.3s, transform 0.3s;
}

.social-links a:hover {
    background: #229954;
    transform: translateY(-2px);
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c2c2c;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #27ae60;
}

.submit-btn {
    background: #27ae60;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: background 0.3s, transform 0.3s;
}

.submit-btn:hover {
    background: #229954;
    transform: translateY(-2px);
}

.submit-btn i {
    margin-right: 10px;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #27ae60;
}

.footer-section h3 i {
    margin-right: 10px;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #27ae60;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .stats {
        justify-content: center;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .stats {
        flex-direction: column;
        align-items: center;
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
}

/* Hidden class for cookie banner */
.hidden {
    display: none !important;
}

/* Article-Specific Styles for Blog Posts */

/* Article Page Layout */
.article-page {
    padding: 120px 0 80px;
    min-height: 100vh;
}

.article-header {
    text-align: center;
    margin-bottom: 3rem;
}

.breadcrumb {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: #5a6c7d;
}

.breadcrumb a {
    color: #27ae60;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb i {
    margin: 0 8px;
    font-size: 0.8rem;
}

.article-header h1 {
    font-size: 2.5rem;
    color: #2c2c2c;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.article-header h1 i {
    color: #27ae60;
    margin-right: 15px;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    font-size: 0.9rem;
    color: #5a6c7d;
    flex-wrap: wrap;
}

.article-meta span {
    display: flex;
    align-items: center;
}

.article-meta i {
    margin-right: 5px;
    color: #27ae60;
}

.article-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.article-intro {
    font-size: 1.2rem;
    color: #2c2c2c;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 3rem;
    border-left: 4px solid #27ae60;
}

/* Table of Contents */
.table-of-contents {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 2rem;
    margin: 3rem 0;
}

.table-of-contents h3 {
    color: #2c2c2c;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.table-of-contents h3 i {
    color: #27ae60;
    margin-right: 10px;
}

.table-of-contents ul {
    list-style: none;
    padding: 0;
}

.table-of-contents li {
    margin: 0.5rem 0;
}

.table-of-contents a {
    color: #2c2c2c;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.table-of-contents a:hover {
    color: #27ae60;
}

/* Article Sections */
.article-content section {
    margin: 3rem 0;
}

.article-content h2 {
    font-size: 2rem;
    color: #2c2c2c;
    margin-bottom: 2rem;
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 0.5rem;
}

.article-content h2 i {
    color: #27ae60;
    margin-right: 10px;
}

.article-content h3 {
    font-size: 1.5rem;
    color: #2c2c2c;
    margin: 2rem 0 1rem 0;
}

.article-content h4 {
    font-size: 1.2rem;
    color: #2c2c2c;
    margin: 1.5rem 0 1rem 0;
}

/* Info Boxes */
.info-box, .tip-box {
    background: #e8f5e8;
    border: 1px solid #27ae60;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
    border-left: 4px solid #27ae60;
}

.info-box h4, .tip-box h4 {
    color: #27ae60;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.info-box h4 i, .tip-box h4 i {
    margin-right: 10px;
}

.warning-box {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
    border-left: 4px solid #ffc107;
}

.warning-box h4 {
    color: #856404;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.warning-box h4 i {
    margin-right: 10px;
}

/* Timeline Styles */
.timeline {
    position: relative;
    margin: 2rem 0;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    position: relative;
}

.timeline-marker {
    background: #27ae60;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 2rem;
    flex-shrink: 0;
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.timeline-content h4 {
    color: #2c2c2c;
    margin-bottom: 0.5rem;
}

/* Process Timeline */
.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.timeline-step {
    display: flex;
    align-items: center;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.timeline-step:hover {
    transform: translateX(10px);
}

.step-number {
    background: #27ae60;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-right: 2rem;
    flex-shrink: 0;
}

.step-content h4 {
    color: #2c2c2c;
    margin-bottom: 0.5rem;
}

/* Checklist Styles */
.checklist {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 2rem;
    margin: 2rem 0;
}

.checklist h4 {
    color: #2c2c2c;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.checklist h4 i {
    color: #27ae60;
    margin-right: 10px;
}

.checklist ul {
    list-style: none;
    padding: 0;
}

.checklist li {
    display: flex;
    align-items: flex-start;
    margin: 1rem 0;
    padding-left: 2rem;
    position: relative;
}

.checklist li::before {
    content: '✓';
    color: #27ae60;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 2px;
}

/* Grid Layouts */
.ownership-grid, .district-grid, .strategy-grid, .mistakes-grid, .analysis-grid, .factors-grid {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

.ownership-grid, .analysis-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

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

.strategy-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.mistakes-grid, .factors-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* Card Styles */
.ownership-card, .district-card, .strategy-card, .mistake-card, .analysis-card, .factor-card, .legal-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.ownership-card:hover, .district-card:hover, .strategy-card:hover, .mistake-card:hover, .analysis-card:hover, .factor-card:hover, .legal-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
}

.ownership-card i, .mistake-card i, .analysis-card i, .factor-card i, .legal-card i {
    font-size: 2rem;
    color: #27ae60;
    margin-bottom: 1rem;
    display: block;
}

.strategy-card {
    text-align: center;
    border-top: 4px solid #27ae60;
}

.strategy-number {
    background: #27ae60;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.district-card.premium {
    border-top: 4px solid #e74c3c;
}

.district-card.emerging {
    border-top: 4px solid #f39c12;
}

.district-card.balanced {
    border-top: 4px solid #16a085;
}

.district-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.district-header h3 {
    margin: 0;
    color: #2c2c2c;
}

.price-range, .price-tag {
    background: #27ae60;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

/* Decision Matrix */
.decision-matrix {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin: 2rem 0;
}

.buyer-type {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.buyer-type h4 {
    color: #2c2c2c;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.buyer-type h4 i {
    color: #27ae60;
    margin-right: 10px;
}

.recommendations {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.rec-item {
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #27ae60;
}

/* Pro Tips */
.pro-tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.tip-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.tip-item:hover {
    transform: translateY(-5px);
}

.tip-item i {
    font-size: 2rem;
    color: #27ae60;
    margin-bottom: 1rem;
    display: block;
}

.tip-item h4 {
    color: #2c2c2c;
    margin-bottom: 1rem;
}

/* Legal Points */
.legal-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Financial Overview */
.financial-overview {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.cost-breakdown table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.cost-breakdown table th,
.cost-breakdown table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #dee2e6;
}

.cost-breakdown table th {
    background: #e9ecef;
    font-weight: bold;
    color: #2c2c2c;
}

/* Equity Guide */
.equity-guide {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.equity-option {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
}

.equity-option h4 {
    color: #2c2c2c;
    margin-bottom: 1rem;
}

/* KfW Programs */
.kfw-programs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.program-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    border-top: 4px solid #27ae60;
}

.program-card h4 {
    color: #2c2c2c;
    margin-bottom: 1rem;
}

.program-details p {
    margin: 0.5rem 0;
}

.kfw-tip {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 2rem 0;
    border-left: 4px solid #ffc107;
}

.kfw-tip h4 {
    color: #856404;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.kfw-tip h4 i {
    margin-right: 10px;
}

/* Calculation Example */
.calculation-example {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.calculation-example h4 {
    color: #2c2c2c;
    margin-bottom: 2rem;
    text-align: center;
}

.comparison-table {
    overflow-x: auto;
    margin: 2rem 0;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid #dee2e6;
}

.comparison-table th {
    background: #2c2c2c;
    color: white;
    font-weight: bold;
}

.comparison-table .good-deal {
    background: #e8f5e8;
}

.comparison-table .bad-deal {
    background: #ffeaa7;
}

.comparison-table .savings {
    background: #d1ecf1;
    font-weight: bold;
}

.calculation-note {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem;
    background: #e8f5e8;
    border-radius: 8px;
    border: 2px solid #27ae60;
}

.calculation-note p {
    color: #27ae60;
    font-size: 1.2rem;
    margin: 0;
}

/* Market Analysis */
.market-analysis {
    margin: 2rem 0;
}

.forecast-box {
    background: #e3f2fd;
    border: 1px solid #2196f3;
    border-radius: 8px;
    padding: 2rem;
    margin-top: 2rem;
    border-left: 4px solid #2196f3;
}

.forecast-box h4 {
    color: #1976d2;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.forecast-box h4 i {
    margin-right: 10px;
}

.forecast-box ul {
    list-style: none;
    padding: 0;
}

.forecast-box li {
    margin: 1rem 0;
    padding: 0.5rem 0;
    border-bottom: 1px solid #bbdefb;
}

/* Comprehensive Checklist */
.checklist-comprehensive {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.checklist-section {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.checklist-section h4 {
    color: #2c2c2c;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e9ecef;
}

.checklist-section ul {
    list-style: none;
    padding: 0;
}

.checklist-section li {
    display: flex;
    align-items: flex-start;
    margin: 1rem 0;
    padding-left: 2rem;
    position: relative;
}

.checklist-section li::before {
    content: '✓';
    color: #27ae60;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 2px;
}

/* Article Navigation */
.article-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 4rem 0;
    padding: 2rem 0;
    border-top: 2px solid #e9ecef;
}

.article-navigation .nav-button {
    display: flex;
    align-items: center;
    padding: 1rem 2rem;
    background: #f8f9fa;
    color: #2c2c2c;
    text-decoration: none;
    border-radius: 10px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    font-weight: 500;
}

.article-navigation .nav-button:hover {
    background: #27ae60;
    color: white;
    border-color: #27ae60;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(39, 174, 96, 0.3);
}

.article-navigation .nav-button i {
    margin-right: 10px;
    font-size: 1.1rem;
}

.article-navigation .nav-button:last-child i {
    margin-left: 10px;
    margin-right: 0;
}

.article-navigation .nav-button span {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Article CTA */
.article-cta {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    margin: 4rem 0;
}

.article-cta h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.article-cta p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

.article-cta .cta-button {
    background: white;
    color: #27ae60;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s;
}

.article-cta .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.article-cta .cta-button i {
    margin-right: 10px;
}

/* Additional Article Responsive Design */
@media (max-width: 768px) {
    .article-header h1 {
        font-size: 2rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .equity-guide {
        grid-template-columns: 1fr;
    }
    
    .decision-matrix {
        grid-template-columns: 1fr;
    }
    
    .ownership-grid, .strategy-grid, .mistakes-grid, .analysis-grid, .factors-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .article-content {
        padding: 0 1rem;
    }
    
    .article-intro {
        padding: 1.5rem;
    }
    
    .table-of-contents {
        padding: 1.5rem;
    }
    
    .article-navigation {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .article-navigation .nav-button {
        width: 100%;
        justify-content: center;
    }
}