body {
    font-family: "Arial", Helvetica, Arial, sans-serif;
    font-size: 20px;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
}

.container {
    width: 70%;
    /* Decrease the width to create more space on the sides */
    margin: 0 auto;
    /* Center the container horizontally */
    overflow: hidden;
}

header {
    background: #f88749;
    color: #fff;
    padding-top: 30px;
    min-height: 70px;
    border-bottom: #77aaff 3px solid;
}

header h1 {
    text-align: center;
    text-transform: uppercase;
    margin: 0;
    font-style: italic;
    font-size: 2em;
}


header h1 a.no-color-change {
    color: inherit;
    text-decoration: none;
}

section {
    padding: 20px;
    background: #fff;
    margin: 20px 0;
}

h2 {
    color: #000000;
}

h3 {
    color: #000000;
    display: inline-block;
    border-bottom: 2px solid #000000;
    /* Adjust the color and thickness as needed */
    padding-bottom: 4px;
    /* Optional: Adds some space between the text and the underline */
    margin-bottom: 0;
    /* This removes the default margin below the heading */
}

p {
    line-height: 1.5;
    /* Adjust this value to increase or decrease line spacing */
    margin-bottom: 35px;
}




table {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

table, th, td {
    font-family: "Calibri", Arial, sans-serif;
    font-size: 20px;
}

th, td {
    padding: 12px 16px;
    text-align: left;
    border: 1px solid #ddd;
}

th {
    background-color: #4CAF50;
    color: white;
}

td {
    background-color: #f9f9f9;
}

td:first-child {
    width: 300px; /* Wider first column */
}

tr:nth-child(even) td {
    background-color: #f2f2f2;
}

tr:hover td {
    background-color: #e0f7fa;
}

a {
    color: blue;
    /* Sets the link color to blue */
    text-decoration: none;
    /* Removes the underline from the link */
}

a:visited {
    color: blue;
    /* Sets the visited link color to purple */
}

a:hover {
    font-style: italic;
    /* Makes the text italic on hover */
    text-decoration: none;
    /* Adds an underline on hover */
}
