* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    background-color: #e0f7fa;
  }
  
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #d0f0f9;
    padding: 15px 30px;
  }
  
  .logo {
    display: flex;
    align-items: center;
    gap: 10px; 
  }
  
  .logo img {
    height: 50px;
    width: auto;
  }
  
  .logo span {
    font-size: 80px;
    font-weight: bold;
    color: #000;
  }
  
  
  
  nav ul {
    display: flex;
    list-style: none;
  }
  
  nav ul li {
    margin-left: 20px;
  }
  
  nav ul li a {
    text-decoration: none;
    color: #000;
  }
  
  nav ul li a:hover {
    text-decoration: underline;
  }

  /* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Body */
  body {
    font-family: Arial, sans-serif;
    background-color: #d5f6ff;
    padding: 20px;
  }
  
  /* Breadcrumb */
  .breadcrumb {
    margin-bottom: 20px;
    font-size: 18px;
    color: #333;
  }
  
  .breadcrumb a {
    color: #0077aa;
    text-decoration: none;
  }
  
  .breadcrumb span {
    color: #555;
  }

  .breadcrumb .current {
  font-weight: bold;
  color: #000;
}
  
  /* Destination List */
  .destination-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  
  /* Destination Item */
  .destination-item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 15px;
  }
  
  .destination-info {
    flex: 1;
  }
  
  .destination-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #222;
  }
  
  .destination-info img {
    width: 100%;
    max-width: 350px;
    height: auto;
    border-radius: 5px;
    margin-bottom: 10px;
  }
  
  .rating {
    font-size: 18px;
    color: gold;
  }
  
  .destination-map {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .destination-map img {
    width: 100%;
    max-width: 350px;
    border-radius: 5px;
  }
  
  /* Pagination */
  .pagination {
    text-align: center;
    margin-top: 30px;
  }
  
  .pagination button {
    background-color: #eee;
    border: 1px solid #ccc;
    padding: 8px 12px;
    margin: 2px;
    cursor: pointer;
  }
  
  .pagination .active {
    background-color: #0077aa;
    color: white;
    border-color: #0077aa;
  }
  
  /* RESPONSIVE */
  @media (max-width: 768px) {
    .destination-item {
      flex-direction: column;
      align-items: center;
      gap: 15px;
    }
  
    .destination-map img,
    .destination-info img {
      max-width: 100%;
    }
  }
  .main-footer {
    background-color: #1c1c1c;
    color: white;
    padding: 2rem 1rem;
    font-family: 'Arial', sans-serif;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
  }
  
  .footer-about,
  .footer-links,
  .footer-service {
    flex: 1;
    min-width: 250px;
    margin: 1rem;
  }
  
  .footer-about h3,
  .footer-service h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: bold;
  }
  
  .footer-about p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #ccc;
  }
  
  .footer-links ul {
    list-style-type: disc;
    padding-left: 1rem;
  }
  
  .footer-links li {
    margin: 0.5rem 0;
  }
  
  .footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .footer-links a:hover {
    color: #90caf9;
  }
  
  .footer-service .contact-item {
    background-color: #ccc;
    color: #000;
    padding: 0.5rem;
    margin-bottom: 0.5rem;
    text-align: center;
    border-radius: 5px;
    font-size: 0.9rem;
    word-wrap: break-word;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .footer-about,
    .footer-links,
    .footer-service {
      margin: 1rem 0;
    }
  
    .footer-links ul {
      padding-left: 0;
      list-style-position: inside;
    }
  }
  