.container {
    font-family: Arial, sans-serif;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.description {
    font-size: 16px;
    line-height: 1.5;
    color: #333;
}

.sub-description {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

th {
    background-color: #a9ba9d;
    color: white;
    padding: 10px;
    text-align: left;
}

td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

tr:nth-child(even) {
    background-color: #f9f9f9;
}

tr:nth-child(odd) {
    background-color: #ffffff;
}

a {
    text-decoration: none;
}

@media (max-width: 768px) {
  .container {
    padding: 15px;
  }

  .description {
    font-size: 14px;
  }

  .sub-description {
    font-size: 12px;
  }

  th, td {
    padding: 8px;
  }
}

@media (max-width: 480px) {
  .description {
    font-size: 13px;
  }

  .sub-description {
    font-size: 11px;
  }

  th, td {
    padding: 6px;
    font-size: 12px;
  }
}
