body {
    font-family: 'Baloo 2', "Comic Sans MS", "Comic Sans", cursive, sans-serif;
    margin: 0;
    padding: 0;
    background: #fff7e6;
    color: #4a2c00;
    text-align: center;
    font-style: normal;
  }

  * {
    font-style: normal;
  }
  
  nav {
    background: linear-gradient(to right, #ffd966, #f9cb9c, #b6d7a8);
    padding: 1rem;
    border-bottom: 4px solid #e69138;
  }
  
  nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
  }
  
  nav li {
    margin: 0 1rem;
  }
  
  nav a {
    text-decoration: none;
    color: #5b3c11;
    font-weight: bold;
  }
  
  .center-content {
    padding: 2rem;
  }
  
  .center-content img {
    max-width: 300px;
    height: auto;
    margin-bottom: 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }
  
  table {
    margin: 2rem auto;
    border-collapse: collapse;
    width: 90%;
    max-width: 600px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
  }
  
  table th, table td {
    border: 1px solid #f0c57c;
    padding: 0.75rem;
  }
  
  table th {
    background-color: #ffd966;
  }
  
  #payment {
    padding: 1rem;
  }
  
  .pay-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #f9cb9c;
    color: #4a2c00;
    text-decoration: none;
    font-weight: bold;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: background-color 0.3s ease;
  }
  
  .pay-button:hover {
    background-color: #ffd966;
  }
  