/* Leistung */
/* Grund-Layout */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: "Google Sans Flex";
  background-color: #f5f5f5;
  background-image: url(/images/services-hero.svg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

/* DEIN HEADER STYLING */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #ffffff;
  z-index: 1000; /* Header über allem */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

/* ZENTRIERTE SEKTION */
.content-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding-top: 100px; /* Platz für fixen Header */
}

.contact-section {
  width: 100%;
  max-width: 500px;
  text-align: center;
  padding: 20px;
}

.cc2 {
  margin-bottom: 10px;
  color: #444;
}

/* PURE CSS ACCORDION */
.acc-state {
  display: none;
} /* Radio-Buttons verstecken */

.acc-group {
  margin-bottom: 10px;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.acc-trigger {
  display: block;
  padding: 15px;
  background: #fff;
  cursor: pointer;
  font-weight: bold;
  border: 1px solid #ddd;
  transition: background 0.3s;
  border-radius: 8px;
  font-size: 20px;
}

.acc-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background: #fafafa;
}

.acc-links {
  list-style: none;
  padding: 15px;
  text-align: left;
}
.acc-links li {
  margin: 8px 0;
}
.acc-links a {
  color: var(--primary-color);
  text-decoration: none;
  font-size: 1.125rem;
}
.acc-links a:hover {
  color: var(--text-color);
  text-decoration: none;
  font-size: 1.25em;
  padding-left: 20px;
  text-decoration: underline;
}
.acc-links a:active {
  color: var(--secondary-color);
  text-decoration: underline;
  text-underline-offset: 0.2em;
  text-decoration-thickness: 3px;
  letter-spacing: 1px;
  font-size: 1.25em;
}
/* Logik: Nur ein Akkordeon gleichzeitig offen */
.acc-state:checked + .acc-trigger {
  background: var(--primary-color);
  color: #fff;
}
.acc-state:checked ~ .acc-panel {
  max-height: 250px;
  border: 1px solid #ddd;
  border-top: none;
}
fieldset {
  border: none;
  padding: 0;
  margin: 0;
}
