body {
  font-family: 'Jost', Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #dbd7c3;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-image: url('https://www.example.com/your-background-image.jpg'); 
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #6F6635;
}
img {
  display: block;
  margin: 0 auto 40px auto;
}
a{
  color: #6F6635;
}
.container {
  width: 85%;
  max-width: 1200px;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
h1 {
  text-align: center;
  color: #6F6635;
  font-size: 36px;
  margin-bottom: 50px;
  font-weight: 600;
}
.table-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
th, td {
  padding: 20px;
  border-bottom: 1px solid #e0e0e0;
  text-align: center;
}
th {
  background-color: #33443E;
  color: #fff;
  font-weight: bold;
}
td {
  background-color: #fff;
  color: #6F6635;
}
td:last-child {
  font-weight: 600;
  color: #6F6635;
}
tr:hover td {
  background-color: #f9f9f9;
}
.button {
  display: inline-block;
  padding: 15px 35px;
  background-color: #212240;
  color: white;
  text-decoration: none;
  font-size: 18px;
  text-align: center;
  border-radius: 25px;
  transition: background-color 0.3s ease;
}
.button:hover {
  background-color: #2e2f4e;
}
@media (max-width: 768px) {
  .container {
    padding: 300px 50px 30px 50px;
    width: 100%;
    border-radius: 0px;
    background-color: #dbd7c3;
  }
  h1 {
    font-size: 28px;
  }
  table {
    font-size: 14px;
  }
  .button {
    font-size: 16px;
    padding: 12px 30px;
  }
}