.page-header {
  background: #f3f3f3;
  padding: 2rem 1rem 1rem;
}

.page-header h1 {
  margin: 0;
  font-size: 2rem;
  color: var(--primary-color);
}

.breadcrumb {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  color: #666;
}

.breadcrumb a {
  color: var(--accent-color);
  text-decoration: none;
}

.page-content {
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  padding: 0 1rem;
}

.page-content h2,
.page-content h3 {
  color: var(--primary-color);
  margin-top: 1.5rem;
}

.page-content p {
  margin-bottom: 1rem;
  line-height: inherit;
}

.button-row {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.email-button {
  background: #229954;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
}

.email-button:hover {
  background: #1a7e43;
  color: white;
  text-decoration: none;
}

.content-text-image {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: flex-start;
}

.text-block {
  flex: 1 1 300px;
}

.image-block {
  flex: 1 1 300px;
  text-align: center;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.image-block img {
  max-width: 100%;
  height: auto;
  border-radius: 0; /* kein runder Rahmen */
  margin-top: -30px; /* leicht nach oben schieben */
}

.cta-button {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.6rem 1.2rem;
  background-color: #229954;
  color: white;
  font-weight: bold;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
  background-color: #1a7e43;
  transform: scale(1.05);
  color: white;
  text-decoration: none;
}


.ticket-overview {
  padding: 2rem 1rem;
  max-width: 1000px;
  margin: 0 auto;
}

.ticket-overview h2 {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: var(--primary-color);
}

.ticket-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.ticket-card {
  display: flex;
  align-items: center;
  background-color: #f3f3f3;
  padding: 1rem;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ticket-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.ticket-card i {
  font-size: 28px;
  color: #229954;
  margin-right: 1rem;
}

.ticket-card span {
  font-size: 1rem;
  color: #333;
}

.abo-button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin: 2rem auto;
}

.abo-button-group a {
  display: inline-block;
  padding: 0.8em 1.5em;
  background: #229954;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.abo-button-group a:hover {
  background: #1a7e43;
  transform: scale(1.03);
}

.abo-wrapper {
  scroll-margin-top: 100px; /* Platz für deinen fixierten Header */
  margin-bottom: 2rem;
}

html {
  scroll-behavior: smooth;
}

.bank-company {
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 1rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.bank-company h3 {
  margin-top: 0;
  font-size: 1.1rem;
  color: var(--primary-color);
}

.bank-company p {
  margin: 0.5rem 0 0;
  line-height: 1.5;
}

/* Kündigung Form*/

.vpe-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 800px;
  margin-top: 1.5rem;
  padding: 1.5rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #fdfdfd;
}

.vpe-form fieldset {
  border: none;
  padding: 0;
  grid-column: 1 / -1;
}

.vpe-form label {
  display: block;
  font-weight: bold;
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
  padding-left: 0.3rem; 
  color: #333; 
}

.vpe-form input,
.vpe-form textarea {
  width: 97%;
  padding: 0.5rem;
  border: 1px solid #aaa;
  border-radius: 4px;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.vpe-form select {
  width: 99.5%;
  padding: 0.5rem;
  border: 1px solid #aaa;
  border-radius: 4px;
  font-size: 1rem;
  box-sizing: border-box;
  margin-bottom: 1rem;
}

.vpe-form textarea {
  resize: vertical;
  min-height: 100px;
  grid-column: 1 / -1;
}

.vpe-form button {
  grid-column: 1 / -1;
  padding: 0.8rem 1.2rem;
  font-size: 1rem;
  background: #229954;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.vpe-form button:hover {
  background: #1a7e43;
}

#send-button {
  grid-column: 1 / -1;
  padding: 0.8rem 1.2rem;
  font-size: 1rem;
  background: #c0392b;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

#send-button:hover {
  background: #a93226;
}

#send-bestellung-button {
  grid-column: 1 / -1;
  padding: 0.8rem 1.2rem;
  font-size: 1rem;
  background: #c0392b;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

#send-bestellung-button:hover {
  background: #a93226;
}

#send-aenderung-button-button {
  grid-column: 1 / -1;
  padding: 0.8rem 1.2rem;
  font-size: 1rem;
  background: #c0392b;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

#send-aenderung-button:hover {
  background: #a93226;
}


.summary-modal {
  padding: 1rem;
  border: 2px solid #ccc;
  background: #f9f9f9;
  margin-top: 2rem;
  border-radius: 6px;
}

.hidden {
  display: none;
}

.form-hint {
  margin: 0 0 1rem 0;
  font-size: 0.9rem;
  color: inherit;
  padding-left: 0.3rem;
}

.verbindung-options {
  display: flex;
  gap: 2rem;
  margin: 0.5rem 0;
  align-items: center;
  flex-wrap: wrap;
}

.verbindung-options label {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  white-space: nowrap;
  line-height: 1.4;
  font-size: 1rem;
  font-weight: normal;
}

.verbindung-options input[type="radio"] {
  margin-top: 0.1rem;
}

@media (max-width: 768px) {

  .verbindung-options {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 0.2rem;
  }

  .verbindung-options label {
    font-size: 0.8rem;
    white-space: normal;
    max-width: 100%;
  }

  .vpe-form input,
  .vpe-form textarea {
    width: 94%;
  }

  .vpe-form select {
    width: 100%;
  }

  .abo-button-group {
    flex-direction: column;
    align-items: center;
  }

  .abo-button-group a {
    text-align: center;
    width: 80%;
    max-width: 320px;
  }

  .vpe-form {
    grid-template-columns: 1fr;
    padding: 1rem;
  }

  section {
    padding: 2rem 1rem;
    border-bottom: 1px solid #ddd;
   }

  .page-content {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .page-header h1 {
    font-size: 1.5rem;
  }

  .breadcrumb {
    font-size: 0.85rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}