    body {
      font-family: Arial, sans-serif;
      line-height: 1.6;
      margin: 0;
      padding: 2rem;
      background: #f9f9f9;
      color: #333;
    }
    h1, h2, h3 {
      color: #0e4a7b;
    }
    h1 {
      border-bottom: 2px solid #ccc;
      padding-bottom: 0.5rem;
    }
    hr {
      border: none;
      border-top: 1px solid #ccc;
      margin: 2rem 0;
    }
    section {
      margin-bottom: 2rem;
    }
    ul {
      padding-left: 1.5rem;
    }
    
    .footer {
      margin-top: 4rem;
      font-size: 0.9rem;
      color: #666;
    }

    footer {
        background-color: #333;
        color: white;
        padding: 10px 0;
        text-align: center;
    }

    .contact {
        margin: 0;
    }

    .contact-list {
        font-family: Arial, sans-serif;
        font-size: 16px;
        text-align: center;
    }

    .contact-list a {
        color: #333;
        text-decoration: none;
        font-weight: bold;
        transition: color 0.3s ease;
        margin: 15px;
    }

    .contact-list a:hover {
        color: #ff9800;
    }

    #scrollToTopBtn {
      position: fixed;
      bottom: 40px;
      right: 40px;
      z-index: 100;
      background-color: #333;
      color: #ff9800;
      border: none;
      padding: 14px 18px;
      border-radius: 50%;
      font-size: 24px;
      cursor: pointer;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      display: none;
      transition: background-color 0.3s ease, transform 0.3s ease;
    }

#scrollToTopBtn:hover {
      background-color: #555;
      transform: translateY(-2px);
    }

.container {
    width: 90%;
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

th, td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: #ff9900;
    color: white;
}

tr:nth-child(even) {
    background-color: #f2f2f2;
}

td {
    font-size: 1em;
    color: #333;
}

tr:hover {
    background-color: #f1f1f1;
}