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

        body {
            font-family: Georgia, "Times New Roman", Times, serif;
            font-size: 16px;
            line-height: 1.7;
            background-color: #D0C6BD;
            color: #191410;
            padding: 0;
            margin: 0;
        }

        .container {
            max-width: 900px;
            margin: 30px auto;
            background-color: #fff;
            border: 1px solid #959596;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        header {
            background: linear-gradient(135deg, #73a0c5 0%, #5a8ab5 100%);
            padding: 60px 40px 40px;
            text-align: center;
            border-bottom: 3px solid #482f1b;
        }

        h1 {
            font-size: 2.5em;
            color: #fff;
            text-transform: uppercase;
            font-weight: bold;
            letter-spacing: 2px;
            margin: 0;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        main {
            padding: 40px;
        }

        article {
            margin-bottom: 40px;
            text-align: justify;
        }

        article h2 {
            font-size: 1.8em;
            color: #482f1b;
            text-transform: uppercase;
            margin: 30px 0 15px;
            font-weight: bold;
        }

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

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

        article p {
            margin: 15px 0;
            font-size: 1.05em;
            line-height: 1.7em;
            color: #333;
        }

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

        article li {
            margin: 8px 0;
        }

        article a {
            color: #0B3E77;
            text-decoration: none;
            border-bottom: 1px solid transparent;
            transition: all 0.3s ease;
        }

        article a:hover {
            color: #482f1b;
            border-bottom: 1px solid #482f1b;
        }

        .transition-section {
            background-color: #f9f7f5;
            padding: 30px 40px;
            margin: 0 -40px;
            border-top: 1px solid #ddd;
            border-bottom: 1px solid #ddd;
        }

        .transition-section p {
            font-size: 1.05em;
            line-height: 1.7em;
            color: #333;
            margin: 15px 0;
            text-align: justify;
        }

        .links-section {
            padding: 40px;
            background-color: #fafafa;
            margin: 0 -40px -40px;
        }

        .links-section h2 {
            font-size: 1.6em;
            color: #482f1b;
            text-transform: uppercase;
            margin-bottom: 30px;
            text-align: center;
            font-weight: bold;
        }

        .links-section h3 {
            font-size: 1.3em;
            color: #191410;
            margin: 30px 0 15px;
            font-weight: bold;
            text-transform: uppercase;
            border-bottom: 2px solid #73a0c5;
            padding-bottom: 8px;
        }

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

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

        .links-section li:before {
            content: "»";
            position: absolute;
            left: 0;
            color: #73a0c5;
            font-weight: bold;
        }

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

        .links-section a:hover {
            color: #482f1b;
            transform: translateX(3px);
        }

        footer {
            background-color: #eee;
            padding: 25px 40px;
            text-align: center;
            border-top: 1px solid #ddd;
            font-size: 0.9em;
            color: #777;
        }

        @media (max-width: 768px) {
            .container {
                margin: 15px;
                border: none;
            }

            header {
                padding: 40px 20px 30px;
            }

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

            main {
                padding: 25px 20px;
            }

            article h2 {
                font-size: 1.5em;
            }

            article h3 {
                font-size: 1.3em;
            }

            article p {
                font-size: 1em;
            }

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

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

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

            .links-section h2 {
                font-size: 1.4em;
            }

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

            footer {
                padding: 20px;
            }
        }

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

            article h2 {
                font-size: 1.3em;
            }

            article h3 {
                font-size: 1.15em;
            }

            .links-section h2 {
                font-size: 1.25em;
            }

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