body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background: #f8f8f8;
}

header {
  background: #218cb6;
  color: white;
  padding: 20px 0;
  text-align: center;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 30px 20px;
}

.trip {
  background: white;
  margin-bottom: 40px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.08);
}

.trip img {
  width: 100%;
  height: auto;
}

.trip-content {
  padding: 20px;
}

.trip-content h2 {
  margin-top: 0;
  color: #2E4A42;
}

.trip-content p {
  margin-bottom: 10px;
  line-height: 1.6;
}

.trip-details {
  margin-top: 10px;
  font-weight: bold;
}

.btn {
  display: inline-block;
  margin-top: 15px;
  background-color: #2E4A42;
  color: white;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #3a5e57;
}
