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

        body {
            font-family: Arial, Helvetica, sans-serif;
            background: linear-gradient(135deg, #f5f5f1 0%, #e8e8e0 100%);
            color: #0d523b;
            line-height: 1.6;
            margin: 0;
            padding: 20px 10px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            background: #ffffff;
            border-radius: 12px;
            box-shadow: 0 8px 32px rgba(13, 82, 59, 0.1);
            overflow: hidden;
        }

        .header {
            background: linear-gradient(135deg, #98b4b0 0%, #9db3b0 100%);
            padding: 20px;
            text-align: center;
            color: white;
            border-bottom: 4px solid #0d523b;
        }

        .header h1 {
            font-size: clamp(1.5rem, 4vw, 2.5rem);
            font-weight: bold;
            margin-bottom: 10px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .header .subtitle {
            font-size: clamp(0.9rem, 2vw, 1.1rem);
            opacity: 0.9;
        }

        .navbar {
            background: #0d523b;
            padding: 15px 0;
            text-align: center;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .navbar a {
            color: white;
            text-decoration: none;
            margin: 0 15px;
            font-weight: bold;
            font-size: 14px;
            padding: 8px 12px;
            border-radius: 6px;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .navbar a:hover {
            background: #c86400;
            transform: translateY(-2px);
        }

        .main-content {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            padding: 30px;
        }

        .content {
            flex: 2;
            min-width: 0;
        }

        .sidebar {
            flex: 1;
            min-width: 250px;
            background: #f8f9fa;
            border-radius: 8px;
            padding: 25px;
            height: fit-content;
            border: 2px solid #e8e8e0;
        }

        .sidebar-section {
            margin-bottom: 30px;
        }

        .sidebar-header {
            background: linear-gradient(135deg, #98b4b0 0%, #9db3b0 100%);
            color: white;
            padding: 12px;
            border-radius: 6px;
            font-weight: bold;
            text-align: center;
            margin-bottom: 15px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .sidebar a {
            color: #c86400;
            text-decoration: none;
            font-size: 13px;
            display: block;
            padding: 5px 0;
            border-bottom: 1px solid #e8e8e0;
            transition: color 0.3s ease;
        }

        .sidebar a:hover {
            color: #0d523b;
            font-weight: bold;
        }

        article {
            margin-bottom: 30px;
            padding: 25px;
            background: #ffffff;
            border-radius: 8px;
            box-shadow: 0 4px 16px rgba(0,0,0,0.05);
            border: 1px solid #e8e8e0;
        }

        article h2 {
            color: #0d523b;
            font-size: clamp(1.3rem, 3vw, 1.8rem);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 3px solid #c86400;
        }

        article p {
            margin-bottom: 15px;
            text-align: justify;
            color: #333;
            font-size: 14px;
        }

        .transition-section {
            margin: 30px 0;
            padding: 20px;
            background: linear-gradient(135deg, #f8f9fa 0%, #e8e8e0 100%);
            border-radius: 8px;
            border: 1px solid #c86400;
        }

        .links-section {
            margin-top: 30px;
            padding: 25px;
            background: #ffffff;
            border-radius: 8px;
            box-shadow: 0 4px 16px rgba(0,0,0,0.05);
            border: 1px solid #e8e8e0;
        }

        .links-section h3 {
            color: #0d523b;
            font-size: clamp(1.1rem, 2.5vw, 1.4rem);
            margin-bottom: 15px;
            padding: 10px 15px;
            background: linear-gradient(135deg, #98b4b0 0%, #9db3b0 100%);
            color: white;
            border-radius: 6px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

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

        .links-section li {
            padding: 12px 15px;
            background: #f8f9fa;
            border-radius: 6px;
            border-left: 4px solid #c86400;
            transition: all 0.3s ease;
        }

        .links-section li:hover {
            background: #e8e8e0;
            transform: translateX(5px);
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }

        .links-section a {
            color: #c86400;
            text-decoration: none;
            font-size: 13px;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .links-section a:hover {
            color: #0d523b;
            font-weight: bold;
        }

        .footer {
            background: linear-gradient(135deg, #98b4b0 0%, #9db3b0 100%);
            padding: 20px;
            text-align: center;
            color: white;
            border-top: 4px solid #0d523b;
            margin-top: 30px;
        }

        .footer a {
            color: white;
            text-decoration: none;
            margin: 0 10px;
            font-size: 11px;
            transition: color 0.3s ease;
        }

        .footer a:hover {
            color: #c86400;
        }

        @media (max-width: 768px) {
            .main-content {
                flex-direction: column;
                padding: 20px;
                gap: 20px;
            }

            .sidebar {
                min-width: 100%;
                margin-top: 20px;
            }

            .navbar {
                padding: 10px 0;
            }

            .navbar a {
                margin: 5px 8px;
                font-size: 12px;
            }

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

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

            .header, .footer {
                padding: 15px;
            }

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