    <style>
        /* UNIVERSAL IMAGE SCALING */
        img {
            max-width: 100%;
            height: auto;
        }

        body {
            font-family: Arial, sans-serif;
            margin: 0;
            background: #f7f9fb;
            color: #222;
            line-height: 1.6;
        }

        /* HEADER */
        header {
            background: white;
            padding: 20px 20px 10px;
            border-bottom: 3px solid #0f2f57;

            display: flex;
            align-items: center;
            gap: 20px;
        }

        .logo {
            max-width: 110px;
            height: auto;
        }

        .title-block h1 {
            margin: 0;
            font-size: 34px;
            font-weight: 700;
            color: #0f2f57;
            letter-spacing: 0.5px;
        }

        .title-block p {
            margin: 4px 0 0;
            font-size: 17px;
            color: #3a4a5a;
            opacity: 0.9;
        }

        /* CATEGORY STRIP */
        .category-strip {
            text-align: center;
            padding: 14px 10px 6px;
            background: white;
        }

        .category-strip a {
            text-decoration: none;
            color: #3a4a5a;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 1px;
            margin: 6px 14px;
            display: inline-block;
            transition: opacity 0.2s ease;
        }

        .category-strip a:hover {
            opacity: 0.6;
        }

        .active {
            color: #0f2f57;
            font-weight: 700;
        }

        /* MAIN CONTENT */
        .container {
            max-width: 900px;
            margin: 25px auto;
            background: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 3px 8px rgba(0,0,0,0.1);
        }

        h2 {
            color: #0f2f57;
            margin-top: 0;
            font-size: 26px;
        }

        p {
            margin-bottom: 20px;
        }
				.container h1,
				.container h3 {
						text-align: center;
				}
        /* HERO IMAGE */
        .hero {
            display: block;
            margin: 20px auto;
            width: 400px;   /* PC size */
            height: auto;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.15);
        }

        /* MOBILE */
        @media (max-width: 700px) {
            header {
                flex-direction: column;
                text-align: center;
                gap: 10px;
            }

            .logo {
                max-width: 85px;
            }

            .title-block h1 {
                font-size: 28px;
            }

            .title-block p {
                font-size: 15px;
            }

            .category-strip a {
                margin: 6px 10px;
                font-size: 13px;
            }

            .hero {
                width: 300px;  /* Phone size */
            }
        }
    </style>
