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

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #2b2522;
            background: #fff;
        }

        header {
            background: rgba(255, 255, 255, 0.95);
            border-bottom: 6px solid rgba(0, 0, 0, 0.1);
            padding: 1.5rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        }

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

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            color: #c00000;
            text-decoration: none;
            font-style: italic;
        }

        nav ul {
            list-style: none;
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
        }

        nav a {
            color: #2b2522;
            text-decoration: none;
            font-size: 0.95rem;
            text-transform: uppercase;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        nav a:hover {
            color: #c00000;
        }

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

        h1 {
            font-size: 2.5rem;
            font-weight: bold;
            font-style: italic;
            color: #2b2522;
            margin-bottom: 2rem;
            line-height: 1.2;
        }

        article {
            background: #fff;
            padding: 2rem 0;
            margin-bottom: 3rem;
        }

        article p {
            margin-bottom: 1.5rem;
            font-size: 1.05rem;
            line-height: 1.7;
            color: #333;
        }

        article h2 {
            font-size: 1.8rem;
            font-weight: bold;
            font-style: italic;
            margin: 2.5rem 0 1.5rem;
            color: #2b2522;
        }

        article h3 {
            font-size: 1.4rem;
            font-weight: bold;
            margin: 2rem 0 1rem;
            color: #2b2522;
        }

        article h4 {
            font-size: 1.2rem;
            font-weight: bold;
            margin: 1.5rem 0 1rem;
            color: #2b2522;
        }

        article ul, article ol {
            margin-left: 2rem;
            margin-bottom: 1.5rem;
        }

        article li {
            margin-bottom: 0.5rem;
            line-height: 1.7;
        }

        .transition-section {
            background: #fbfaf3;
            padding: 2.5rem;
            margin: 3rem 0;
            border-left: 4px solid #c00000;
            border-radius: 4px;
        }

        .transition-section p {
            font-size: 1.05rem;
            line-height: 1.7;
            color: #333;
            margin-bottom: 1rem;
        }

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

        .links-section {
            background: #eeece1;
            padding: 3rem 2.5rem;
            margin-top: 3rem;
            border-top: 4px solid #d5d3c5;
            border-bottom: 4px solid #d5d3c5;
        }

        .links-section h2 {
            font-size: 2rem;
            font-weight: bold;
            font-style: italic;
            margin-bottom: 2rem;
            color: #2b2522;
        }

        .links-section h3 {
            font-size: 1.3rem;
            font-weight: bold;
            color: #c00000;
            margin: 2rem 0 1rem;
            text-transform: uppercase;
        }

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

        .links-section ul {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 0.8rem 2rem;
            margin-bottom: 2rem;
        }

        .links-section li {
            position: relative;
            padding-left: 1.2rem;
        }

        .links-section li:before {
            content: "→";
            position: absolute;
            left: 0;
            color: #c00000;
            font-weight: bold;
        }

        .links-section a {
            color: #2b2522;
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.3s ease;
            display: inline-block;
            line-height: 1.5;
        }

        .links-section a:hover {
            color: #c00000;
        }

        footer {
            background: #21201c;
            color: #fff;
            padding: 2rem 0;
            margin-top: 4rem;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            text-align: center;
        }

        footer p {
            font-size: 0.9rem;
            opacity: 0.8;
        }

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

            nav ul {
                gap: 1rem;
                justify-content: center;
            }

            nav a {
                font-size: 0.85rem;
            }

            article h2 {
                font-size: 1.5rem;
            }

            article h3 {
                font-size: 1.2rem;
            }

            .links-section {
                padding: 2rem 1.5rem;
            }

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

            .transition-section {
                padding: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            header {
                padding: 1rem 0;
            }

            .header-container {
                flex-direction: column;
                gap: 1rem;
            }

            main {
                padding: 2rem 15px;
            }

            h1 {
                font-size: 1.75rem;
            }

            article {
                padding: 1rem 0;
            }
        }
    