/* ===== Color System - Semantic Design Tokens ===== */
:root {
  --sand: #f4eee5;
  --sand-light: #faf7f2;
  --sand-dark: #c7b8a2;
  --brown: #a58c6f;
  --brown-dark: #8b7355;
  --anthrazit: #2f2f2f;
  --anthrazit-light: #4a4a4a;
  --blue: #0f72b8;
  --blue-dark: #0a5a8a;
  --white: #ffffff;
  --gray: #e8e8e8;

  /* Theme Tokens */
  --bg-primary: var(--sand-light);
  --bg-secondary: var(--white);
  --bg-dark: var(--anthrazit);
  --text-primary: var(--anthrazit);
  --text-secondary: var(--brown);
  --text-light: var(--sand-dark);
  --border-color: var(--sand-dark);
  --accent-color: var(--blue);
  --accent-dark: var(--blue-dark);
}

/* ===== Global Styles ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

h2 {
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: -0.5px;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent-dark);
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 90px;
  padding: 0 2rem;
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 200;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(199, 184, 162, 0.3);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 320px;
  height: 90px;
  object-fit: contain;
}

.logo-text {
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-primary);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* ===== Navigation ===== */
nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-links {
  list-style: none;
  display: flex;
  flex-direction: row;
  gap: 2.5rem;
  background: transparent;
  position: static;
  padding: 0;
  box-shadow: none;
}

.nav-links a {
  color: var(--text-primary);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.3s ease;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.nav-links a:hover {
  color: var(--accent-color);
}

/* Style for appointment booking link */
.booking-link {
  background: var(--accent-color);
  color: var(--white) !important;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.booking-link:hover {
  background: var(--accent-dark) !important;
  color: var(--white) !important;
}

.menu-toggle {
  font-size: 1.8rem;
  cursor: pointer;
  user-select: none;
  color: var(--text-primary);
  display: none;
}

@media (max-width: 800px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 1.5rem;
    background: var(--white);
    position: absolute;
    right: 1.5rem;
    top: 5rem;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    min-width: 200px;
  }

  .nav-links.active {
    display: flex;
  }
}

/* ===== Hero Carousel ===== */
.hero-carousel {
  margin-top: 4rem;
  position: relative;
  height: 100vh;
  max-height: 90vh;
  overflow: hidden;
}

.carousel-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.carousel-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.carousel-slide.active {
  opacity: 1;
}

.slide-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
}

.slide-content {
  position: absolute;
  bottom: 10%;
  left: 5%;
  color: var(--white);
  max-width: 600px;
  z-index: 10;
}

.slide-content h1 {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  margin-bottom: 0.5rem;
  font-weight: 600;
  letter-spacing: -1px;
  color: var(--white);
}

.slide-content p {
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 300;
  letter-spacing: 0.5px;
  color: var(--sand-light);
}

.carousel-controls {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 2rem;
  z-index: 20;
}

.carousel-btn {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid var(--white);
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

.carousel-dots {
  display: flex;
  gap: 0.8rem;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background: var(--white);
  width: 32px;
  border-radius: 6px;
}

/* ===== Quote Sections ===== */
.quote-section {
  background: var(--bg-primary);
  padding: 4rem 2rem;
  text-align: center;
}

.quote-section blockquote {
  max-width: 800px;
  margin: 0 auto;
}

.quote-section p {
  font-size: clamp(1.3rem, 4vw, 2rem);
  font-family: Georgia, "Segoe UI", serif;
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.quote-section footer {
  font-size: 1rem;
  color: var(--text-secondary);
  font-style: italic;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.quote-dark {
  background: var(--bg-dark);
  color: var(--white);
}

.quote-dark p {
  color: var(--white);
}

.quote-dark footer {
  color: var(--sand-dark);
}

/* ===== Section Styles ===== */
.section {
  padding: 4rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 3rem;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

/* ===== About Section ===== */
.about {
  background: var(--bg-primary);
}

.about-text h2 {
  margin-bottom: 2.5rem;
}

/* Added style for about intro text */
.about-intro {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-weight: 500;
}

.benefits-list {
  display: grid;
  gap: 2.5rem;
  margin-top: 2rem;
}

.benefit-item {
  padding: 2rem;
  background: var(--white);
  border-left: 4px solid var(--accent-color);
  border-radius: 4px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* Added cursor pointer to indicate clickability */
  cursor: pointer;
  position: relative;
}

.benefit-item:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.benefit-number {
  display: inline-block;
  font-size: 2rem;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.benefit-item h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  margin-top: 0;
}

.benefit-item p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Added style for click hint */
.click-hint {
  display: inline-block;
  font-size: 0.85rem;
  color: var(--accent-color);
  margin-top: 1rem;
  font-weight: 500;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.benefit-item:hover .click-hint {
  opacity: 1;
}

@media (min-width: 1000px) {
  .benefits-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

/* ===== Gallery Section ===== */
.gallery {
  background: var(--bg-primary);
}

.gallery h2 {
  text-align: center;
  margin-bottom: 0.5rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  aspect-ratio: 4 / 3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 500;
  transition: background 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  background: rgba(0, 0, 0, 0.4);
}

/* ===== Gallery Modal ===== */
.gallery-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 300;
  align-items: center;
  justify-content: center;
}

.gallery-modal.active {
  display: flex;
}

.gallery-modal img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.modal-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid var(--white);
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.3);
}

.modal-nav {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
  z-index: 5;
  pointer-events: none;
}

.modal-prev,
.modal-next {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid var(--white);
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: all;
}

.modal-prev:hover,
.modal-next:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* ===== Services Section ===== */
.services {
  background: var(--bg-primary);
}

.services h2 {
  text-align: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.service-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  /* Added cursor pointer to indicate clickability */
  cursor: pointer;
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.service-icon {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== Modal Styles ===== */
/* Added modal styles for popups */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 400;
  align-items: center;
  justify-content: center;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: var(--white);
  border-radius: 8px;
  padding: 2rem;
  max-width: 500px;
  width: 90%;
  position: relative;
  animation: slideIn 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
}

.benefit-modal-content,
.service-modal-content {
  text-align: center;
}

.benefit-modal-content h3,
.service-modal-content h3 {
  color: var(--accent-color);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.benefit-modal-content p,
.service-modal-content p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.benefit-modal-content img,
.service-modal-content img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--sand);
  border: none;
  color: var(--text-primary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: var(--sand-dark);
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Booking Section ===== */
/* Added booking section styles */
.booking {
  background: var(--bg-primary);
}

.booking h2 {
  text-align: center;
}

.booking-form-container {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.booking-form label {
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  padding: 1rem;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  background: var(--white);
  color: var(--text-primary);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(15, 114, 184, 0.1);
}

.booking-info {
  font-size: 0.85rem;
  color: var(--text-secondary);
  background: var(--sand-light);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
  border-left: 4px solid var(--accent-color);
}

/* ===== Contact Section ===== */
.contact {
  background: var(--bg-primary);
}

.contact h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 1200px;
}

.contact-info {
  background: var(--white);
  padding: 2rem;
  border-radius: 8px;
}

.contact-info h3 {
  color: var(--blue);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.contact-info p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  color: var(--text-primary);
}

.contact-info a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 500;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  padding: 1rem;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  background: var(--white);
  color: var(--text-primary);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(15, 114, 184, 0.1);
}

.form-button {
  padding: 1.2rem;
  background: var(--accent-color);
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.form-button:hover {
  background: var(--accent-dark);
}

@media (min-width: 1000px) {
  .contact-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}

/* Added Partner section styles replacing Planner */

/* ===== Partner Section ===== */
.partner {
  background: linear-gradient(135deg, var(--anthrazit) 0%, var(--anthrazit-light) 100%);
  color: var(--white);
  text-align: center;
  padding: 4rem 2rem;
}

.partner h2 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.partner .section-subtitle {
  color: var(--sand);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
}

.partners-container {
  max-width: 1400px;
  margin: 0 auto;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.2);
  padding: 2rem;
}

.partners-scroll {
  display: flex;
  gap: 3rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* Updated Partner section animation - now properly triggers the popIn animation */
.partner-logo-wrapper {
  flex-shrink: 0;
  width: 140px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  opacity: 0;
  transform: scale(0.5) translateY(20px);
}

.partner-logo-wrapper.animated {
  animation: popIn 0.6s ease forwards;
}

.partner-logo-wrapper.animated:nth-child(1) {
  animation-delay: 0.1s;
}
.partner-logo-wrapper.animated:nth-child(2) {
  animation-delay: 0.2s;
}
.partner-logo-wrapper.animated:nth-child(3) {
  animation-delay: 0.3s;
}
.partner-logo-wrapper.animated:nth-child(4) {
  animation-delay: 0.4s;
}
.partner-logo-wrapper.animated:nth-child(5) {
  animation-delay: 0.5s;
}
.partner-logo-wrapper.animated:nth-child(6) {
  animation-delay: 0.6s;
}
.partner-logo-wrapper.animated:nth-child(7) {
  animation-delay: 0.7s;
}
.partner-logo-wrapper.animated:nth-child(8) {
  animation-delay: 0.8s;
}
.partner-logo-wrapper.animated:nth-child(9) {
  animation-delay: 0.9s;
}

.partner-logo-wrapper:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.partner-logo {
  max-width: 100%;
  max-height: 80%;
  object-fit: contain;
  filter: brightness(0.9);
  transition: filter 0.3s ease;
}

.partner-logo-wrapper:hover .partner-logo {
  filter: brightness(1.2);
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.5) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* ===== Footer ===== */
.footer {
  background: var(--bg-dark);
  color: var(--white);
  padding: 3rem 2rem 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1400px;
  margin: 0 auto 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 3rem;
}

.footer-section h4 {
  color: var(--white);
  margin-bottom: 1rem;
  font-weight: 600;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.footer-section a {
  color: var(--sand);
  transition: color 0.3s ease;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.footer-section a:hover {
  color: var(--accent-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  color: var(--sand);
  font-size: 0.9rem;
  max-width: 1400px;
  margin: 0 auto;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.footer-bottom a {
  color: var(--accent-color);
}

/* ===== MODAL-SYSTEM ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  padding: 2rem;
}

.modal-overlay.active {
  display: flex;
}

.modal-box {
  background: var(--white);
  max-width: 800px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  border-radius: 8px;
  position: relative;
  padding: 2.5rem 2rem 2rem;
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
}

.modal-close {
  position: absolute;
  top: .75rem;
  right: .75rem;
  background: transparent;
  border: none;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  color: var(--text-primary);
  transition: color .3s;
}

.modal-close:hover { color: var(--accent-color); }

/* Footer-Buttons */
.footer-link-btn {
  background: none; border: none; color: var(--sand);
  cursor: pointer; font-size: .95rem; text-decoration: underline;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
  .section {
    padding: 3rem 1.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .slide-content {
    bottom: 5%;
    left: 3%;
  }

  .benefit-item {
    padding: 1.5rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .nav-links {
    gap: 1.2rem;
  }
}

@media (max-width: 480px) {
  .header {
    padding: 1rem 1.5rem;
  }

  .logo-text {
    font-size: 1rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .carousel-controls {
    gap: 1rem;
  }
}
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 15px;
    font-size: 0.9rem;
}

.checkbox-group input {
    width: auto; /* Verhindert, dass die Checkbox die volle Breite einnimmt */
    margin-top: 4px;
    cursor: pointer;
}

.checkbox-group label {
    cursor: pointer;
    line-height: 1.4;
}

.checkbox-group a {
    color: var(--accent-color); /* Oder Ihre Primärfarbe */
    text-decoration: underline;
}