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

        body {
            font-family: Arial, sans-serif;
            background-color: #333333;
            color: #ECECEC;
            line-height: 1.6;
            padding: 20px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            background-color: #333333;
        }

        header {
            background-color: #444444;
            padding: 20px;
            text-align: center;
            border-bottom: 3px solid #F76B08;
            margin-bottom: 30px;
        }

        h1 {
            color: #F76B08;
            font-size: 2.5em;
            margin-bottom: 10px;
            font-weight: bold;
        }

        nav {
            background-color: #444444;
            padding: 15px;
            margin-bottom: 30px;
            border: 1px solid #666666;
            border-radius: 5px;
        }

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

        nav ul li {
            display: inline;
        }

        nav a {
            color: #F76B08;
            text-decoration: none;
            padding: 8px 15px;
            display: inline-block;
            transition: all 0.3s ease;
            border-radius: 3px;
        }

        nav a:hover {
            background-color: #555555;
            color: #FFAD73;
        }

        article {
            background-color: #3d3d3d;
            padding: 30px;
            margin-bottom: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        article h2,
        article h3,
        article h4 {
            color: #F76B08;
            margin-top: 25px;
            margin-bottom: 15px;
            font-weight: bold;
        }

        article h2 {
            font-size: 2em;
            border-bottom: 2px solid #F76B08;
            padding-bottom: 10px;
        }

        article h3 {
            font-size: 1.5em;
        }

        article h4 {
            font-size: 1.2em;
        }

        article p {
            margin-bottom: 15px;
            font-size: 1em;
            text-align: justify;
        }

        article a {
            color: #F76B08;
            text-decoration: underline;
        }

        article a:visited {
            color: #FFAD73;
        }

        article a:hover {
            color: #FFFFFF;
        }

        .transition-section {
            background-color: #3d3d3d;
            padding: 25px 30px;
            margin-bottom: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .transition-section p {
            margin-bottom: 15px;
            font-size: 1em;
        }

        .links-section {
            background-color: #3d3d3d;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            margin-bottom: 30px;
        }

        .links-section h3 {
            color: #F76B08;
            font-size: 1.5em;
            margin-top: 25px;
            margin-bottom: 15px;
            font-weight: bold;
            border-bottom: 2px solid #F76B08;
            padding-bottom: 8px;
        }

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

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

        .links-section ul li {
            padding: 8px 0;
        }

        .links-section a {
            color: #F76B08;
            text-decoration: none;
            transition: color 0.3s ease;
            display: inline-block;
        }

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

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

        footer {
            background-color: #444444;
            padding: 20px;
            text-align: center;
            border-top: 3px solid #F76B08;
            margin-top: 30px;
            border-radius: 5px;
        }

        footer p {
            color: #ECECEC;
            font-size: 0.9em;
            margin: 5px 0;
        }

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

            h1 {
                font-size: 2em;
            }

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

            nav a {
                display: block;
                text-align: center;
            }

            article,
            .transition-section,
            .links-section {
                padding: 20px;
            }

            article h2 {
                font-size: 1.5em;
            }

            article h3 {
                font-size: 1.3em;
            }

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

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

            article,
            .transition-section,
            .links-section {
                padding: 15px;
            }

            article h2 {
                font-size: 1.3em;
            }

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