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

        body {
            font-family: Georgia, "Times New Roman", Times, serif;
            background: linear-gradient(to bottom, #f8f4f0 0%, #ede4dc 100%);
            color: #333;
            line-height: 1.6;
            min-height: 100vh;
            position: relative;
        }

        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: 15px;
            background: linear-gradient(to right, #700614, #a0202f, #700614);
            z-index: 1000;
        }

        body::after {
            content: '';
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            height: 15px;
            background: linear-gradient(to right, #700614, #a0202f, #700614);
            z-index: 1000;
        }

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

        h1 {
            font-size: 2.5rem;
            color: #700614;
            text-align: center;
            margin-bottom: 30px;
            font-weight: normal;
            padding: 20px;
            background: rgba(255, 255, 255, 0.6);
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(112, 6, 20, 0.1);
        }

        article {
            background: rgba(255, 255, 255, 0.8);
            padding: 40px;
            margin-bottom: 30px;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            border: 2px solid rgba(112, 6, 20, 0.1);
        }

        article h2 {
            color: #700614;
            font-size: 1.8rem;
            margin-top: 25px;
            margin-bottom: 15px;
            font-weight: normal;
        }

        article h3 {
            color: #8b0a1e;
            font-size: 1.4rem;
            margin-top: 20px;
            margin-bottom: 12px;
            font-weight: normal;
        }

        article h4 {
            color: #a0202f;
            font-size: 1.2rem;
            margin-top: 15px;
            margin-bottom: 10px;
            font-weight: normal;
        }

        article p {
            margin-bottom: 15px;
            font-size: 1.05rem;
            color: #444;
        }

        .transition-section {
            background: rgba(255, 255, 255, 0.7);
            padding: 30px 40px;
            margin-bottom: 30px;
            border-radius: 10px;
            box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
            border-left: 5px solid #700614;
        }

        .transition-section p {
            font-size: 1.05rem;
            color: #555;
            margin-bottom: 12px;
        }

        .links-section {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 244, 240, 0.9) 100%);
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            border: 2px solid rgba(112, 6, 20, 0.15);
        }

        .links-section h3 {
            color: #700614;
            font-size: 1.5rem;
            margin-top: 25px;
            margin-bottom: 15px;
            font-weight: normal;
            padding-bottom: 10px;
            border-bottom: 2px solid rgba(112, 6, 20, 0.2);
        }

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

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

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

        .links-section a {
            color: #700614;
            text-decoration: none;
            font-size: 1rem;
            transition: all 0.3s ease;
            display: inline-block;
            padding: 5px 0;
            border-bottom: 1px solid transparent;
        }

        .links-section a:hover {
            color: #a0202f;
            border-bottom: 1px solid #a0202f;
            padding-left: 5px;
        }

        .links-section a::before {
            content: '→ ';
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .links-section a:hover::before {
            opacity: 1;
        }

        @media (max-width: 768px) {
            body::before,
            body::after {
                height: 10px;
            }

            .container {
                padding: 20px 15px;
                padding-top: 30px;
                padding-bottom: 30px;
            }

            h1 {
                font-size: 1.8rem;
                padding: 15px;
                margin-bottom: 20px;
            }

            article {
                padding: 25px 20px;
            }

            article h2 {
                font-size: 1.5rem;
            }

            article h3 {
                font-size: 1.3rem;
            }

            article h4 {
                font-size: 1.1rem;
            }

            article p {
                font-size: 1rem;
            }

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

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

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

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

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

            article {
                padding: 20px 15px;
            }

            article h2 {
                font-size: 1.3rem;
            }

            .transition-section {
                padding: 15px 20px;
            }

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