/* Basic Tourism Website Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background-color: #f9f9f9;
}

header {
  background: #009688;
  color: white;
  padding: 1rem 0;
  text-align: center;
}

nav {
  background: #00796b;
  display: flex;
  justify-content: center;
  padding: 0.5rem;
}

nav a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

.container {
  width: 80%;
  margin: 20px auto;
  background: white;
  padding: 20px;
  border-radius: 8px;
}

footer {
  text-align: center;
  padding: 1rem;
  background: #009688;
  color: white;
  position: relative;
  bottom: 0;
  width: 100%;
}

img {
  max-width: 100%;
  border-radius: 8px;
}

.footer-info {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  background-color: #00796b;
  color: white;
  padding: 30px 10%;
  flex-wrap: wrap;
}

.footer-column {
  flex: 1;
  min-width: 200px;
  margin: 10px;
}

.footer-column h3 {
  border-bottom: 2px solid #fff;
  padding-bottom: 8px;
  margin-bottom: 10px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  color: white;
  text-decoration: none;
}

.footer-column ul li a:hover {
  text-decoration: underline;
}

.footer-column p {
  margin: 5px 0;
}

/* Custom styles for background and font */
    .footer-info {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-around;
      padding: 2rem 1rem;
      background-color: #1f2937; /* Darker color for distinction */
      color: white;
    }
    .footer-column {
      margin: 1rem;
      min-width: 200px;
    }
    .footer-column h3 {
      border-bottom: 2px solid #3b82f6;
      padding-bottom: 0.5rem;
      margin-bottom: 1rem;
      font-weight: 600;
    }
    .footer-column ul {
      list-style: none;
      padding: 0;
    }
    .footer-column a {
      color: #9ca3af;
      text-decoration: none;
      transition: color 0.3s;
      display: block;
      padding: 0.25rem 0;
    }
    .footer-column a:hover {
      color: #ffffff;
    }
    /* Style for the main navigation */
    nav {
      background-color: #374151;
      display: flex;
      justify-content: center;
      padding: 0.75rem 0;
      flex-wrap: wrap;
    }
    nav a {
      color: white;
      padding: 0.5rem 1rem;
      text-decoration: none;
      transition: background-color 0.3s;
      border-radius: 0.375rem;
      margin: 0.25rem;
    }
    nav a:hover {
      background-color: #4b5563;
    }