.pricing-section {
  padding: 60px 0;
  background: #f9f9f9;
  text-align: center;
}

.pricing-title {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 10px;
}

.pricing-subtitle {
  font-size: 16px;
  color: #777;
  margin-bottom: 50px;
}

.price-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.price-card:hover {
  transform: translateY(-8px);
}

.price-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
}

.price {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 15px;
}

.price span {
  font-size: 14px;
  font-weight: normal;
}

.price-card ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.price-card ul li {
  padding: 6px 0;
  font-size: 14px;
  color: #555;
}

/* Color themes */
.camping { border-top: 5px solid #2ecc71; }
.cooking { border-top: 5px solid #f39c12; }
.bonfire { border-top: 5px solid #e74c3c; }
.boating { border-top: 5px solid #3498db; }
.photoshoot { border-top: 5px solid #9b59b6; }
.info { border-top: 5px solid #34495e; }

.included {
  color: #27ae60;
}

.info-text {
  font-size: 18px;
  color: #555;
}
	
.price-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.price-card ul {
  margin-top: auto;
}
    
.pricing-row {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}

.pricing-row {
  justify-content: center;
} 
  
.price-card:hover {
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.pricing-section {
  background: linear-gradient(to bottom, #f9f9f9, #ffffff);
} 
  
.pricing-subtitle:after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #2ecc71;
  margin: 20px auto 0;
  border-radius: 3px;
} 
  
.pricing-col {
  margin-bottom: 30px;   /* vertical space between cards */
} 
    
.price-card {
  padding: 30px 25px;
  text-align: center;   /* center header & price */
}

.price-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.price {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
}

.price span {
  font-size: 14px;
  font-weight: 500;
  color: #777;
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  text-align: left;
  display: inline-block;
}

.price-card ul li {
  font-size: 15px;
  padding: 6px 0;
  color: #555;
  position: relative;
  padding-left: 18px;
}

.price-card ul li:before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #2ecc71;
  font-size: 12px;
}

.included {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.info-text {
  font-size: 18px;
  font-weight: 600;
}

.price-card {
  min-height: 360px;
} 
   
/* ===============================
   MOBILE VIEW FIXES ONLY
   =============================== */
@media (max-width: 767px) {

  /* Make cards naturally sized */
  .price-card {
    min-height: auto !important;
    height: auto !important;
    padding: 28px 22px;
  }

  /* Improve text readability on mobile */
  .price-card h3 {
    font-size: 18px;
  }

  .price {
    font-size: 26px;
  }

  .price span {
    font-size: 13px;
  }

  /* Center-align content better */
  .price-card ul {
    margin-top: 18px;
    text-align: left;
  }

  .price-card ul li {
    font-size: 15px;
    line-height: 1.6;
  }

  /* Ensure spacing between stacked cards */
  .pricing-col {
    margin-bottom: 24px;
  }
}
   
/* ===============================
   MOBILE VIEW – CARD UNIFORMITY
   =============================== */
@media (max-width: 767px) {

  /* Force same width & centering */
  .pricing-col {
    display: flex;
    justify-content: center;
  }

  .price-card {
    width: 100%;
    max-width: 320px;   /* controls uniform card width */
    margin: 0 auto;
  }

} 
  
/* ===============================
   MOBILE – FORCE UNIFORM CARD SIZE
   =============================== */
@media (max-width: 767px) {

  /* Remove Bootstrap side padding influence */
  .pricing-section .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .pricing-row {
    display: block;   /* IMPORTANT: disable flex on mobile */
  }

  .pricing-col {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-bottom: 24px;
  }

  .price-card {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
}
    