/* Fish Pricing Page */
.pricing-section {
  padding: 2.2rem 1rem 3rem;
  background: #f1f8f4;
  color: #333;
  text-align: center;
}

.pricing-container {
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-container h1 {
  font-size: 2rem;
  color: #2e7d32;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.pricing-container p {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: #555;
}

.table-wrapper {
  overflow-x: auto;
  overflow-y: hidden; /* Hide vertical scrollbar */
  margin-bottom: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  background: #fff;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1rem;
}

.price-table thead {
  background: #388e3c;
  color: #fff;
}

.price-table th, .price-table td {
  padding: 1rem;
  border-bottom: 1px solid #c8e6c9;
  text-align: left;
}

.price-table thead tr:hover {
  font-weight: 600;
  background-color: #2e7d32;
}

.price-table tr:hover {
  background: #e8f5e9;
  transition: 0.3s;
}

.price-table i {
  color: #43a047;
}

/* Responsive */
@media (max-width: 768px) {
  .pricing-container h1 {
    font-size: 1.6rem;
  }
  .price-table th, .price-table td {
    padding: 0.8rem;
    font-size: 0.9rem;
  }
}

.footer {
  position: relative; /* change from fixed */
  background: #2e7d32;
  color: white;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}

/* Reduce footer spacing on large screens */
@media (min-width: 1024px) {
  .footer {
    margin-top: 1.2rem;
  }
}

.pricing-info {
  background: #e8f5e9;
  border-left: 4px solid #43a047;
  padding: 1rem;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  font-size: 0.95rem;
  color: #2e7d32;
  display: flex;
  justify-content: center;
}

.pricing-info i {
  margin-right: 0.4rem;
}

.pricing-trust {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: #2e7d32;
}

.pricing-trust i {
  color: #43a047;
  margin-right: 0.3rem;
}

.pricing-cta {
  margin-top: 1.5rem;
  text-align: center;
}

.pricing-cta p {
  font-size: 1.1rem;
  color: #2e7d32;
  margin-bottom: 0.8rem;
}

.pricing-cta a {
  background: #43a047;
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.3s;
  display: inline-block;
  margin-bottom: 0.8rem;
}
.pricing-cta a:hover {
  background: #388e3c;
}

.mobile-label {
  display: none;
}
