.unterricht-header {
  text-align: center;
  margin-bottom: 4rem;
}
.unterricht-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}
.section-unterricht {
  padding-top: 10rem;
}
.lessons-description {
  margin-top: 1rem;
  color: var(--text-main);
  opacity: 0.8;
  max-width: 50rem;
  margin-left: auto;
  margin-right: auto;
}
.lessons-features {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  max-width: 50rem;
  margin-left: auto;
  margin-right: auto;
}
.lessons-feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.lessons-feature-check {
  color: var(--accent);
  font-size: var(--font-xl);
}
.unterricht-card {
  background: linear-gradient(
      rgba(255, 253, 248, 0.95),
      rgba(255, 253, 248, 0.95)
    ),
    linear-gradient(rgba(244, 201, 194, 0.12), rgba(244, 201, 194, 0.12));
  border: 1px solid var(--gold-border);
  border-radius: 1rem;
  padding: 3.5rem;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.unterricht-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 1.5625rem 3.125rem rgba(0, 0, 0, 0.12);
  border-color: var(--gold-border);
}
.unterricht-card-child {
  border-left: 5px solid var(--accent);
  background: linear-gradient(
      rgba(255, 253, 248, 0.98),
      rgba(255, 253, 248, 0.98)
    ),
    linear-gradient(rgba(244, 201, 194, 0.18), rgba(244, 201, 194, 0.18));
  box-shadow: 0 0.625rem 1.75rem rgba(244, 201, 194, 0.18);
}
.unterricht-card-child:hover {
  transform: translateY(-8px);
  box-shadow: 0 1.375rem 2.75rem rgba(0, 0, 0, 0.08),
    0 2.125rem 4.375rem rgba(244, 201, 194, 0.32);

  border-left-color: var(--accent);
}
.unterricht-card-child:hover::before {
  display: none;
}
.unterricht-card-badge {
  position: absolute;
  top: 1rem;
  right: 0.7rem;
  background: var(--accent);
  color: var(--text-main);
  padding: 0.4rem 1rem;
  border-radius: 1rem;
  font-size: var(--font-ss);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(244, 201, 194, 0.3);
  z-index: 1;
}
.unterricht-card-number {
  font-family: "Cormorant Garamond", serif;
  font-size: var(--font-m);
  font-weight: 300;
  color: var(--accent-dark);
  opacity: 0.4;
  margin-bottom: 1rem;
  letter-spacing: 0.15em;
  display: block;
  transition: opacity 0.3s ease, color 0.3s ease;
}
.unterricht-card:hover .unterricht-card-number {
  opacity: 0.7;
  color: var(--accent);
}
.unterricht-card-title {
  font-size: var(--font-2xl);
  margin-bottom: 1rem;
  color: var(--text-main);
  font-weight: 500;
  letter-spacing: 0.02em;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  line-height: 1.3;
}
.unterricht-card-text {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text-main);
  opacity: 0.9;
}
.price-box {
  background: linear-gradient(
      rgba(255, 253, 248, 0.95),
      rgba(255, 253, 248, 0.95)
    ),
    linear-gradient(rgba(244, 201, 194, 0.15), rgba(244, 201, 194, 0.15));
  border: 1px solid var(--gold-border);
  border-radius: 1.5rem;
  padding: 3rem;
  margin-bottom: 4rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}
.price-box::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(244, 201, 194, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.price-box-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.price-title {
  font-size: var(--font-3xl);
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.price-list {
  font-size: var(--font-l);
  line-height: 2;
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  position: relative;
  z-index: 1;
}
.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--gold-border-light);
  transition: padding-left 0.3s ease;
}
.price-item:last-child {
  border-bottom: none;
}
.price-item:hover {
  padding-left: 0.5rem;
}
.price-item-label {
  font-weight: 500;
  color: var(--text-main);
}
.price-item-value {
  color: var(--accent-dark);
  font-weight: 600;
}
.price-box-footer {
  position: relative;
  z-index: 1;
  margin-top: 2rem;
}
.faq {
  max-width: 56.25rem;
  margin: 0 auto;
}
.faq-header {
  text-align: center;
  margin-bottom: 3rem;
}
.faq-title {
  font-size: var(--font-3xl);
  margin-bottom: 0.5rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.faq-subtitle {
  font-size: var(--font-m);
  color: var(--text-main);
  opacity: 0.7;
  font-style: italic;
}
.faq-items-wrapper {
  background: linear-gradient(
      rgba(255, 253, 248, 0.95),
      rgba(255, 253, 248, 0.95)
    ),
    linear-gradient(rgba(244, 201, 194, 0.08), rgba(244, 201, 194, 0.08));
  border: 1px solid var(--gold-border);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
}
.faq-item {
  border-bottom: 1px solid var(--gold-border-light);
  background: rgba(255, 253, 248, 0.5);
  border-radius: 0.5rem;
  margin-bottom: 0.75rem;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.faq-item:hover {
  background: rgba(255, 253, 248, 0.8);
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.05);
}
.faq-item.active {
  background: rgba(255, 253, 248, 0.95);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.faq-item-header {
  cursor: pointer;
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.2s ease;
}
.faq-item-header:hover {
  color: var(--accent-dark);
}
.faq-question {
  font-size: 1.1rem;
  font-weight: 500;
  padding-right: 1rem;
  line-height: 1.4;
}
.faq-icon {
  font-size: var(--font-xl);
  font-weight: 300;
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
  color: var(--accent-dark);
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
  font-family: "Cormorant Garamond", serif;
}
.faq-item-header:hover .faq-icon {
  opacity: 1;
  color: var(--accent);
}
.faq-item.active .faq-icon {
  transform: rotate(45deg);
  opacity: 1;
  color: var(--accent-dark);
}
.faq-content-wrapper {
  overflow: hidden;
  height: 0;
  transition: height 0.3s ease;
}
.faq-content-inner {
  padding: 0 1.5rem 1.5rem 1.5rem;
  font-size: var(--font-s);
  line-height: 1.7;
  color: var(--text-main);
  opacity: 0.85;
}
