
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background-color: #f5f5f0;
            color: #1a1a1a;
            line-height: 1.6;
        }

        .page-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 24px;
        }

        .back-link {
            margin-bottom: 24px;
        }
        .back-link a {
            color: #539A3F;
            text-decoration: none;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .back-link a:hover {
            color: #3d732d;
        }

        .news-header {
            text-align: center;
            margin-bottom: 32px;
        }
        .news-category {
            display: inline-block;
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #d4a373;
            font-weight: 600;
            margin-bottom: 12px;
        }
        .news-title {
            font-size: 2.2rem;
            font-weight: 700;
            color: #2c3e2f;
            margin-bottom: 16px;
            line-height: 1.3;
        }
        .news-date {
            font-size: 0.85rem;
            color: #999;
            margin-bottom: 24px;
        }

        .featured-image {
            width: 100%;
            height: 450px;
            object-fit: cover;
            border-radius: 24px;
            margin-bottom: 32px;
            background: #e0e0e0;
        }
        .image-placeholder {
            width: 100%;
            height: 450px;
            background: linear-gradient(135deg, #539A3F, #3d732d);
            border-radius: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1rem;
            margin-bottom: 32px;
        }

        .news-content {
            background: white;
            border-radius: 28px;
            padding: 48px 56px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.05);
        }

        .news-content p {
            margin-bottom: 1.2rem;
            color: #333;
            font-size: 1rem;
            line-height: 1.7;
        }
        .news-content h2 {
            font-size: 1.5rem;
            color: #2c3e2f;
            margin: 1.8rem 0 1rem;
            font-weight: 600;
        }
        .news-content h3 {
            font-size: 1.2rem;
            color: #539A3F;
            margin: 1.5rem 0 0.8rem;
            font-weight: 600;
        }
        .quote-block {
            background: #f9f6f0;
            border-left: 4px solid #d4a373;
            padding: 20px 28px;
            margin: 28px 0;
            font-style: italic;
            color: #555;
            border-radius: 0 20px 20px 0;
        }
        .tech-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 20px;
            margin: 24px 0;
        }
        .tech-card {
            background: #f5f5f0;
            padding: 20px;
            border-radius: 20px;
            text-align: center;
        }
        .tech-icon {
            font-size: 2rem;
            margin-bottom: 12px;
        }
        .goal-box {
            background: #e8f3e4;
            padding: 24px;
            border-radius: 20px;
            text-align: center;
            margin: 24px 0;
        }
        .goal-box p {
            margin-bottom: 0.5rem;
            font-weight: 500;
            color: #2c3e2f;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
            margin: 24px 0;
            text-align: center;
        }
        .stat-item {
            background: #f5f5f0;
            padding: 16px;
            border-radius: 16px;
        }
        .stat-number {
            font-size: 1.8rem;
            font-weight: 700;
            color: #539A3F;
        }
        hr {
            margin: 32px 0;
            border: none;
            border-top: 1px solid #eaeaea;
        }
        .footer-note {
            text-align: center;
            margin-top: 48px;
            color: #888;
            font-size: 0.85rem;
        }
        @media (max-width: 768px) {
            .page-container {
                padding: 20px 16px;
            }
            .news-title {
                font-size: 1.6rem;
            }
            .news-content {
                padding: 28px 20px;
            }
            .image-placeholder, .featured-image {
                height: 240px;
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
    