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

        body {
            font-family: 'Oswald', sans-serif;
            font-weight: 300;
            line-height: 1.7;
            color: #333;
            background-color: #f9f9f9;
        }

        .header-wrapper {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

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

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

        h1 {
            font-size: 2.8rem;
            font-weight: 400;
            color: #02826c;
            text-align: center;
            margin: 60px 0 40px;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        article {
            background-color: #fff;
            padding: 50px;
            margin: 0 auto 50px;
            max-width: 900px;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
            border-radius: 2px;
        }

        article p {
            font-size: 1.1rem;
            margin-bottom: 1.5rem;
            color: #555;
            line-height: 1.8;
        }

        article h2 {
            font-size: 2rem;
            font-weight: 400;
            color: #02826c;
            margin: 40px 0 20px;
            letter-spacing: 0.5px;
        }

        article h3 {
            font-size: 1.5rem;
            font-weight: 400;
            color: #333;
            margin: 30px 0 15px;
        }

        article h4 {
            font-size: 1.3rem;
            font-weight: 400;
            color: #555;
            margin: 25px 0 12px;
        }

        article strong,
        article b {
            font-weight: 700;
            color: #02826c;
        }

        .transition-section {
            background-color: #fff;
            padding: 40px 50px;
            margin: 0 auto 50px;
            max-width: 900px;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
            border-radius: 2px;
        }

        .transition-section p {
            font-size: 1.1rem;
            color: #555;
            line-height: 1.8;
            margin-bottom: 1.2rem;
        }

        {% if links %}
        .links-section {
            background-color: #fff;
            padding: 60px 50px;
            margin: 0 auto 60px;
            max-width: 1100px;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
            border-radius: 2px;
        }

        .links-section h3 {
            font-size: 1.8rem;
            font-weight: 400;
            color: #02826c;
            margin-bottom: 25px;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        .links-section ul {
            list-style: none;
            column-count: 2;
            column-gap: 40px;
            margin-bottom: 40px;
        }

        .links-section ul:last-child {
            margin-bottom: 0;
        }

        .links-section li {
            break-inside: avoid;
            margin-bottom: 12px;
        }

        .links-section a {
            color: #02826c;
            text-decoration: none;
            font-size: 1.05rem;
            transition: color 0.3s ease, padding-left 0.3s ease;
            display: inline-block;
            position: relative;
            padding-left: 0;
        }

        .links-section a:hover {
            color: #025a4d;
            padding-left: 8px;
        }

        .links-section a::before {
            content: '→';
            position: absolute;
            left: -20px;
            opacity: 0;
            transition: opacity 0.3s ease, left 0.3s ease;
        }

        .links-section a:hover::before {
            opacity: 1;
            left: -15px;
        }
        {% endif %}

        .footer {
            background-color: #fff;
            border-top: 1px solid #eee;
            padding: 40px 30px 20px;
            margin-top: 80px;
        }

        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
            font-size: 0.95rem;
            color: #777;
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 2rem;
                margin: 40px 20px 30px;
            }

            article,
            .transition-section,
            .links-section {
                padding: 30px 25px;
                margin-bottom: 30px;
            }

            article h2 {
                font-size: 1.6rem;
            }

            article h3 {
                font-size: 1.3rem;
            }

            article p,
            .transition-section p {
                font-size: 1rem;
            }

            .links-section ul {
                column-count: 1;
            }

            .links-section h3 {
                font-size: 1.5rem;
            }

            .container {
                padding: 0 20px;
            }

            .header {
                padding: 15px 20px;
            }
        }

        @media (max-width: 480px) {
            h1 {
                font-size: 1.6rem;
            }

            article,
            .transition-section,
            .links-section {
                padding: 25px 20px;
            }
        }
    