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

        body {
            font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            line-height: 1.6;
            color: #333e50;
            background: #ffffff;
        }

        header {
            background: linear-gradient(to bottom, rgba(32, 32, 32, 0.9), rgba(32, 32, 32, 0.7));
            padding: 20px 0;
            position: relative;
        }

        .header-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .logo {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-decoration: none;
        }

        .logo-text {
            font-family: 'Playfair Display', serif;
            font-size: 30px;
            font-weight: 700;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: 0.86px;
        }

        .logo-line {
            display: flex;
            align-items: center;
            width: 100%;
        }

        .logo-line-text {
            font-size: 10px;
            font-weight: 300;
            color: #fff;
            white-space: nowrap;
        }

        .logo-line::before,
        .logo-line::after {
            content: "";
            flex: 1;
            height: 1px;
            background: #fff;
        }

        .logo-above .logo-line-text {
            padding-right: 5px;
        }

        .logo-under .logo-line-text {
            padding-left: 5px;
        }

        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px;
        }

        h1 {
            font-family: 'Playfair Display', serif;
            font-size: 38px;
            font-weight: 700;
            line-height: 1.4;
            color: #111;
            text-align: center;
            margin-bottom: 40px;
        }

        article {
            margin-bottom: 50px;
        }

        article h2 {
            font-family: 'Playfair Display', serif;
            font-size: 28px;
            font-weight: 700;
            color: #111;
            margin: 35px 0 20px;
        }

        article h3 {
            font-size: 22px;
            font-weight: 600;
            color: #111;
            margin: 30px 0 15px;
        }

        article h4 {
            font-size: 18px;
            font-weight: 600;
            color: #111;
            margin: 25px 0 12px;
        }

        article p {
            font-size: 16px;
            line-height: 1.8;
            color: #333e50;
            margin-bottom: 20px;
        }

        article ul,
        article ol {
            margin: 20px 0 20px 30px;
        }

        article li {
            font-size: 16px;
            line-height: 1.8;
            color: #333e50;
            margin-bottom: 10px;
        }

        .transition-section {
            background: #f5f7f9;
            padding: 40px;
            border-radius: 4px;
            margin: 50px 0;
        }

        .transition-section p {
            font-size: 16px;
            line-height: 1.8;
            color: #333e50;
            margin-bottom: 15px;
        }

        .transition-section p:last-child {
            margin-bottom: 0;
        }

        {% if links %}
        .links-section {
            background: #f5f7f9;
            padding: 50px 40px;
            border-radius: 4px;
            margin-top: 50px;
        }

        .links-section h2 {
            font-family: 'Playfair Display', serif;
            font-size: 32px;
            font-weight: 700;
            color: #111;
            margin-bottom: 30px;
            text-align: center;
        }

        .links-section h3 {
            font-size: 22px;
            font-weight: 600;
            color: #111;
            margin: 35px 0 20px;
        }

        .links-section ul {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 12px 30px;
            list-style: none;
            margin: 0 0 40px 0;
        }

        .links-section li {
            margin: 0;
        }

        .links-section a {
            color: #333e50;
            text-decoration: none;
            font-size: 14px;
            line-height: 1.6;
            display: inline-block;
            border-bottom: 2px solid transparent;
            transition: all 0.3s ease;
        }

        .links-section a:hover {
            color: #111;
            border-bottom-color: #ffbf00;
        }
        {% endif %}

        footer {
            background: #f5f7f9;
            padding: 50px 0 30px;
            margin-top: 80px;
        }

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

        .footer-content {
            display: flex;
            justify-content: space-between;
            margin-bottom: 40px;
            flex-wrap: wrap;
            gap: 40px;
        }

        .footer-logo {
            display: flex;
            flex-direction: column;
        }

        .footer-logo-text {
            font-family: 'Playfair Display', serif;
            font-size: 40px;
            font-weight: 700;
            color: #111;
            text-transform: uppercase;
            letter-spacing: 0.86px;
        }

        .footer-logo-line {
            display: flex;
            align-items: center;
        }

        .footer-logo-line-text {
            font-size: 12px;
            font-weight: 300;
            color: #616b78;
            white-space: nowrap;
        }

        .footer-logo-line::before,
        .footer-logo-line::after {
            content: "";
            flex: 1;
            height: 1px;
            background: #dee0e4;
        }

        .footer-logo-above .footer-logo-line-text {
            padding-right: 5px;
        }

        .footer-logo-under .footer-logo-line-text {
            padding-left: 5px;
        }

        .footer-bottom {
            border-top: 1px solid #dee0e4;
            padding-top: 30px;
            text-align: center;
        }

        .footer-copyright {
            font-size: 14px;
            color: #616b78;
        }

        @media (max-width: 1024px) {
            main {
                padding: 40px 20px;
            }

            h1 {
                font-size: 32px;
                margin-bottom: 30px;
            }

            article h2 {
                font-size: 24px;
            }

            article h3 {
                font-size: 20px;
            }

            .transition-section {
                padding: 30px 25px;
            }

            {% if links %}
            .links-section {
                padding: 40px 25px;
            }

            .links-section h2 {
                font-size: 28px;
            }
            {% endif %}

            .footer-logo-text {
                font-size: 32px;
            }
        }

        @media (max-width: 767px) {
            header {
                padding: 15px 0;
            }

            .logo-text {
                font-size: 24px;
            }

            .logo-line-text {
                font-size: 9px;
            }

            main {
                padding: 30px 15px;
            }

            h1 {
                font-size: 24px;
                line-height: 1.4;
                margin-bottom: 25px;
            }

            article h2 {
                font-size: 20px;
                margin: 25px 0 15px;
            }

            article h3 {
                font-size: 18px;
                margin: 20px 0 12px;
            }

            article h4 {
                font-size: 16px;
            }

            article p,
            article li {
                font-size: 15px;
            }

            .transition-section {
                padding: 25px 20px;
                margin: 35px 0;
            }

            .transition-section p {
                font-size: 15px;
            }

            {% if links %}
            .links-section {
                padding: 30px 20px;
                margin-top: 35px;
            }

            .links-section h2 {
                font-size: 22px;
                margin-bottom: 25px;
            }

            .links-section h3 {
                font-size: 18px;
                margin: 25px 0 15px;
            }

            .links-section ul {
                grid-template-columns: 1fr;
                gap: 10px;
            }

            .links-section a {
                font-size: 14px;
            }
            {% endif %}

            footer {
                padding: 40px 0 25px;
                margin-top: 50px;
            }

            .footer-content {
                gap: 30px;
            }

            .footer-logo-text {
                font-size: 28px;
            }

            .footer-logo-line-text {
                font-size: 10px;
            }

            .footer-copyright {
                font-size: 13px;
            }
        }
    