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

        body {
            font-family: 'Georgia', 'Times New Roman', serif;
            background: linear-gradient(135deg, #6F8C8F 0%, #5a7477 100%);
            color: #ffffff;
            line-height: 1.6;
            min-height: 100vh;
            padding: 20px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }

        header {
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), transparent);
            padding: 40px 30px;
            text-align: center;
            border-bottom: 3px solid rgba(153, 204, 204, 0.3);
        }

        h1 {
            font-size: 2.5em;
            font-weight: 300;
            letter-spacing: 2px;
            color: #99CCCC;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            margin-bottom: 10px;
        }

        article {
            padding: 40px 30px;
            background: rgba(255, 255, 255, 0.03);
        }

        article h2 {
            color: #99CCCC;
            font-size: 1.8em;
            margin: 30px 0 15px 0;
            font-weight: 400;
            border-bottom: 2px solid rgba(153, 204, 204, 0.2);
            padding-bottom: 10px;
        }

        article h3 {
            color: #b3d9d9;
            font-size: 1.4em;
            margin: 25px 0 12px 0;
            font-weight: 400;
        }

        article h4 {
            color: #ccebeb;
            font-size: 1.2em;
            margin: 20px 0 10px 0;
            font-weight: 400;
        }

        article p {
            margin-bottom: 15px;
            font-size: 1.05em;
            text-align: justify;
            color: #f0f0f0;
        }

        .transition-section {
            padding: 30px;
            background: rgba(0, 0, 0, 0.15);
            border-top: 2px solid rgba(153, 204, 204, 0.2);
            border-bottom: 2px solid rgba(153, 204, 204, 0.2);
        }

        .transition-section p {
            font-size: 1.05em;
            margin-bottom: 15px;
            color: #f0f0f0;
        }

        .links-section {
            padding: 40px 30px;
            background: rgba(255, 255, 255, 0.05);
        }

        .links-section h3 {
            color: #99CCCC;
            font-size: 1.5em;
            margin: 25px 0 15px 0;
            font-weight: 400;
            padding-bottom: 8px;
            border-bottom: 2px solid rgba(153, 204, 204, 0.3);
        }

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

        .links-section li {
            break-inside: avoid;
            margin-bottom: 10px;
            padding-left: 20px;
            position: relative;
        }

        .links-section li:before {
            content: "→";
            position: absolute;
            left: 0;
            color: #99CCCC;
        }

        .links-section a {
            color: #99CCCC;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
            font-size: 1.05em;
        }

        .links-section a:hover {
            color: #ffffff;
            transform: translateX(5px);
            text-shadow: 0 0 10px rgba(153, 204, 204, 0.5);
        }

        .links-section a:visited {
            color: #99CCCC;
        }

        hr {
            border: none;
            border-top: 1px solid rgba(153, 204, 204, 0.3);
            margin: 20px 0;
        }

        @media (max-width: 768px) {
            body {
                padding: 10px;
            }

            h1 {
                font-size: 1.8em;
                letter-spacing: 1px;
            }

            header {
                padding: 30px 20px;
            }

            article {
                padding: 25px 20px;
            }

            article h2 {
                font-size: 1.5em;
            }

            article h3 {
                font-size: 1.2em;
            }

            article h4 {
                font-size: 1.1em;
            }

            article p {
                font-size: 1em;
                text-align: left;
            }

            .transition-section {
                padding: 20px;
            }

            .transition-section p {
                font-size: 1em;
            }

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

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

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

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

            article h2 {
                font-size: 1.3em;
            }

            article h3 {
                font-size: 1.1em;
            }
        }
    