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

        html {
            position: relative;
            min-height: 100%;
        }

        body {
            margin: 0;
            padding-bottom: 80px;
            background: linear-gradient(135deg, #8c7b6c 0%, #6b5d52 100%);
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            font-size: 17px;
            line-height: 1.7;
            color: #5c5247;
        }

        .container {
            max-width: 1190px;
            margin: 0 auto;
            padding: 0 20px;
        }

        header {
            background: #37312b;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            position: relative;
            z-index: 100;
        }

        .header-content {
            padding: 20px 0;
            text-align: center;
        }

        .site-title {
            color: #fff;
            font-size: 32px;
            font-weight: 300;
            margin: 0;
            letter-spacing: 2px;
        }

        main {
            background: #fff;
            margin: 40px auto;
            max-width: 900px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
            border-radius: 8px;
            overflow: hidden;
        }

        .content-wrapper {
            padding: 50px 60px;
        }

        h1 {
            font-size: 42px;
            color: #37312b;
            margin-bottom: 30px;
            font-weight: 300;
            line-height: 1.3;
            border-bottom: 3px solid #8c7b6c;
            padding-bottom: 20px;
        }

        article {
            margin-bottom: 40px;
        }

        article h2 {
            font-size: 28px;
            color: #5c5247;
            margin-top: 35px;
            margin-bottom: 20px;
            font-weight: 400;
        }

        article h3 {
            font-size: 22px;
            color: #5c5247;
            margin-top: 25px;
            margin-bottom: 15px;
            font-weight: 500;
        }

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

        .transition-section {
            background: #f8f6f4;
            padding: 40px;
            border-radius: 6px;
            margin: 40px 0;
            border-left: 4px solid #8c7b6c;
        }

        .transition-section p {
            margin-bottom: 15px;
            color: #5c5247;
        }

        .links-section {
            background: #fafaf9;
            padding: 50px 60px;
            border-top: 1px solid #e0ddd9;
        }

        .links-section h3 {
            font-size: 24px;
            color: #37312b;
            margin-bottom: 20px;
            margin-top: 35px;
            font-weight: 500;
        }

        .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 li {
            position: relative;
            padding-left: 20px;
        }

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

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

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

        footer {
            position: absolute;
            bottom: 0;
            width: 100%;
            background-color: #37312b;
            text-align: right;
            padding: 15px 0;
            box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
        }

        footer a {
            color: #fff;
            text-decoration: none;
            margin: 0 20px;
            font-size: 15px;
            transition: opacity 0.3s ease;
        }

        footer a:hover {
            opacity: 0.8;
        }

        @media screen and (max-width: 768px) {
            body {
                padding-bottom: 100px;
            }

            .content-wrapper {
                padding: 30px 25px;
            }

            .site-title {
                font-size: 24px;
            }

            h1 {
                font-size: 32px;
                margin-bottom: 25px;
                padding-bottom: 15px;
            }

            article h2 {
                font-size: 24px;
                margin-top: 25px;
            }

            article h3 {
                font-size: 20px;
            }

            article p {
                text-align: left;
            }

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

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

            .links-section h3 {
                font-size: 22px;
                margin-top: 25px;
            }

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

            footer {
                text-align: center;
            }

            footer a {
                margin: 0 12px;
                font-size: 14px;
                display: inline-block;
            }
        }

        @media screen and (max-width: 480px) {
            main {
                margin: 20px auto;
                border-radius: 0;
            }

            .content-wrapper {
                padding: 20px 18px;
            }

            .site-title {
                font-size: 20px;
                letter-spacing: 1px;
            }

            h1 {
                font-size: 26px;
            }

            article h2 {
                font-size: 22px;
            }

            article h3 {
                font-size: 18px;
            }

            body {
                font-size: 16px;
            }

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

            footer a {
                margin: 0 8px;
                font-size: 13px;
            }
        }

        @media screen and (min-width: 769px) and (max-width: 991px) {
            .content-wrapper {
                padding: 40px 45px;
            }

            h1 {
                font-size: 36px;
            }

            .links-section {
                padding: 40px 45px;
            }
        }
    