.special-trips-page {
  font-family: 'Montserrat', sans-serif;
}

/* HERO */
.special-hero {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
    url("../images/Kilimanjaro\ Tanzania.jpg") center/cover no-repeat;
  padding: 90px 20px;
  text-align: center;
  color: #fff;
}

.special-hero h1 {
  font-size: 2.4rem;
  margin-bottom: 10px;
}

/* SECTIONS */
.special-section {
  padding: 70px 20px;
}

.light-bg {
  background: #f9f9f9;
}

.container {
  max-width: 1200px;
  margin: auto;
}

/* GRID */
.special-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.special-content h2 {
  color: #228B22;
  margin-bottom: 15px;
}

.special-content p {
  margin-bottom: 12px;
  line-height: 1.7;
}

.special-content ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.special-content ul li {
  margin-bottom: 8px;
}

/* IMAGE */
.special-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* READ MORE BUTTON */
.read-more-btn {
  display: inline-block;
  padding: 12px 26px;
  background: #228B22;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
}

.read-more-btn:hover {
  background: #1c6f1c;
}

/* SPLIT ZANZIBAR */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.split-item {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.split-item img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.center-btn {
  text-align: center;
  margin-top: 40px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .special-grid,
  .split-grid {
    grid-template-columns: 1fr;
  }

  .special-hero h1 {
    font-size: 2rem;
  }
}
