
    /* General Styles */
    body {
        font-family: Arial, sans-serif;
        line-height: 1.6;
        color: #202122;
        background-color: #f8f9fa;
        margin: 0;
        padding: 0;
    }

    header {
        background-color: #3366cc;
        color: white;
        padding: 15px 20px;
        text-align: center;
        font-size: 1.8em;
        font-family: Georgia, serif;
        border-bottom: 4px solid #2a4b8d;
    }

    nav {
        background-color: #f0f0f0;
        padding: 10px;
        text-align: center;
        border-bottom: 1px solid #ddd;
    }

    nav a {
        color: #3366cc;
        text-decoration: none;
        margin: 0 15px;
        font-size: 1.1em;
    }

    nav a:hover {
        text-decoration: underline;
    }

    .container {
        padding: 20px;
        max-width: 1200px;
        margin: auto;
        background-color: white;
        border: 1px solid #ddd;
        border-radius: 4px;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    }

    h1, h2 {
        font-family: Georgia, serif;
        color: #202122;
        line-height: 1.3;
    }

    h1 {
        font-size: 2em;
        margin-top: 0px;
    }

    h2 {
        font-size: 1.5em;
        margin-top: 15px;
    }

    .description {
        background-color: #f5f5f5;
        padding: 15px;
        border-left: 4px solid #3366cc;
        margin-bottom: 20px;
        border-radius: 4px;
    }

    .description ul, .description ol {
        margin-left: 20px;
        padding-left: 20px;
    }

    table {
        width: 100%;
        border-collapse: collapse;
        margin: 20px 0;
    }

    th, td {
        padding: 8px 12px;
        border: 1px solid #ddd;
        text-align: left;
    }

    th {
        background-color: #f8f9fa;
        font-weight: bold;
    }

    tr:nth-child(even) {
        background-color: #f9f9f9;
    }

    tr:hover {
        background-color: #f1f1f1;
    }

    .file-links {
        margin-top: 20px;
        text-align: center;
    }

    .file-links table {
        margin: auto;
    }

    .breadcrumbs {
        font-size: 0.9em;
        margin-bottom: 20px;
        color: #666;
    }

    .breadcrumbs a {
        color: #3366cc;
        text-decoration: none;
    }

    .breadcrumbs a:hover {
        text-decoration: underline;
    }

    footer {
        text-align: center;
        padding: 10px;
        margin-top: 20px;
        font-size: 0.9em;
        color: #666;
    }

    a {
        color: #3366cc;
        text-decoration: none;
    }

    a:hover {
        text-decoration: underline;
    }

    ul {
        list-style: none;
        padding-left: 0px;
    }
    