
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
            background-color: #f0f4f8;
            color: #0a2540;
            line-height: 1.5;
        }

        /* main theme: blue & white */
        .container {
            max-width: 1280px;
            margin: 0 auto;
            background-color: white;
            box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08);
        }

        /* header */
        .news-header {
            background: linear-gradient(135deg, #0a2b44 0%, #1a4a7a 100%);
            color: white;
            padding: 2.5rem 2rem;
            text-align: center;
            border-bottom: 4px solid #2d9cdb;
        }

        .news-header .date-tag {
            font-size: 0.95rem;
            opacity: 0.85;
            font-weight: 500;
            margin-top: 0.5rem;
        }

        /* section general */
        .section {
            padding: 2.5rem 2rem;
            border-bottom: 1px solid #e6edf4;
        }

        .section-title {
            font-size: 1.75rem;
            font-weight: 700;
            color: #0a2b44;
            margin-bottom: 1.25rem;
            border-left: 5px solid #2d9cdb;
            padding-left: 1rem;
        }

        .news-text {
            font-size: 1.05rem;
            color: #1e2f3e;
            margin-bottom: 1.25rem;
            text-align: justify;
        }

        /* image wrapper styles (actual photos) */
        .news-image {
            margin: 1.8rem 0 1rem 0;
            text-align: center;
            background: #f9fcff;
            border-radius: 1.5rem;
            padding: 1rem;
            border: 1px solid #d9e6f5;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
        }

        .news-image img {
            max-width: 100%;
            height: auto;
            border-radius: 1rem;
            display: block;
            margin: 0 auto;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
        }

        .img-caption {
            font-size: 0.8rem;
            color: #2c6e9e;
            margin-top: 0.75rem;
            font-weight: 500;
            letter-spacing: 0.3px;
        }

        /* trends & highlights grid */
        .trend-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 1.8rem;
            margin: 1.8rem 0 1rem;
        }

        .trend-card {
            flex: 1;
            min-width: 220px;
            background: #f9fcff;
            border-radius: 1rem;
            padding: 1.25rem;
            border: 1px solid #d9e6f5;
            box-shadow: 0 2px 6px rgba(0,0,0,0.02);
        }

        .trend-card h3 {
            font-size: 1.3rem;
            font-weight: 600;
            color: #0f5c8f;
            margin-bottom: 0.5rem;
        }

        .trend-card p {
            font-size: 0.95rem;
            color: #2c3e4e;
        }

        /* foaming tech highlight */
        .foaming-highlight {
            background: #eef6fc;
            border-radius: 1rem;
            padding: 1.5rem;
            margin: 1.5rem 0 0.5rem;
            border-left: 6px solid #2d9cdb;
        }

        /* CTA section */
        .cta-section {
            background: #0a2b44;
            color: white;
            text-align: center;
            padding: 2.8rem 2rem;
            border-radius: 0 0 2rem 2rem;
            margin-top: 0.5rem;
        }

        .cta-section p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 1.5rem auto;
        }

        .cta-button {
            display: inline-block;
            background-color: #2d9cdb;
            color: white;
            font-weight: 600;
            padding: 0.85rem 2rem;
            border-radius: 40px;
            text-decoration: none;
            font-size: 1rem;
            transition: background 0.2s, transform 0.1s;
            border: none;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }

        .cta-button:hover {
            background-color: #1a7bb3;
            cursor: pointer;
        }

        footer {
            background: #f0f4f8;
            text-align: center;
            padding: 1.5rem;
            font-size: 0.8rem;
            color: #4b6a84;
            border-top: 1px solid #dce5ef;
        }

        @media (max-width: 700px) {
            .section {
                padding: 1.8rem;
            }
            .trend-grid {
                flex-direction: column;
            }
            .section-title {
                font-size: 1.5rem;
            }
            .news-image {
                padding: 0.75rem;
            }
        }

        hr {
            margin: 0.5rem 0;
            border: 0;
            height: 1px;
            background: linear-gradient(to right, #cbdde9, transparent);
        }
    