body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-image: url("../images/background.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: color;
    background-attachment: fixed;
    background-color: #ffffff80;
    
  }
  
  header {
    background-color: #3f1b53;
    color: #fff;
    padding: 1em;
    text-align: center;
    border-bottom: 2px solid #39343f;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  header nav ul li {
    display: inline-block;
    margin-right: 20px;
  }
  
  header nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
  }

  header nav a1:hover {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
  }

  header nav a:hover{
    color: #a3da58;
    height: 100%;
  }
  
  main {
    width: 50%;
    margin: 20px auto;
    background-color: #ffffff;
    padding: 20px;
    border: 1px solid #ddd;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  section {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
  }
  
  h1 {
    font-size: 24px;
    margin-top: 0;
    color: #42144c;
  }
  
  h2 {
    font-size: 18px;
    margin-top: 0;
    color: #333;
  }
  
  .gallery-container {
    display: block;
  }
  
  .gallery-container img {
    width: 200px;
    height: 150px;
    margin: 10px;
    border: 1px solid #ddd;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }

.airport-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.airport-item {
  width: 33%;
  text-align: center;
}

.airport-item img {
  width: 100%;
  height: 150px;
  object-fit: contain;
}

/* Optional: Add some spacing below the images */
.airport-item p {
  margin-top: 10px;
}

/* Optional: Make it responsive for smaller screens */
@media (max-width: 768px) {
  .airport-container {
    flex-direction: column;
    align-items: center;
  }

  .airport-item {
    width: 80%;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .headshots{
    flex-direction: column;
    align-items: center;
  }

  .contact-us{
    width: 80%;
    margin-bottom: 20px;
  }
}

  blockquote {
    background-color: #f0f0f0;
    padding: 10px;
    border: 1px solid #ddd;
  }
  
  cite {
    display: block;
    margin-top: 10px;
  }
  
  form {
    margin-top: 20px;
  }
  
  label {
    display: block;
    margin-bottom: 10px;
  }
  
  input, textarea {
    width: 95%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
  }
  
  button {
    background-color: #b9450b;
    color: #fff;
    padding: 10px 20px;
    border: none;
    font-weight: bold;
    cursor: pointer;
  }

  button:hover {
    background-color: #923709;
    padding: 9px 19px;
    border: 1px solid #333;
  }
  
  