
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: Arial, Helvetica, sans-serif;
            color: #333333;
            line-height: 1.6;
            padding: 20px;
            background: #ffffff;
        }
        h1 {
            color: #d86018;
            font-size: 24px;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #f9a825;
        }
        h2 {
            color: #d86018;
            font-size: 20px;
            margin: 25px 0 12px;
            padding-left: 8px;
            border-left: 4px solid #f9a825;
        }
        h3 {
            color: #333333;
            font-size: 17px;
            margin: 18px 0 8px;
        }
        p {
            margin-bottom: 12px;
            text-align: justify;
        }
        ul, ol {
            margin: 10px 0 15px 30px;
        }
        li {
            margin-bottom: 6px;
        }
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 15px 0;
            border: 1px solid #cccccc;
        }
        table thead tr {
            background-color: #f9a825;
            color: #000000;
            font-weight: bold;
        }
        table td, table th {
            border: 1px solid #cccccc;
            padding: 10px 8px;
            text-align: center;
        }
        table tbody tr:nth-child(even) {
            background-color: #fafafa;
        }
        .highlight {
            font-weight: bold;
            color: #d86018;
        }
    