body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f9fd;
    color: #333;
  }
  header {
    background-color: #007bff;
    color: white;
    padding: 20px;
    text-align: center;
  }
  nav {
    margin-top: 10px;
  }
  nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
  }
  
  .container {
    padding: 40px 20px;
    max-width: 1000px;
    margin: auto;
    margin-top: 100px;
  }
  #plane{
    height: 200px;
    width: 200px;
  }
  #hotel{
    height: 200px;
    width: 200px;
  }
  #world{
    height: 200px;
    width: 200px;
  }
  .section-title {
    font-size: 28px;
    margin-bottom: 20px;
    color: #007bff;
  }
  .services {
    display: flex;
    justify-content: space-around;
    margin-top: 30px;
  }
  .service {
    text-align: center;
    max-width: 200px;
  }
  .service i {
    font-size: 40px;
    color: #1e90ff;
  }
  .testimonial {
    background-color: white;
    border-left: 5px solid #007bff;
    padding: 15px;
    margin: 20px 0;
  }
  footer {
    background-color: #007bff;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 40px;
  }