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

        body {
            font-family: 'Georgia', serif;
            font-size: 16px;
            line-height: 1.6;
            color: #333;
            background-color: #fff;
        }

        .wrapper {
            max-width: 1170px;
            margin: 0 auto;
            padding: 0 15px;
        }

        header {
            background-color: #fff;
            padding: 20px 0;
            border-bottom: 3px solid #FF7753;
        }

        .logo {
            font-family: 'CartoGothicStd', Arial, sans-serif;
            font-size: 28px;
            color: #333;
            text-transform: uppercase;
            font-weight: normal;
        }

        nav {
            background-color: #f6f6f6;
            padding: 15px 0;
            margin-bottom: 30px;
        }

        nav ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
        }

        nav ul li {
            display: inline-block;
        }

        nav ul li a {
            color: #333;
            text-decoration: none;
            padding: 10px 15px;
            display: block;
            font-size: 16px;
            transition: all 0.3s ease;
            border-bottom: 3px solid transparent;
        }

        nav ul li a:hover {
            color: #FF7753;
            border-bottom-color: #FF7753;
        }

        main {
            padding: 40px 0;
        }

        h1 {
            font-family: 'CartoGothicStd', Arial, sans-serif;
            font-size: 36px;
            color: #333;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 3px double #e5e5e5;
            font-weight: normal;
        }

        article {
            margin-bottom: 40px;
            text-align: justify;
        }

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

        article h2,
        article h3,
        article h4 {
            font-family: 'CartoGothicStd', Arial, sans-serif;
            margin: 25px 0 15px;
            color: #333;
            font-weight: normal;
        }

        article h2 {
            font-size: 30px;
        }

        article h3 {
            font-size: 24px;
        }

        article h4 {
            font-size: 20px;
        }

        .transition-section {
            background-color: #f6f6f6;
            padding: 30px;
            margin: 40px 0;
            border-left: 5px solid #FF7753;
        }

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

        {% if links %}
        .links-section {
            background-color: #fbfbfb;
            border: 1px solid #ebebeb;
            border-top: 5px solid #FF7753;
            padding: 40px 30px;
            margin: 40px 0;
        }

        .links-section h3 {
            font-family: 'CartoGothicStd', Arial, sans-serif;
            font-size: 22px;
            color: #333;
            margin-bottom: 15px;
            font-weight: normal;
        }

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

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

        .links-section ul li a {
            color: #FF7753;
            text-decoration: none;
            font-size: 15px;
            line-height: 1.8;
            transition: color 0.3s ease;
        }

        .links-section ul li a:hover {
            color: #333;
            text-decoration: underline;
        }
        {% endif %}

        footer {
            background-color: #1c1c1b;
            color: #fff;
            padding: 30px 0;
            margin-top: 60px;
            border-top: 1px solid #111110;
        }

        footer p {
            text-align: center;
            font-size: 14px;
            color: #ccc;
        }

        footer a {
            color: #FF7753;
            text-decoration: none;
        }

        footer a:hover {
            color: #fff;
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 28px;
            }

            article h2 {
                font-size: 24px;
            }

            article h3 {
                font-size: 20px;
            }

            nav ul {
                flex-direction: column;
                align-items: center;
            }

            nav ul li {
                width: 100%;
                text-align: center;
            }

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

            .transition-section {
                padding: 20px;
            }

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

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

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