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

        body {
            font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
            font-size: 16px;
            line-height: 1.6;
            color: #333;
            background-color: #f8f5f0;
        }

        header {
            background: linear-gradient(135deg, #2c1810 0%, #5d3a2a 100%);
            padding: 20px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

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

        nav {
            background-color: #3d2416;
            border-bottom: 3px solid #d4a574;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            padding: 0;
        }

        .nav-container a {
            color: #f5e6d3;
            text-decoration: none;
            padding: 15px 25px;
            display: block;
            transition: all 0.3s ease;
            font-weight: 500;
            text-transform: uppercase;
            font-size: 14px;
            letter-spacing: 0.5px;
        }

        .nav-container a:hover {
            background-color: #5d3a2a;
            color: #d4a574;
        }

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

        h1 {
            font-size: 2.5em;
            color: #2c1810;
            margin-bottom: 30px;
            text-align: center;
            font-weight: 600;
            line-height: 1.2;
            padding: 20px;
            background: linear-gradient(to right, transparent, rgba(212, 165, 116, 0.1), transparent);
        }

        article {
            background: white;
            padding: 40px;
            margin-bottom: 40px;
            border-radius: 8px;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
            border-left: 4px solid #d4a574;
        }

        article h2 {
            font-size: 2em;
            color: #3d2416;
            margin-top: 30px;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 2px solid #f0e6d8;
        }

        article h3 {
            font-size: 1.5em;
            color: #5d3a2a;
            margin-top: 25px;
            margin-bottom: 12px;
        }

        article h4 {
            font-size: 1.25em;
            color: #5d3a2a;
            margin-top: 20px;
            margin-bottom: 10px;
        }

        article p {
            margin-bottom: 20px;
            text-align: justify;
            color: #4a4a4a;
        }

        .transition-section {
            background: white;
            padding: 30px 40px;
            margin-bottom: 40px;
            border-radius: 8px;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
        }

        .transition-section p {
            color: #4a4a4a;
            margin-bottom: 15px;
            line-height: 1.7;
        }

        .links-section {
            background: white;
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
            margin-bottom: 40px;
        }

        .links-section h3 {
            font-size: 1.5em;
            color: #3d2416;
            margin-bottom: 20px;
            margin-top: 30px;
            padding-bottom: 10px;
            border-bottom: 2px solid #d4a574;
        }

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

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

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

        .links-section a {
            color: #5d3a2a;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
            position: relative;
            padding-left: 20px;
        }

        .links-section a:before {
            content: '→';
            position: absolute;
            left: 0;
            color: #d4a574;
            font-weight: bold;
        }

        .links-section a:hover {
            color: #d4a574;
            padding-left: 25px;
        }

        footer {
            background: linear-gradient(135deg, #2c1810 0%, #5d3a2a 100%);
            color: #f5e6d3;
            padding: 40px 0 20px;
            margin-top: 60px;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }

        .footer-section h4 {
            color: #d4a574;
            margin-bottom: 15px;
            font-size: 1.2em;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .footer-section p, .footer-section li {
            margin-bottom: 10px;
            color: #e0d5c7;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section a {
            color: #e0d5c7;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: #d4a574;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(212, 165, 116, 0.3);
            color: #c0b5a8;
            font-size: 0.9em;
        }

        @media (max-width: 768px) {
            .nav-container {
                flex-direction: column;
            }

            .nav-container a {
                text-align: center;
                padding: 12px 20px;
            }

            h1 {
                font-size: 1.8em;
                padding: 15px;
            }

            article {
                padding: 25px;
            }

            article h2 {
                font-size: 1.6em;
            }

            article h3 {
                font-size: 1.3em;
            }

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

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

            .links-section {
                padding: 25px;
            }

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

        @media (max-width: 480px) {
            body {
                font-size: 14px;
            }

            h1 {
                font-size: 1.5em;
            }

            article {
                padding: 20px;
            }

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