/* TRI-WAX Page Styles */

.wax-hero-section {
  position: relative;
  overflow: hidden;
  padding: 40px 0;
  margin-top: -96px;
  padding-top: 140px;
}

.wax-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.wax-hero-section .z-1 {
  position: relative;
  z-index: 1;
}

.wax-hero-section h1 {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.wax-hero-section p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.wax-hero-tomatoes {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.wax-benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wax-benefit-item {
  display: flex;
  align-items: flex-start;
  padding: 12px;
  background: #f5f5f5;
  border-radius: 8px;
  border-left: 4px solid #4CAF50;
  gap: 10px;
}

.wax-benefit-item span {
  font-size: 0.95rem;
  line-height: 1.5;
}

.wax-features-box {
  border: 2px solid #4CAF50;
  text-align: left;
}

.wax-features-box h5 {
  margin-bottom: 1rem;
  color: #2d5016;
}

.wax-features-box h5:last-child {
  margin-bottom: 0;
}

.wax-features-box h5::before {
  content: "";
  margin-right: 8px;
}

/* Responsive adjustments */

@media (max-width: 768px) {
  .wax-hero-section {
    padding-top: 120px;
  }
}

@media (max-width: 768px) {
  .wax-hero-section h1 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .wax-hero-section .btn {
    width: 100% !important;
  }
}

@media (max-width: 768px) {
  .wax-benefit-item {
    font-size: 0.9rem;
  }
}

