.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;
}

.faq-block {
  margin-bottom: 2rem;
}

.faq-block h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.faq-item {
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 0.5rem;
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  text-align: left;
  padding: 1rem;
  font-size: 1rem;
  background: #f3f3f3;
  border: none;
  cursor: pointer;
  font-weight: bold;
}

.faq-answer {
  display: none;
  padding: 1rem;
  background: #fff;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-item.open .faq-question {
  background: #e0e0e0;
}

.faq-question i {
  margin-right: 0.5rem;
  transition: transform 0.3s ease;
  font-size: 0.9rem;
  flex: 0 0 20px;
  margin-right: 10px;
}

.faq-question span {
  flex: 1;
  word-break: break-word;
}

.price-tag {
  display: inline-block;
  padding: 0.3rem 0.5rem;
  border-radius: 4px;
  position: relative;
  top: -4px;
  font-size: 0.83rem;
  font-weight: bold;
}

.red-tag {
  background-color: #d32f2f;
  color: white;
}

.yellow-tag {
  background-color: #fbc02d;
  color: white;
}

.green-tag {
  background-color: #388e3c;
  color: white;
}

.blue-tag {
  background-color: #1976d2;
  color: white;
}

.black-tag {
  background-color: #212121;
  color: white;
}

.gray-tag {
  background-color: #9e9e9e;
  color: white;
}


@media (max-width: 768px) {
  .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;
  }

  .page-wrapper,
  .page-content {
    padding: 0;
    margin: 0;
  }

}