/* CSS for the layout and styling */
body {
    font-family: sans-serif;
    text-align: center;
  }
  form {
    max-width: 500px;
    margin: auto;
    padding: 20px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    box-shadow: 2px 2px 5px #eee;
    border-radius: 10px;
  }
  label {
    display: block;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 18px;
  }
  input[type="text"], select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    border-radius: 5px;
  }
  input[type="submit"] {
    background-color: #4CAF50;
    color: white;
    padding: 12px 20px;
    border: none;
    cursor: pointer;
    width: 100%;
    border-radius: 5px;
  }
  input[type="submit"]:hover {
    background-color: #45a049;
  }
  .result {
    margin: 20px auto;
    width: 500px;
    text-align: center;
  }
  .result-item {
    display: inline-block;
    margin: 10px;
    font-size: 18px;
    font-weight: bold;
  }
  .result-label {
    display: block;
    margin-bottom: 5px;
    font-weight: normal;
  }
  