body {
      font-family: Arial, sans-serif;
      line-height: 1.6;
      margin: 0;
      padding: 0;
      color: #333;
      background: url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?ixlib=rb-4.0.3&auto=format&fit=crop&w=1470&q=80') no-repeat center center fixed;
      background-size: cover;
      position: relative;
      min-height: 100vh;
    }
   
    /* Overlay for readability */
    body::before {
      content: "";
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(255, 255, 255, 0.85);
      z-index: -1;
    }
    header, section, footer {
      padding: 20px;
      margin: auto;
      max-width: 900px;
      background-color: #fff;
      margin-bottom: 20px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      border-radius: 8px;
    }
    h1, h2, h3 {
      color: #0056a3;
    }
    ul, ol {
      padding-left: 20px;
    }
    table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 10px;
    }
    table, th, td {
      border: 1px solid #ccc;
    }
    th, td {
      padding: 10px;
      text-align: left;
    }
    /* Style thead with a distinct background */
    th {
      background-color: #0073e6;
      color: white;
    }
    input[type="text"], input[type="tel"], select {
      width: 100%;
      padding: 10px;
      margin-top: 10px;
      border: 1px solid #ccc;
      border-radius: 4px;
      box-sizing: border-box;
    }
    .consent {
      margin-top: 15px;
    }
    .cta {
      background-color: #0073e6;
      color: #fff;
      padding: 12px;
      text-align: center;
      border-radius: 5px;
      text-decoration: none;
      display: inline-block;
      margin-top: 15px;
      border: none;
      cursor: pointer;
      font-size: 16px;
      transition: background-color 0.3s ease;
    }
    .cta:hover {
      background-color: #005bb5;
    }
    /* Flight image inserted between sections */
    .flight-image {
    display: block;
    width: 500px;  /* Fixed width */
     height: auto;
     margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }
 