
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: Arial, Helvetica, sans-serif;
            color: #000000;
            background-color: #FFFFFF;
            line-height: 1.6;
            padding: 20px;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            background-color: #FFFFFF;
        }
        
        header {
            text-align: center;
            padding: 30px 20px;
            background: linear-gradient(135deg, #C1DBB7 0%, #97BE92 100%);
            border-radius: 8px;
            margin-bottom: 40px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        h1 {
            font-family: 'Times New Roman', Times, serif;
            font-size: 3em;
            color: #008000;
            margin-bottom: 10px;
            font-weight: normal;
        }
        
        .subtitle {
            font-family: 'Times New Roman', Times, serif;
            font-size: 1.5em;
            color: #008080;
            margin-bottom: 20px;
        }
        
        article {
            background-color: #FFFFFF;
            padding: 30px;
            margin-bottom: 40px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
        }
        
        article h2 {
            color: #008000;
            font-size: 1.8em;
            margin-top: 30px;
            margin-bottom: 15px;
            font-family: 'Times New Roman', Times, serif;
        }
        
        article h3 {
            color: #008080;
            font-size: 1.4em;
            margin-top: 25px;
            margin-bottom: 12px;
        }
        
        article h4 {
            color: #0000FF;
            font-size: 1.2em;
            margin-top: 20px;
            margin-bottom: 10px;
        }
        
        article p {
            margin-bottom: 15px;
            font-size: 1em;
            text-align: justify;
        }
        
        article a {
            color: #0000FF;
            text-decoration: none;
        }
        
        article a:hover {
            text-decoration: underline;
        }
        
        .transition-section {
            background-color: #E8F3F4;
            padding: 30px;
            margin-bottom: 40px;
            border-radius: 8px;
            border: 1px solid #C1DBB7;
        }
        
        .transition-section p {
            margin-bottom: 15px;
            font-size: 1em;
        }
        
        .links-section {
            background-color: #F5F9F5;
            padding: 40px 30px;
            border-radius: 8px;
            border: 2px solid #C1DBB7;
            margin-bottom: 40px;
        }
        
        .links-section h2 {
            color: #008000;
            font-size: 2em;
            text-align: center;
            margin-bottom: 30px;
            font-family: 'Times New Roman', Times, serif;
        }
        
        .links-section h3 {
            color: #0000FF;
            font-size: 1.3em;
            margin-top: 25px;
            margin-bottom: 15px;
            font-weight: bold;
        }
        
        .links-section ul {
            list-style: none;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px 30px;
            margin-bottom: 20px;
        }
        
        .links-section li {
            padding: 8px 0;
            border-bottom: 1px solid #E0E0E0;
        }
        
        .links-section a {
            color: #0000FF;
            text-decoration: none;
            font-size: 0.95em;
            display: block;
            transition: color 0.3s ease;
        }
        
        .links-section a:hover {
            color: #008080;
            text-decoration: underline;
        }
        
        footer {
            text-align: center;
            padding: 30px 20px;
            background-color: #C1DBB7;
            border-radius: 8px;
            margin-top: 40px;
            font-size: 0.9em;
            color: #000000;
        }
        
        @media (max-width: 768px) {
            body {
                padding: 10px;
            }
            
            h1 {
                font-size: 2em;
            }
            
            .subtitle {
                font-size: 1.2em;
            }
            
            article {
                padding: 20px;
            }
            
            article h2 {
                font-size: 1.5em;
            }
            
            article h3 {
                font-size: 1.2em;
            }
            
            .links-section {
                padding: 25px 15px;
            }
            
            .links-section ul {
                grid-template-columns: 1fr;
                gap: 5px;
            }
            
            .links-section h2 {
                font-size: 1.6em;
            }
            
            .links-section h3 {
                font-size: 1.1em;
            }
            
            header {
                padding: 20px 15px;
            }
        }
        
        @media (max-width: 480px) {
            h1 {
                font-size: 1.6em;
            }
            
            .subtitle {
                font-size: 1em;
            }
            
            article {
                padding: 15px;
            }
            
            article h2 {
                font-size: 1.3em;
            }
            
            .links-section {
                padding: 20px 10px;
            }
        }
    