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

        body {
            font-family: 'Georgia', serif;
            line-height: 1.6;
            color: #777777;
            background: linear-gradient(135deg, rgba(200, 5, 24, 0.05) 0%, rgba(58, 58, 58, 0.05) 100%);
            min-height: 100vh;
        }

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

        h1 {
            font-family: 'Playfair Display', serif;
            font-size: 3.3em;
            color: #c80518;
            text-align: center;
            margin: 60px 0 40px 0;
            font-weight: 400;
            line-height: 1.2;
        }

        article {
            background: rgba(255, 255, 255, 0.95);
            padding: 40px;
            margin: 40px 0;
            border-radius: 8px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        article h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2em;
            color: #c80518;
            margin-bottom: 20px;
            font-weight: 400;
            line-height: 1.3;
        }

        article h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.67em;
            color: #c80518;
            margin-bottom: 15px;
            font-weight: 400;
            line-height: 1.4;
        }

        article h4 {
            font-size: 1.33em;
            color: #777777;
            margin-bottom: 15px;
            font-weight: 400;
            line-height: 1.5;
        }

        article h5 {
            font-size: 1.2em;
            color: #777777;
            margin-bottom: 15px;
            font-weight: 400;
            line-height: 1.6;
        }

        article h6 {
            font-size: 1em;
            color: #777777;
            margin-bottom: 15px;
            font-weight: 400;
            line-height: 1.7;
        }

        article p {
            margin-bottom: 1.75em;
            font-size: 1rem;
            color: #777777;
        }

        .transition-section {
            background: rgba(255, 255, 255, 0.9);
            padding: 30px 40px;
            margin: 40px 0;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            border-left: 4px solid #c80518;
        }

        .transition-section p {
            font-size: 1rem;
            color: #777777;
            margin-bottom: 1.2em;
        }

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

        .links-section {
            background: rgba(255, 255, 255, 0.95);
            padding: 40px;
            margin: 40px 0 60px 0;
            border-radius: 8px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .links-section h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.67em;
            color: #c80518;
            margin-bottom: 20px;
            font-weight: 400;
            border-bottom: 2px solid #c80518;
            padding-bottom: 10px;
        }

        .links-section ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 15px;
        }

        .links-section li {
            margin-bottom: 0;
        }

        .links-section a {
            display: block;
            color: #777777;
            text-decoration: none;
            padding: 12px 15px;
            border-radius: 4px;
            transition: all 0.3s ease;
            border-left: 3px solid transparent;
        }

        .links-section a:hover {
            color: #c80518;
            background: rgba(200, 5, 24, 0.05);
            border-left-color: #c80518;
            transform: translateX(5px);
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 15px;
            }

            h1 {
                font-size: 2em;
                margin: 30px 0 20px 0;
            }

            article {
                padding: 25px;
                margin: 25px 0;
            }

            article h2 {
                font-size: 1.5em;
            }

            article h3 {
                font-size: 1.3em;
            }

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

            .links-section {
                padding: 25px;
                margin: 25px 0 40px 0;
            }

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

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

            article {
                padding: 20px;
            }

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

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