/* ===== General Styles ===== */
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background-color: #f7faff;
  color: #0f1724;
  line-height: 1.6;
}

/* ===== Header ===== */
.header {
  background: linear-gradient(135deg, #06b6d4, #00b3a6);
  color: white;
  text-align: center;
  padding: 50px 20px;
}

.header h1 {
  font-size: 2.4rem;
  margin: 0;
}

.header p {
  font-size: 1rem;
  opacity: 0.9;
  margin-top: 10px;
}

/* ===== Section ===== */
.dispenser-section {
  text-align: center;
  padding: 60px 20px;
}

.dispenser-section h2 {
  font-size: 1.8rem;
  color: #024950;
}

.divider {
  width: 80px;
  height: 4px;
  background: #00bfa6;
  border: none;
  margin: 12px auto 30px auto;
  border-radius: 4px;
}

.intro {
  max-width: 750px;
  margin: 0 auto 40px auto;
  font-size: 1rem;
  color: #333;
  line-height: 1.8;
}

/* ===== Dispenser Gallery ===== */
.dispenser-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.dispenser {
  background: white;
  padding: 15px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  width: 220px;
}

.dispenser img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

/* Hover Effects */
.dispenser:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.dispenser:hover img {
  transform: scale(1.05);
}

/* ===== Footer ===== */
.footer {
  background: #001f4d; /* dark blue */
  color: #ffffff;
  padding: 40px 20px;
  width: 100%;
}

.footer-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

.footer-section {
  margin: 15px;
}

.footer-section h3 {
  margin-bottom: 12px;
  font-size: 18px;
  border-bottom: 2px solid #07a6c6;
  display: inline-block;
  padding-bottom: 5px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin: 6px 0;
}

.footer-section ul li a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: #07a6c6;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  color: #ffffff;
  font-size: 20px;
  transition: transform 0.3s, color 0.3s;
}

.social-icons a:hover {
  color: #07a6c6;
  transform: scale(1.2);
}

.footer-bottom {
  margin-top: 20px;
  text-align: center;
  font-size: 14px;
  border-top: 1px solid rgba(255,255,255,0.3);
  padding-top: 10px;
}

.back {
  background-color: #07a6c6;       /* Nivera blue */
  color: white;
  border: none;
  padding: 20px 35px;
  align-items: center;
  border-radius: 8px;
  font-size: 16px;
  margin-bottom: 30px;
  margin-top: 30px;
  margin-left: 50%;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}

.back:hover {
  background-color: #05889f;       /* Darker on hover */
  transform: translateY(-2px);
}

.back:active {
  transform: scale(0.97);
}

a {
  text-decoration: none;           /* Remove underline from link */
}


