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

        body {
            font-family: Arial, Verdana, sans-serif;
            background-color: #FFF1E3;
            color: #782800;
            line-height: 1.6;
        }

        header {
            background-color: #C46200;
            padding: 10px 0;
            text-align: center;
        }

        header img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        .site-title {
            background-color: #FFF1E3;
            padding: 30px 20px;
            text-align: center;
        }

        .site-title h1 {
            font-size: 48px;
            color: #782800;
            letter-spacing: 8px;
            margin-bottom: 10px;
            font-weight: bold;
        }

        .site-title .subtitle {
            font-size: 18px;
            color: #782800;
            letter-spacing: 3px;
            font-weight: bold;
        }

        .contact-bar {
            background-color: #C46200;
            padding: 15px 20px;
            text-align: center;
            color: #E7FFFF;
            font-weight: bold;
        }

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

        .content-wrapper {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
        }

        .main-content {
            flex: 1;
            min-width: 300px;
        }

        .main-content h1 {
            font-size: 32px;
            color: #782800;
            margin-bottom: 20px;
            font-weight: bold;
        }

        article {
            background-color: #fff;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(120, 40, 0, 0.1);
            margin-bottom: 30px;
        }

        article h2 {
            font-size: 24px;
            color: #782800;
            margin-top: 25px;
            margin-bottom: 15px;
            font-weight: bold;
        }

        article h3 {
            font-size: 20px;
            color: #782800;
            margin-top: 20px;
            margin-bottom: 12px;
            font-weight: bold;
        }

        article p {
            color: #782800;
            margin-bottom: 15px;
            font-size: 16px;
        }

        .transition-section {
            background-color: #fff;
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(120, 40, 0, 0.1);
            margin-bottom: 30px;
        }

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

        {% if links %}
        .links-section {
            background-color: #fff;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(120, 40, 0, 0.1);
            margin-bottom: 30px;
        }

        .links-section h3 {
            font-size: 22px;
            color: #782800;
            margin-top: 20px;
            margin-bottom: 15px;
            font-weight: bold;
        }

        .links-section h3:first-child {
            margin-top: 0;
        }

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

        .links-section li {
            padding: 0;
        }

        .links-section a {
            color: #000099;
            text-decoration: none;
            font-size: 15px;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .links-section a:hover {
            font-weight: bold;
            color: #000099;
        }

        .links-section a:visited {
            color: #000099;
        }
        {% endif %}

        @media (max-width: 768px) {
            .site-title h1 {
                font-size: 32px;
                letter-spacing: 4px;
            }

            .site-title .subtitle {
                font-size: 14px;
                letter-spacing: 2px;
            }

            .main-content h1 {
                font-size: 26px;
            }

            article {
                padding: 20px;
            }

            article h2 {
                font-size: 20px;
            }

            article h3 {
                font-size: 18px;
            }

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

        @media (max-width: 480px) {
            .site-title h1 {
                font-size: 24px;
                letter-spacing: 2px;
            }

            .site-title .subtitle {
                font-size: 12px;
                letter-spacing: 1px;
            }

            .container {
                padding: 0 15px;
                margin: 20px auto;
            }

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