/* Container for the pricing table */

.service h2, h3 {
  text-align: center;
   font-family: 'American Typewriter', cursive;
}

.pricing-table {
  width: 80%;
  max-width: 600px;
  margin: 20px auto;
  border-collapse: collapse;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
}

/* Table header styling */
.pricing-table th {
  background-color: #333;
  color: #fff;
  padding: 15px;
  font-size: 1.1em;
  text-align: left;
}

/* Table row styling */
.pricing-table td {
  padding: 15px;
  color: #333;
  font-family: 'American Typewriter', cursive;
}

/* Alternating row colors */
.pricing-table tr:nth-child(even) {
  background-color: #e6ede8;
}

/* Styling for the price column */
.pricing-table .price {
  font-weight: bold;
  color: #498558;
  text-align: right;
}

/* Mobile-friendly adjustments */
@media (max-width: 600px) {
  .pricing-table th, .pricing-table td {
    padding: 10px;
    font-size: 0.9em;
  }
}
