/* Base Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.tour-newsletter {
  padding: 50px 20px;
  background: #fff;
}

.container_features_2 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

/* Browse Tours */
.browse-tours {
  flex: 1 1 45%;
  margin: 15px;
}

.browse-tours h3 {
  font-size: 20px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tour-links {
  display: flex;
  gap: 40px;
}

.tour-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tour-links li {
  margin-bottom: 12px;
}

.tour-links a {
  text-decoration: none;
  color: #eb5e28;
  transition: color 0.3s ease;
}

.tour-links a:hover {
  color: #000;
}

/* Newsletter */
.newsletter {
  flex: 1 1 45%;
  margin: 15px;
}

.newsletter h3 {
  font-size: 20px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.newsletter p {
  color: #777;
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 15px;
  border: none;
  border-radius: 25px;
  background: #f3f3f3;
  font-size: 14px;
}

.newsletter-form button {
  padding: 12px 25px;
  background: #eb5e28;
  border: none;
  border-radius: 25px;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.newsletter-form button:hover {
  background: #eb5e28;
}

/* Social Icons */
.social-icons a {
  display: inline-block;
  margin: 0 6px;
  font-size: 16px;
  color: #999;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #eb5e28;
}

/* Responsive */
@media (max-width: 900px) {
  .container {
    flex-direction: column;
  }
  .browse-tours, .newsletter {
    flex: 1 1 100%;
  }
  .tour-links {
    gap: 20px;
  }
}
