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

        body {
            font-family: Arial, Helvetica, sans-serif;
            font-size: 16px;
            line-height: 1.6;
            color: #333;
            background-color: #f5f5f5;
        }

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

        .header {
            background: linear-gradient(135deg, #8b0000 0%, #b22222 100%);
            color: #fff;
            padding: 30px 20px;
            text-align: center;
            border-bottom: 5px solid #660000;
        }

        .header-title {
            font-family: "Times New Roman", serif;
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 3px;
        }

        .header-subtitle {
            font-size: 1rem;
            opacity: 0.95;
            font-weight: normal;
        }

        .main-content {
            padding: 40px 20px;
        }

        h1 {
            font-size: 2.2rem;
            color: #8b0000;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 3px solid #8b0000;
            font-weight: bold;
        }

        article {
            margin-bottom: 40px;
        }

        article p {
            margin-bottom: 20px;
            font-size: 1.05rem;
            line-height: 1.8;
            color: #444;
        }

        article h2 {
            font-size: 1.8rem;
            color: #8b0000;
            margin-top: 30px;
            margin-bottom: 15px;
        }

        article h3 {
            font-size: 1.4rem;
            color: #b22222;
            margin-top: 25px;
            margin-bottom: 12px;
        }

        article h4 {
            font-size: 1.2rem;
            color: #b22222;
            margin-top: 20px;
            margin-bottom: 10px;
        }

        .transition-section {
            background-color: #fafafa;
            padding: 30px;
            margin: 40px 0;
            border-left: 5px solid #8b0000;
            border-radius: 4px;
        }

        .transition-section p {
            font-size: 1.05rem;
            line-height: 1.8;
            color: #444;
            margin-bottom: 15px;
        }

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

        .links-section {
            background-color: #fff;
            padding: 40px 20px;
            margin-top: 40px;
            border-top: 3px solid #8b0000;
        }

        .links-section h3 {
            font-size: 1.5rem;
            color: #8b0000;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #e0e0e0;
        }

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

        .links-section ul:last-child {
            margin-bottom: 0;
        }

        .links-section li {
            padding-left: 20px;
            position: relative;
        }

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

        .links-section a {
            color: #0066cc;
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 1rem;
        }

        .links-section a:hover {
            color: #8b0000;
            text-decoration: underline;
        }

        .footer {
            background-color: #2c2c2c;
            color: #ccc;
            padding: 30px 20px;
            font-size: 0.9rem;
            line-height: 1.8;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 30px;
        }

        .footer-left {
            flex: 1;
            min-width: 250px;
        }

        .footer-right {
            flex: 0 0 auto;
        }

        .footer-copyright {
            margin-bottom: 10px;
            font-weight: bold;
            color: #fff;
        }

        .footer-tagline {
            margin-bottom: 15px;
            font-style: italic;
        }

        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 15px;
        }

        .footer-link {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
            cursor: pointer;
        }

        .footer-link:hover {
            color: #fff;
        }

        .footer-section-title {
            font-weight: bold;
            color: #fff;
            margin-bottom: 10px;
        }

        .footer-legal {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .footer-clear {
            clear: both;
        }

        @media (max-width: 768px) {
            .header-title {
                font-size: 1.8rem;
                letter-spacing: 2px;
            }

            h1 {
                font-size: 1.8rem;
            }

            .main-content {
                padding: 30px 15px;
            }

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

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

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

            .footer-content {
                flex-direction: column;
            }

            .footer-links {
                flex-direction: column;
                gap: 10px;
            }
        }

        @media (max-width: 480px) {
            .header-title {
                font-size: 1.5rem;
                letter-spacing: 1px;
            }

            .header-subtitle {
                font-size: 0.9rem;
            }

            h1 {
                font-size: 1.5rem;
            }

            article h2 {
                font-size: 1.5rem;
            }

            article h3 {
                font-size: 1.2rem;
            }

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