/* Hero Section */
.prices-hero {
  background-color: #476DB0;
  color: white;
  text-align: left;
  padding: 2rem 0;
  width: 100%; /* Ensure full width */
  margin: 0; /* Remove any margins */
}

.prices-hero h1 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 1rem;
}

.prices-hero p {
  font-size: 24px;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.prices-hero .hero-content-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.prices-hero .hero-text,
.prices-hero .hero-bullets {
  flex: 1;
  padding: 1rem;
}

.prices-hero .hero-bullets ul {
  list-style-type: none;
  padding: 0;
}

.prices-hero .hero-bullets ul li {
  font-size: 22px;
  margin: 0.5rem 0;
  position: relative;
  padding-left: 1.2rem;
}

.prices-hero .hero-bullets ul li::before {
  content: "•";
  color: #ffffff;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

.prices-hero img {
  width: 100%; /* Full width of container */
  height: auto; /* Maintain aspect ratio */
  display: block;
}

/* Pricing Cards */
.pricing-container {
  display: flex;
  justify-content: space-around;
  padding: 2rem 0;
  gap: 2rem;
  flex-wrap: wrap; /* Make cards responsive */
}

.pricing-card {
  border: 3px solid #476DB0;
  border-radius: 10px;
  padding: 2rem;
  width: calc(50% - 2rem); /* Adjust card width for spacing */
  max-width: 30rem; /* Limit max width */
  text-align: center;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  background-color: white;
}

.pricing-card h3 {
  font-size: 32px;
  color: #333;
  font-weight: bold;
  margin-bottom: 1rem;
}

.input-fields {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

.input-label-group,
.cost-label-group {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.label-small {
  font-size: 24px;
  font-weight: 400;
}

.input-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pricing-card input[type="text"] {
  text-align: center;
  font-size: 18px;
  border: 1px solid #ddd;
  border-radius: 5px;
  width: 70px;
  padding: 0.3rem;
}

.total-cost {
  font-size: 24px;
  font-weight: bold;
}

.pay-button {
  background-color: #476DB0;
  color: white;
  font-size: 18px;
  padding: 0.7rem 2.5rem;
  border: none;
  border-radius: 25px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  margin-top: 1rem;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
  align-self: center;
  width: 15rem;
}

.pay-button:hover {
  background-color: #365A96;
  box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.3);
}

/* Total Cost Styling */
.total-cost {
  font-size: 16px;
  font-weight: 400;
  text-align: center;
}

.cost-label {
  font-size: 12px;
  color: #555;
  margin-top: -0.5rem;
}

.hero-bullets {
  line-height: 1.5rem;
  margin-bottom: 3rem;
}

.body-head {
  text-decoration: underline #4CB047;
  text-underline-offset: 0.6rem;
}

.vat-inc {
  font-size: 16px;
}
