body {
    background-color: #fdf6ef;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    color: #3b2f2f;
  }
  
  h1 {
    text-align: center;
    font-size: 38px;
    margin-top: 40px;
    color: #7c3e0a; /* deep earthy orange */
    font-weight: bold;
    letter-spacing: 1px;
  }
  
  h2 {
    margin: 0 0 5px;
    font-size: 24px;
    color: #4b3621; /* dark brown */
  }
  
  select {
    display: block;
    width: 100%;
    font-size: 16px;
    padding: 12px;
    margin-bottom: 20px;
    border: 2px solid #c08552;
    border-radius: 6px;
    background-color: #fff7f0;
    color: #4b3621;
    appearance: none;
  }
  
  .container {
    max-width: 700px;
    margin: 50px auto;
    background: #fffdf8;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(124, 62, 10, 0.15);
    border: 1px solid #f0dfc5;
  }
  
  .city {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    border-bottom: 1px solid #ebd5ba;
  }
  
  .city:last-child {
    border-bottom: none;
  }
  
  .date {
    font-size: 14px;
    color: #8d775f;
  }
  
  .time {
    font-size: 40px;
    font-weight: 600;
    color: #3b2f2f;
  }
  
  .time small {
    font-size: 18px;
    vertical-align: middle;
    color: #c07f3c;
  }
  
  footer {
    text-align: center;
    font-size: 14px;
    margin: 40px 0 20px;
    color: #83623c;
  }
  
  a {
    color: #a95c1b;
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: underline;
  }