body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f6f9fc;
  color: #222;
}

header {
  background: #014d4e;
  color: #fff;
  padding: 1.5rem;
  text-align: center;
}

main {
  padding: 2rem;
  max-width: 900px;
  margin: auto;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.product-section {
  text-align: center;
}

.product-section img {
  max-width: 100%;
  border-radius: 8px;
}

.price {
  font-size: 1.5rem;
  font-weight: bold;
  color: #014d4e;
  margin: 0.5rem 0;
}

.desc {
  color: #444;
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.policy {
  background: #f0f0f0;
  padding: 1rem;
  border-radius: 5px;
  margin-top: 2rem;
  text-align: left;
}

footer {
  background: #014d4e;
  color: white;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
}

.carousel-container {
  margin: 2rem auto;
  text-align: center;
}

.carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 1rem;
  padding: 1rem;
  scroll-behavior: smooth;
}

.carousel img {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 10px;
  scroll-snap-align: center;
  flex-shrink: 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.carousel-buttons {
  margin-top: 1rem;
}

.carousel-buttons button {
  background-color: #014d4e;
  color: white;
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 5px;
  margin: 0 0.5rem;
  cursor: pointer;
  font-size: 1rem;
}

.carousel-buttons button:hover {
  background-color: #026b6e;
}

#paypal-button-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 20px;
}

#paypal-button-container > div {
  margin: 0 auto;
}

.paypal-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}
