  /* Body Styles */
body {
  font-family: 'Arial', sans-serif;
  background-color: #f4f4f4;
  color: #333;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Page Top Section (Zanzibar) */
.pagetop {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  padding: 40px 20px;
}

.pagetop::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.pagetop .container {
  position: relative;
  z-index: 2;
}

.pagetop h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.breadcrumbs {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 1rem;
}

.breadcrumbs li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs li a:hover {
  color: #f1c40f;
}

.breadcrumbs li:last-child {
  color: #f1c40f;
}

/* Kilimanjaro Hero Section */
.block.full-height {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  padding: 40px 0;
}

.fixed-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.fixed-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.big-text.style2 {
  position: relative;
  z-index: 3;
  background: rgba(255, 255, 255, 0.9);
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.big-text.style2 h1 {
  font-size: 1.8rem;
  color: #2c3e50;
  margin-bottom: 15px;
}

.big-text.style2 p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
}

.big-text.style2 .btn {
  display: inline-block;
  background: #f1c40f;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.big-text.style2 .btn:hover {
  background: #e67e22;
}

/* Kilimanjaro Climbing Section */
.col-title {
  font-size: 1.8rem;
  color: #2c3e50;
  margin: 20px 0 10px;
  text-align: center;
}

/* Routes Section */
.block.gray {
  background: #e9ecef;
  padding: 40px 0;
}

.title h2 {
  font-size: 1.8rem;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 30px;
}

.modern-causes .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.modern-causes .col-lg-4 {
  flex: 0 0 32%;
  max-width: 32%;
  margin-bottom: 30px;
}

.modern-causes .modern-cause {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.modern-causes .modern-cause:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.modern-cause-img {
  position: relative;
  overflow: hidden;
}

.modern-cause-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  transition: transform 0.3s ease;
}

.modern-cause:hover .modern-cause-img img {
  transform: scale(1.05);
}

.modern-cause h3 {
  font-size: 1.3rem;
  color: #2c3e50;
  padding: 15px 15px 10px;
  margin: 0;
  font-weight: 600;
  flex-grow: 1;
}

.modern-cause .btn.round {
  display: inline-block;
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: #fff;
  padding: 12px 20px;
  text-decoration: none;
  border-radius: 25px;
  font-size: 0.95rem;
  font-weight: 600;
  margin: 10px 15px 15px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.modern-cause .btn.round:hover {
  background: linear-gradient(135deg, #2980b9, #1f618d);
  transform: scale(1.05);
}

/* Zanzibar Blog Detail Section */
.shelter-blog-detail {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.post-img img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
}

.post-information {
  margin-bottom: 20px;
}

.cat-box .top-btn {
  display: inline-block;
  background: #f1c40f;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.cat-box .top-btn:hover {
  background: #e67e22;
}

/* Typography */
.shelter-blog-detail h2,
.col-title {
  font-size: 1.8rem;
  color: #2c3e50;
  margin: 20px 0 10px;
}

.shelter-blog-detail h3 {
  font-size: 1.4rem;
  color: #34495e;
  margin: 15px 0 10px;
}

.shelter-blog-detail p,
.big-text.style2 p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 15px;
}

.shelter-blog-detail ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 15px;
}

.shelter-blog-detail ul li {
  font-size: 1rem;
  color: #555;
  margin-bottom: 8px;
}

/* Sidebar */
.sidebar .widget {
  margin-bottom: 30px;
}

.widget-title h4 {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 15px;
  border-bottom: 2px solid #f1c40f;
  padding-bottom: 5px;
}

.urgent-need {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.urgent-text p {
  font-size: 1.1rem;
  color: #34495e;
  margin-bottom: 15px;
}

.urgent-text .btn {
  display: inline-block;
  background: #3498db;
  color: #fff;
  padding: 8px 15px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 0.9rem;
  transition: background 0.3s ease;
}

.urgent-text .btn:hover {
  background: #2980b9;
}

/* Responsive Design */
@media (max-width: 992px) {
  .pagetop h1,
  .big-text.style2 h1 {
    font-size: 2rem;
  }

  .shelter-blog-detail,
  .big-text.style2 {
    padding: 20px;
  }

  .col-lg-9,
  .col-lg-3,
  .col-lg-5,
  .col-lg-8,
  .col-lg-4 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .sidebar {
    margin-top: 30px;
  }

  .modern-causes .modern-cause {
    margin-bottom: 30px;
  }
}

@media (max-width: 576px) {
  .pagetop,
  .block.full-height {
    min-height: 200px;
    padding: 20px;
  }

  .pagetop h1,
  .big-text.style2 h1 {
    font-size: 1.5rem;
  }

  .breadcrumbs {
    font-size: 0.9rem;
  }

  .shelter-blog-detail h2,
  .col-title,
  .title h2 {
    font-size: 1.5rem;
  }

  .shelter-blog-detail h3,
  .modern-cause h3 {
    font-size: 1.2rem;
  }

  .modern-cause-img img {
    height: 150px;
  }
}