* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f9f9f9;
    color: #333;
    
  }
  
  .booking-container {
    max-width: 800px;
    margin: auto;
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
  }
  
  .booking-container h1 {
    text-align: center;
    margin-bottom: 30px;
    color:  rgb(194, 72, 113);
  }
  
  .booking-form {
    display: flex;
    flex-direction: column;
  }
  
  fieldset {
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 20px;
  }
  
  legend {
    font-weight: bold;
    padding: 0 10px;
    color: #444;
  }
  
  label {
    display: block;
    margin-top: 15px;
    font-weight: 500;
  }
  
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="number"],
  input[type="date"],
  input[type="time"],
  select,
  textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 1em;
    background-color: #fefefe;
  }
  
  input[type="checkbox"] {
    margin-right: 10px;
  }
  
  textarea {
    resize: vertical;
  }
  
  button[type="submit"] {
    margin-top: 20px;
    padding: 12px;
    background-color:  rgb(188, 72, 111);
    color: white;
    border: none;
    font-size: 1.1em;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width:200px;

    align-self: center;
  }
  
  button[type="submit"]:hover {
    background-color:  rgb(188, 40, 89);
  }
  
 
  @media (max-width: 600px) {
    .booking-container {
      padding: 20px;
    }
  
    fieldset {
      padding: 15px;
    }
  
    legend {
      font-size: 1.1em;
    }
  }
  nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
  }
  nav ul li a:hover {
    background-color:#385069;
  }
  nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    transition: background 0.3s;
  }
  header {
    text-align: center;
    background: #34495e;
    padding: 50px 20px 20px;
  }
  
  header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #34495e;
  }
  .footer {
    background-color: #2c3e50;
    color: #fff;
    padding: 2rem 0;
    font-family: Arial, sans-serif;
  }
  
  .footer-content {
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    flex-wrap: wrap;
    gap: 2rem;
  }
  
  .footer-column {
    flex: 1;
    min-width: 250px;
  }
  
  .footer-column h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #ecf0f1;
  }
  
  .footer-links {
    list-style: none;
    padding: 0;
    flex-wrap: wrap;
  display:flex;
  gap: 2rem;
  }
  
  .footer-links li {
    margin-bottom: 0.5rem;
  }
  
  .footer-links li a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
  }
  
  .footer-links li a:hover {
    color: #677e96;
  }
  
  .footer-column a {
    text-decoration: none;
    color: #ecf0f1;
  }
  
  .footer-column a:hover {
    color: #677e96;
  }
  
  .footer-bottom {
    text-align: center;
    background-color: #34495e;
    padding: 1rem;
    margin-top: 2rem;
  }
  
  .footer-bottom p {
    font-size: 1rem;
    color: #bdc3c7;
  }