/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Body Styling */
  body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #FAF9F6;
    color: #222;
    line-height: 1.6;
    padding: 0 20px;
  }
  
  /* Header */
  header {
    background-color: #738bd4;
    color: #fff;
    padding: 20px 0;
    text-align: center;
  }
  
  header h1 {
    margin-bottom: 10px;
  }
  
  nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 10px;
  }
  
  nav a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.2s ease-in-out;
  }
  
  nav a:hover {
    color: #FFD369;
    text-decoration: underline;
  }
  
  /* Main Sections */
  main {
    margin: 30px auto;
    max-width: 900px;
  }
  
  .hero {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .hero-image {
    width: 100%;
    max-height: 350px;
    object-fit: cover;
    border-radius: 8px;
    margin: 15px 0;
  }
  
  .intro, .features {
    margin-bottom: 25px;
  }
  
  .features ul {
    margin-left: 20px;
    list-style-type: disc;
  }
  
  .destinations-list article {
    margin-bottom: 30px;
  }
  
  .destination-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 10px 0;
    border-radius: 5px;
  }
  
  /* Footer */
  footer {
    text-align: center;
    padding: 15px;
    background-color: #D9E4EC;
    margin-top: 40px;
  }
  .contact-form {
    max-width: 600px;
    margin: 20px auto;
    padding: 15px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin: 8px 0 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  .contact-form button {
    background-color: #738bd4;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  .contact-form button:hover {
    background-color: #5a72b3;
  }
    