:root {
  --primary-red: #dc3223;
  --primary-blue: #3117f4;
  --text-dark: #141826;
  --text-light: #656565;
  --background-light: #f7f7f7;
}

body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  background-color: var(--background-light);
  color: var(--text-dark);
}

.cruise-wrapper {
  max-width: 1100px;
  margin: 4rem auto;
  padding: 2rem;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.cruise-wrapper h1 {
  font-size: 40px;
  text-align: center;
  color: black;
  margin-bottom: 0.5rem;
}

.cruise-wrapper .subtitle {
  text-align: center;
  color: var(--primary-red);
  font-weight: 500;
  margin-bottom: 2rem;
}

.cruise-img {
  width: 100%;
  max-height: 500px;
  border-radius: 8px;
  margin-bottom: 2rem;
  object-fit: cover;
}

.cruise-wrapper h2 {
  font-size: 24px;
  margin-top: 2rem;
  color: black;
}

.cruise-wrapper p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-light);
}

.cruise-wrapper ul {
  padding-left: 1.25rem;
  margin-top: 1rem;
  margin-bottom: 2rem;
  color: var(--text-light);
}

.cruise-wrapper li {
  margin-bottom: 0.5rem;
}

.airport-pricing ul {
  list-style: none;
  padding: 0;
  font-size: 16px;
  margin-top: 1rem;
  color: var(--text-light);
}

.airport-pricing ul strong {
  color: var(--text-dark);
}

.airport-pricing li {
  margin-bottom: 0.5rem;
}

.note {
  margin-top: 1.5rem;
  background: #fdf2f2;
  border-left: 5px solid var(--primary-red);
  padding: 1rem;
  border-radius: 4px;
  font-size: 15px;
  color: var(--text-dark);
}

.cta-contact {
  font-size: 16px;
  margin-top: 2rem;
  font-weight: 500;
  color: var(--primary-blue);
}

@media (max-width: 768px) {
  .cruise-wrapper {
    padding: 1rem;
  }

  .cruise-wrapper h1 {
    font-size: 32px;
  }
}
