/* Main Wrapper */
.angebot-wrapper {
  padding: 2rem 10%;
}
.angebot-wrapper p {
  font-size: 1.2rem;
}
/* Main Heading */
.main-heading {
  font-size: 3rem;
  margin-bottom: 2rem;
  text-align: left;
}
.main-heading-center {
  font-size: 3rem;
  margin-bottom: 2rem;
  text-align: center;
}

.workshop-intro {
  margin-bottom: 3rem;
}

/* Navigation Buttons */
.angebot-nav {
  display: flex;
  justify-content: left;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.beispiel {
  margin-top: 3rem;
}
.beispiel p {
  margin-top: 3rem;
}
.nav-button--active {
  background-color: var(--secondary-color);
  color: white;
}

/* Intro Section */
.intro-text {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 3rem;
}
.description-card {
  position: relative;
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  padding: 3rem;
  text-align: center;
  text-decoration: none;
  color: inherit;
  display: block;
}
/* Service Cards */
.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 4rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

/* Contact CTA */
.contact-cta {
  text-align: center;
  margin: 4rem 0;
}

.contact-cta p {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

/* Responsive Design */
@media screen and (max-width: 470px) {
  .angebot-nav {
    flex: 1 1 0;
    justify-content: center;
    margin-bottom: 1rem;
  }

  .main-heading {
    font-size: 2rem;
  }

  .description-card {
    padding: 1.5rem;
  }
  .angebot-wrapper p {
    font-size: 1rem;
  }
}
