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

        body, html {
            font-family: 'Oxygen', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f9f9f9;
        }

        a {
            text-decoration: none;
            color: #db3026;
            transition: color 0.3s ease;
        }

        a:hover {
            color: #e88a25;
        }

        header {
            background: linear-gradient(135deg, #db3026 0%, #e88a25 100%);
            color: #fff;
            padding: 20px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        nav {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

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

        nav ul li {
            display: inline-block;
        }

        nav ul li a {
            color: #fff;
            font-size: 14px;
            text-transform: uppercase;
            font-weight: 600;
            padding: 8px 15px;
            border-radius: 3px;
            transition: background-color 0.3s ease;
        }

        nav ul li a:hover,
        nav ul li.current_page_item a {
            background-color: rgba(255, 255, 255, 0.2);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
            background-color: #fff;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
        }

        h1 {
            font-family: 'Bitter', Georgia, serif;
            font-size: 42px;
            color: #db3026;
            margin-bottom: 30px;
            padding-bottom: 15px;
            border-bottom: 3px solid #e88a25;
            font-weight: 700;
        }

        article {
            margin-bottom: 50px;
        }

        article h2 {
            font-family: 'Bitter', Georgia, serif;
            font-size: 32px;
            color: #db3026;
            margin: 30px 0 20px;
            font-weight: 600;
        }

        article h3 {
            font-family: 'Bitter', Georgia, serif;
            font-size: 24px;
            color: #e88a25;
            margin: 25px 0 15px;
            font-weight: 600;
        }

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

        article ul, article ol {
            margin: 20px 0 20px 30px;
        }

        article li {
            margin-bottom: 10px;
            color: #555;
        }

        .transition-section {
            background-color: #f5f5f5;
            padding: 30px;
            margin: 40px 0;
            border-left: 5px solid #db3026;
            border-radius: 3px;
        }

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

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

        .links-section {
            background: linear-gradient(to bottom, #fff 0%, #f9f9f9 100%);
            padding: 50px 30px;
            margin-top: 50px;
            border-top: 3px solid #db3026;
        }

        .links-section h3 {
            font-family: 'Bitter', Georgia, serif;
            font-size: 22px;
            color: #db3026;
            margin-bottom: 20px;
            font-weight: 600;
        }

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

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

        .links-section li a {
            color: #666;
            font-size: 15px;
            transition: all 0.3s ease;
            display: inline-block;
            padding: 5px 0;
        }

        .links-section li a:before {
            content: "→ ";
            color: #e88a25;
            margin-right: 5px;
        }

        .links-section li a:hover {
            color: #db3026;
            padding-left: 5px;
        }

        footer {
            background-color: #2c2c2c;
            color: #999;
            padding: 40px 0 20px;
            margin-top: 60px;
            border-top: 5px solid #db3026;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }

        .footer-column h2 {
            font-family: 'Bitter', Georgia, serif;
            font-size: 18px;
            color: #db3026;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column li {
            margin-bottom: 10px;
        }

        .footer-column a {
            color: #999;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .footer-column a:hover {
            color: #e88a25;
        }

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

            article h2 {
                font-size: 26px;
            }

            article h3 {
                font-size: 20px;
            }

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

            .links-section ul {
                columns: 1;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }
        }

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

            .container {
                padding: 20px 15px;
            }

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

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