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

        html {
            font-size: 62.5%;
        }

        body {
            font-family: 'Arial', sans-serif;
            font-size: 1.6rem;
            line-height: 1.6;
            color: #3a1404;
            background: #91765c url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100"><rect fill="%23a08570" width="100" height="100"/></svg>') repeat-x;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

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

        header {
            background: linear-gradient(135deg, #8b7355 0%, #6d5a45 100%);
            padding: 20px 30px;
            margin-top: 20px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        .logo {
            font-size: 2.4rem;
            font-weight: bold;
            color: #fff;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            display: inline-block;
        }

        nav {
            margin-top: 15px;
            text-align: right;
        }

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

        nav ul li a {
            color: #fff;
            text-decoration: none;
            font-size: 1.4rem;
            text-transform: uppercase;
            padding: 8px 15px;
            display: block;
            transition: all 0.3s ease;
            border-radius: 3px;
        }

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

        main {
            padding: 40px;
            min-height: 400px;
        }

        h1 {
            font-size: 3.2rem;
            color: #3a1404;
            margin-bottom: 30px;
            font-weight: 300;
            line-height: 1.3;
            padding-bottom: 15px;
            border-bottom: 3px solid #d3771a;
        }

        article {
            margin-bottom: 40px;
        }

        article p {
            margin-bottom: 20px;
            font-size: 1.6rem;
            line-height: 1.8;
            color: #3a1404;
            text-align: justify;
        }

        article h2 {
            font-size: 2.4rem;
            color: #d3771a;
            margin: 30px 0 15px;
            font-weight: 500;
        }

        article h3 {
            font-size: 2rem;
            color: #d3771a;
            margin: 25px 0 12px;
            font-weight: 500;
        }

        article h4 {
            font-size: 1.8rem;
            color: #3a1404;
            margin: 20px 0 10px;
            font-weight: 600;
        }

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

        article a:hover {
            color: #b2610f;
        }

        .transition-section {
            background: #f9f7f5;
            padding: 30px;
            margin: 40px 0;
            border-left: 4px solid #d3771a;
            border-radius: 3px;
        }

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

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

        .links-section {
            background: #fdfcfd;
            padding: 40px;
            margin-top: 40px;
            border-top: 2px solid #dad8de;
        }

        .links-section h2 {
            font-size: 2.6rem;
            color: #3a1404;
            margin-bottom: 30px;
            font-weight: 300;
        }

        .links-section h3 {
            font-size: 2rem;
            color: #d3771a;
            margin: 30px 0 15px;
            font-weight: 500;
            text-transform: uppercase;
        }

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

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

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

        .links-section ul li:before {
            content: "";
            position: absolute;
            left: 0;
            top: 10px;
            width: 8px;
            height: 8px;
            background: #d3771a;
            border-radius: 50%;
        }

        .links-section ul li a {
            color: #b2610f;
            text-decoration: none;
            font-size: 1.5rem;
            line-height: 1.6;
            transition: color 0.3s ease;
        }

        .links-section ul li a:hover {
            color: #411400;
            text-decoration: underline;
        }

        footer {
            background: linear-gradient(135deg, #6d5a45 0%, #4a3d2f 100%);
            color: #acacac;
            padding: 40px;
            margin-top: auto;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 40px;
            max-width: 989px;
            margin: 0 auto;
        }

        .footer-left ul {
            list-style: none;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 20px;
        }

        .footer-left ul li {
            position: relative;
        }

        .footer-left ul li:not(:last-child):after {
            content: "|";
            margin-left: 10px;
            color: #acacac;
        }

        .footer-left ul li a {
            color: #acacac;
            text-decoration: none;
            font-size: 1.3rem;
        }

        .footer-left ul li a:hover {
            color: #fff;
            text-decoration: underline;
        }

        .footer-left p {
            font-size: 1.3rem;
            line-height: 1.6;
            margin-bottom: 10px;
        }

        .footer-right {
            text-align: right;
        }

        .footer-right p {
            font-size: 1.3rem;
            line-height: 1.6;
            margin-bottom: 10px;
        }

        @media (max-width: 768px) {
            body {
                font-size: 1.4rem;
            }

            .container {
                margin: 0;
            }

            header {
                padding: 15px 20px;
                margin-top: 0;
            }

            .logo {
                font-size: 2rem;
            }

            nav {
                margin-top: 15px;
                text-align: left;
            }

            nav ul {
                justify-content: flex-start;
                gap: 10px;
            }

            nav ul li a {
                font-size: 1.3rem;
                padding: 6px 12px;
            }

            main {
                padding: 25px 20px;
            }

            h1 {
                font-size: 2.4rem;
                margin-bottom: 20px;
            }

            article h2 {
                font-size: 2rem;
                margin: 25px 0 12px;
            }

            article h3 {
                font-size: 1.8rem;
                margin: 20px 0 10px;
            }

            article p {
                font-size: 1.5rem;
            }

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

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

            .links-section h2 {
                font-size: 2.2rem;
                margin-bottom: 20px;
            }

            .links-section h3 {
                font-size: 1.8rem;
                margin: 25px 0 12px;
            }

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

            .links-section ul li a {
                font-size: 1.4rem;
            }

            footer {
                padding: 30px 20px;
            }

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

            .footer-right {
                text-align: left;
            }
        }

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

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

            nav ul li a {
                font-size: 1.2rem;
            }

            article h2 {
                font-size: 1.8rem;
            }

            article h3 {
                font-size: 1.6rem;
            }

            .links-section h2 {
                font-size: 2rem;
            }

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