/* Prices Page Specific Styles */
#main-content {
  flex-grow: 1;
  padding: 20px;
  text-align: left;
  max-width: 800px;
  margin: 0 auto;
  color: #fefefe;
}

.price-section {
  margin-bottom: 30px;
  padding: 15px;
  background: #111;
  border: 1px solid #333;
  border-radius: 6px;
}

.price-section h1,
.price-section h2 {
  color: #99ccff; /* keep same blue as rest of site */
  margin-bottom: 10px;
}
.price-section h3 {
  color: #99ccff;     /* light blue to highlight */
  margin-top: 15px;
  margin-bottom: 4px;
  font-weight: bold;
  text-transform: uppercase;
}

.price-section h4 {
  color: #cccccc;     /* slightly softer for sub-subheaders */
  margin-top: 12px;
  margin-bottom: 3px;
  font-style: italic; /* subtle difference */
}

.price-section em {
  display: block;       /* makes it line up full width like a note */
  margin-top: 2px;      /* minimal gap above */
  margin-bottom: 4px;   /* tighter gap below */
  font-size: 0.95em;    /* slightly smaller text */
  color: #cccccc;       /* softer gray so it reads like a note */
}



.price-section ul {
  list-style: disc;
  padding-left: 20px;
  margin-top: 4px;     /* tighten space above list */
  margin-bottom: 8px;  /* a little breathing room below */
}

.warning {
  color: #ff3333;
  font-weight: bold;
}

/* Payment box with text on left, image on right */
.payment-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.payment-text {
  flex: 2;
}

.payment-image {
  flex: 1;
  text-align: right;
}

.payment-image img {
  max-width: 200px;
  height: auto;
  border-radius: 4px;
}

