.xtrme-tour-card {
  border: 3px solid #fdd000;
  border-radius: 20px;
  padding: 20px;
  max-width: 360px;
  margin: 20px auto;
  background: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  font-family: Arial, sans-serif;
}

.xt-logo {
  text-align: center;
  margin-bottom: 15px;
}

.xt-logo img {
  max-width: 100%;
  height: auto;
}

.xt-price {
  text-align: center;
  font-size: 1.5em;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
}

.xt-price span {
  display: block;
  font-size: 0.8em;
  color: #666;
  font-weight: normal;
}

.xt-details {
  list-style-type: disc;
  padding-left: 20px;
  margin: 20px 0;
  color: #333;
  line-height: 1.6;
}

.xt-details li {
  margin: 8px 0;
}

.xt-assistance {
  color: #4caf50;
  font-style: italic;
  margin: 15px 0 10px;
  text-align: center;
}

.xt-buttons {
  display: flex;
  justify-content: space-between;
  margin: 10px 0;
  gap: 10px;
}

.xt-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 15px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9em;
  transition: all 0.3s;
}

.xt-inquire {
  background: #fdd000;
  color: #000;
}

.xt-contact {
  background: #2e7d32;
  color: white;
}

.xt-btn svg {
  flex-shrink: 0;
}

.xt-btn span {
  margin-left: 8px;
}

.xt-availability {
  text-align: center;
  margin: 15px 0;
}

.xt-availability a {
  color: #4caf50;
  text-decoration: none;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s;
}

.xt-availability svg {
  flex-shrink: 0;
}

.xt-availability span {
  margin-left: 8px;
}

.xt-book-now {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.xt-book-btn {
  background: linear-gradient(to right, #4caf50, #2e7d32);
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.4em;
  font-weight: bold;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}

.xt-book-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.xt-book-btn svg {
  flex-shrink: 0;
}

.xt-book-btn span {
  margin-left: 10px;
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .xtrme-tour-card {
    padding: 15px;
  }

  .xt-buttons {
    flex-direction: column;
  }

  .xt-btn {
    justify-content: center;
  }

  .xt-book-btn {
    font-size: 1.2em;
    padding: 12px 25px;
  }
}
