/* Add your custom CSS code here */
/* General Styles */
body {
    font-family: Arial, sans-serif;
  }
  
  .section {
    padding: 80px 0;
  }
  
  .section-title {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .navbar-brand {
    font-size: 24px;
    font-weight: bold;
  }
  
  .navbar-nav .nav-link {
    font-size: 16px;
  }
  
  /* Home Section */
  #home {
    background-image: url("https://images.unsplash.com/photo-1590523277543-a94d2e4eb00b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1332&q=80");
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
  }
  
  #home .section-title {
    margin-bottom: 20px;
  }
  
  #home .section-description {
    margin-bottom: 40px;
    font-size: 20px;
  }
  
  /* Destinations Section */
  .destination {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
  }
  
  .destination img {
    transition: transform 0.3s ease;
  }
  