@import url('https://fonts.googleapis.com/css2?family=Matter+Mono:ital,wght@0,400;1,400&family=Unbounded:wght@200..900&display=swap');

body {
  margin: 0;
  padding: 80px 0 0 0;
  display: flex;
  flex-direction: column;
  font-family: 'Matter Mono', monospace;
  background-color: #fff9ef;
  background-image: url('Bilder/hintergrund.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  min-height: 100vh;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url('Bilder/hintergrund.jpg') center/cover no-repeat;
  filter: blur(4px);
  transform: scale(1.05);
  z-index: -1;
}

body::after {
  content: none;
}
/* Grundlayout für den gesamten Körper, Abstand und Hintergrundfarbe */
/* Header-Bereich am oberen Rand, immer sichtbar */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 15px;
  font-family: "Unbounded", sans-serif;
  font-size: 24px;
  background: #796b63;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
}
/* Abstand zwischen fixiertem Header und dem ersten Content-Block */
.header + .content-row {
  margin-top: 24px;
  flex: 1;
}
/* Allgemeine Stilregeln für Header-Buttons */
.header-btn {
  border: 2px solid rgba(255, 249, 239, 0.8);
  background: #998980;
  color: #998980;
  padding: 10px 15px;
  border-radius: 20px;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  font-family: "Unbounded", sans-serif;
}

/* Spezielle Gestaltung für die Öffnungszeiten-Schaltfläche */
.opening-hours {
  position: absolute;
  left: 20px;
  background: #998980;
  color: #fff9ef;
  padding: 8px 14px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  box-shadow: 0 3px 8px rgba(0,0,0,0.08);
}
/* Uhr Icon */
.opening-icon {
  display: inline-block;
  width: 35px;
  height: 35px;
  margin-right: 8px;
  vertical-align: middle;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url('Bilder/Uhr.png');
}

/* Navigation in der Mitte des Headers */
.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 15px;
}

.nav-links .nav-btn {
  background: #998980;
  color: #fff9ef;
  border: none;
  padding: 10px 15px;
  border-radius: 20px;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.nav-links .nav-btn:hover {
  background: #998980;
}

/* Header Schriftfarbe */
.header a,
.footer a {
  text-decoration: none;
  color: #fff9ef;
  transition: transform 0.2s ease;
}
/* Hoover Animation */
.header a:hover,
.social-icons img:hover,
.nav-links .nav-btn:hover,
.footer a:hover {
  transform: scale(1.10);
}
/* Icons Position */
.social-icons {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-right: 40px;
}
/* Telefonnummer */
.phone-number {
  color: #fff9ef;
  font-size: 20px;
  font-weight: 600;
  white-space: nowrap;
  background: transparent;
}
/* Icons Position */
.header img {
  height: auto;
  transition: transform 0.2s ease;
}
/* Icons Größe Insta */
.header img.instagram {
  width: 35px;
}
/* Icons Größe Facebook */
.header img.facebook {
  width: 35px;
}

.footer {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 30px;
  margin-top: auto;
  font-family: "Unbounded", sans-serif;
  font-size: 30px;
  background: #796b63;
  box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.18);
  color: #fff9ef;
  z-index: 20;
}

.salon-page .footer {
  margin-top: 120px;
}

body.home-page {
  padding-bottom: 0;
}

body.home-page .footer {
  position: static;
  margin: 0;
}

body.home-page .team-section {
  margin-bottom: 120px;
}

.footer-content {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.footer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff9ef;
  background: #998980;
  border: 2px solid rgba(255, 249, 239, 0.8);
  border-radius: 20px;
  padding: 10px 15px;
  font-size: 30px;
  font-weight: 600;
}



.outer-section {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  padding: 20px;
  max-width: 1200px;
  margin: 0 40px 40px;
}/* Überschrift */


/* Subtext unter der Hero-Text Sektion */
.hero-subtext {
  margin: -40px 0 80px;
  max-width: 1200px;
  right: -600px;
  position: relative;
  top: -0px;
  font-family: "Unbounded", sans-serif;
  font-size: 30px;
  color: #fff9ef;
  text-align: left;
  font-style: italic;
  opacity: 0.95;
}

.gallery-section {
  max-width: 1400px;
  margin: 40px auto 0;
  padding: 0 24px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.gallery-tile {
  margin: 0;
  overflow: hidden;
  border: 2px solid rgba(255, 249, 239, 0.8);
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
}

.gallery-tile img {
  display: block;
  width: 100%;
  height: 360px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-tile:hover img {
  transform: scale(1.04);
}

.gallery-tile img {
  cursor: zoom-in;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: rgba(28, 24, 21, 0.88);
}

.lightbox.is-open {
  display: flex;
}

.lightbox-image {
  max-width: min(1100px, 92vw);
  max-height: 88vh;
  object-fit: contain;
  border: 2px solid rgba(255, 249, 239, 0.8);
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 28px;
  width: 44px;
  height: 44px;
  border: 2px solid #fff9ef;
  border-radius: 50%;
  background: #796b63;
  color: #fff9ef;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .gallery-section {
    padding: 0 14px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-tile img {
    height: 300px;
  }
}

/* SLIDER*/
.slider-section {
  margin: 40px auto 0;
  max-width: 1400px;
  overflow: hidden;
  border-radius: 24px;
  border: 2px solid rgba(255, 249, 239, 0.8);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
}

/* Intro-Text zwischen Slider und USP */
.mid-text {
  margin: 300px auto 24px;
  max-width: 1500px;
  text-align: center;
  color: #796b63;
  font-family: "Unbounded", sans-serif;
}

body.home-page .home-lower-content {
  margin: 200px calc(50% - 50vw) 0;
  padding: 200px 24px 120px;
  box-sizing: border-box;
  background: #fff9ef;
}

body.home-page .home-lower-content .mid-text {
  margin-top: 0;
}

body.home-page .home-lower-content .mid-text p {
  color: #796b63;
}

.mid-text p {
  margin: 0;
  font-size: 24px;
  opacity: 0.95;
  color: #796b63;
  max-width: 1600px;
  
}


.slider-track {
  display: flex;
  width: 700%;
  animation: sliderScroll 42s infinite;
}

.slider-slide {
  flex: 0 0 14.2857%;
}

.slider-slide img {
  display: block;
  width: 100%;
  height: 700px;
  object-fit: cover;
}

@keyframes sliderScroll {
  0%, 12% {
    transform: translateX(0%);
  }
  14.28%, 26.28% {
    transform: translateX(-14.2857%);
  }
  28.57%, 40.57% {
    transform: translateX(-28.5714%);
  }
  42.85%, 54.85% {
    transform: translateX(-42.8571%);
  }
  57.14%, 69.14% {
    transform: translateX(-57.1428%);
  }
  71.42%, 83.42% {
    transform: translateX(-71.4285%);
  }
  85.71%, 97.71% {
    transform: translateX(-85.7142%);
  }
  100% {
    transform: translateX(0%);
  }
}
/* USP´s */
.usp-section {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  justify-content: center;
  margin: 100px auto 0;
  max-width: 1400px;
}

.usp-card {
  flex: 1 1 220px;
  max-width: 300px;
  padding: 24px 20px;
  border: 2px solid rgba(255, 249, 239, 0.8);
  border-radius: 20px;
  background: #796b63;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  color: #fff9ef;
  text-align: center;
}

.usp-card h2 {
  margin: 0 0 10px;
  font-family: "Unbounded", sans-serif;
  font-size: 24px;
}

.usp-card p {
  margin: 0;
  font-family: "Unbounded", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

.team-section {
  display: flex;
  align-items: center;
  gap: 72px;
  margin: 220px auto 0;
  max-width: 1700px;
  padding: 56px;
  border: 2px solid rgba(255, 249, 239, 0.8);
  border-radius: 28px;
  background: #796b63;
  color: #fff9ef;
}

.team-image {
  flex: 0 0 760px;
}

.team-image img {
  width: 100%;
  height: 680px;
  object-fit: cover;
  border-radius: 40px;
  border: 2px solid rgba(255, 249, 239, 0.8);
  
/* Bild als Ersatz für die Hero-Überschrift */
.hero-image {
  display: block;
  margin: 260px auto 0;
  max-width: 900px;
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  object-fit: cover;
}
}

.team-text {
  flex: 1;
}

.team-text h2 {
  margin: 0 0 18px;
  font-family: "Unbounded", sans-serif;
  font-size: 88px;
}

.team-text p {
  margin: 0;
  font-family: "Unbounded", sans-serif;
  font-size: 22px;
  line-height: 1.8;
}
.Galerie-Text {
  margin: 100px auto 24px;
  max-width: 1500px;
  text-align: center;
  color: #fff9ef;
  font-family: "Unbounded", sans-serif;
  font-size: 64px;
}

.friseur-page {
  max-width: 1400px;
  margin: 150px auto 160px;
  padding: 0 24px;
}

.friseur-hero {
  text-align: center;
  margin-bottom: 56px;
}

.eyebrow {
  margin: 0 0 18px;
  font-family: "Unbounded", sans-serif;
  font-size: 18px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff9ef;
  opacity: 0.9;
}

.friseur-hero h1 {
  margin: 0;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 1.1;
  color: #fff9ef;
}

.hero-copy,
.hero-copy2 {
  max-width: 860px;
  margin: 24px auto 0;
  font-size: 22px;
  line-height: 1.7;
  color: #fff9ef;
  opacity: 0.95;
}

.friseur-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.service-card {
  background: rgba(121, 107, 99, 0.92);
  border: 2px solid rgba(255, 249, 239, 0.8);
  border-radius: 24px;
  padding: 28px 24px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  color: #fff9ef;
}

.service-card h2 {
  margin: 0 0 20px;
  font-family: "Unbounded", sans-serif;
  font-size: 34px;
}

.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 249, 239, 0.25);
  font-family: "Unbounded", sans-serif;
  font-size: 18px;
}

.service-card li strong {
  color: #fff9ef;
}

.info-grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.info-card {
  background: rgba(255, 249, 239, 0.86);
  border: 2px solid rgba(121, 107, 99, 0.35);
  border-radius: 22px;
  padding: 28px 24px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.info-card.accent {
  background: rgba(153, 137, 128, 0.9);
  color: #fff9ef;
}

.info-card h3 {
  margin: 0 0 14px;
  font-family: "Unbounded", sans-serif;
  font-size: 26px;
}

.info-card p {
  margin: 0;
  font-family: "Unbounded", sans-serif;
  font-size: 17px;
  line-height: 1.7;
}

.kosmetik-page .service-card {
  display: flex;
  flex-direction: column;
}

.cosmetic-service {
  margin: 0 0 20px;
  font-family: "Unbounded", sans-serif;
  font-size: 17px;
  line-height: 1.7;
}

.cosmetic-duration {
  display: block;
  margin-bottom: 16px;
  color: rgba(255, 249, 239, 0.75);
  font-family: "Unbounded", sans-serif;
  font-size: 14px;
}

.cosmetic-price {
  display: block;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 249, 239, 0.25);
  font-family: "Unbounded", sans-serif;
  font-size: 24px;
}

.cosmetic-price-list {
  margin-top: 56px;
  padding: 42px 48px 48px;
  border: 2px solid rgba(255, 249, 239, 0.8);
  border-radius: 24px;
  background: rgba(255, 249, 239, 0.9);
  color: #796b63;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.price-list-heading {
  margin-bottom: 28px;
  text-align: center;
}

.price-list-heading .eyebrow {
  margin-bottom: 12px;
  color: #796b63;
}

.price-list-heading h2 {
  margin: 0;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.2;
}

.price-list-heading > p:last-child {
  margin: 14px 0 0;
  font-family: "Unbounded", sans-serif;
  font-size: 17px;
}

.price-list-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(121, 107, 99, 0.28);
  font-family: "Unbounded", sans-serif;
  font-size: 17px;
  line-height: 1.5;
}

.price-list li:first-child {
  border-top: 1px solid rgba(121, 107, 99, 0.28);
}

.price-list strong {
  flex: 0 0 auto;
  color: #796b63;
  white-space: nowrap;
}

.extra-price-card {
  margin-top: 32px;
}

.extra-price-card .service-card {
  width: 100%;
  box-sizing: border-box;
}

.contact-page-content {
  width: min(1400px, calc(100% - 48px));
  margin: 120px auto 140px;
}

.contact-hero {
  margin-bottom: 52px;
  text-align: center;
  color: #fff9ef;
}

.contact-hero h1 {
  margin: 0;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 1.1;
}

.contact-intro {
  max-width: 720px;
  margin: 24px auto 0;
  font-size: 21px;
  line-height: 1.6;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.95fr);
  gap: 36px;
  align-items: stretch;
}

.contact-details {
  display: grid;
  gap: 24px;
}

.contact-card {
  padding: 28px;
  border: 2px solid rgba(255, 249, 239, 0.8);
  border-radius: 20px;
  background: rgba(255, 249, 239, 0.88);
  color: #796b63;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.14);
}

.contact-card-accent {
  background: #796b63;
  color: #fff9ef;
}

.contact-card h2 {
  margin: 0 0 16px;
  font-family: "Unbounded", sans-serif;
  font-size: 27px;
}

.contact-card p {
  margin: 0 0 16px;
  font-family: "Unbounded", sans-serif;
  font-size: 17px;
  line-height: 1.7;
}

.contact-card p:last-child {
  margin-bottom: 0;
}

.contact-card address {
  font-style: normal;
}

.contact-card a {
  color: inherit;
  font-weight: 700;
}

.contact-team-image {
  min-height: 100%;
  overflow: hidden;
  border: 2px solid rgba(255, 249, 239, 0.8);
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
}

.contact-team-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.legal-page-content {
  width: min(1100px, calc(100% - 48px));
  margin: 130px auto 140px;
}

.legal-hero {
  margin-bottom: 48px;
  text-align: center;
  color: #fff9ef;
}

.legal-hero h1 {
  margin: 0;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1.1;
}

.legal-hero > p:last-child {
  margin: 20px auto 0;
  font-size: 20px;
}

.legal-content {
  display: grid;
  gap: 24px;
}

.legal-card {
  padding: 30px 34px;
  border: 2px solid rgba(255, 249, 239, 0.8);
  border-radius: 20px;
  background: rgba(255, 249, 239, 0.9);
  color: #796b63;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

.legal-card h2 {
  margin: 0 0 16px;
  font-family: "Unbounded", sans-serif;
  font-size: 24px;
  line-height: 1.3;
}

.legal-card p,
.legal-card address {
  margin: 0 0 14px;
  font-family: "Unbounded", sans-serif;
  font-size: 16px;
  font-style: normal;
  line-height: 1.8;
}

.legal-card p:last-child {
  margin-bottom: 0;
}

.legal-card a {
  color: inherit;
  font-weight: 700;
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-team-image img {
    min-height: 420px;
  }
}

@media (max-width: 560px) {
  .legal-page-content {
    width: min(100% - 28px, 1100px);
    margin-top: 100px;
  }

  .legal-card {
    padding: 24px 20px;
  }

  .legal-card h2 {
    font-size: 20px;
  }

  .legal-card p,
  .legal-card address {
    font-size: 14px;
  }

  .contact-page-content {
    width: min(100% - 28px, 1400px);
    margin-top: 100px;
  }

  .contact-card {
    padding: 22px;
  }

  .contact-team-image img {
    min-height: 320px;
  }
}

@media (max-width: 700px) {
  .cosmetic-price-list {
    padding: 32px 22px 36px;
  }

  .price-list-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .price-list li {
    gap: 14px;
    font-size: 15px;
  }
}

/* Mobile layout */
@media (max-width: 700px) {
  body {
    padding-top: 126px;
    overflow-x: hidden;
  }

  .header {
    box-sizing: border-box;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0;
    padding: 10px 12px 12px;
  }

  .opening-hours {
    position: static;
    order: 1;
    margin-right: auto;
    width: auto;
    height: 34px;
    padding: 5px 7px;
    justify-content: center;
    gap: 4px;
    font-size: 10px;
    white-space: nowrap;
  }

  .opening-icon {
    width: 22px;
    height: 22px;
    margin: 0;
  }

  .social-icons {
    order: 2;
    margin: 0;
    gap: 4px;
  }

  .header img.instagram,
  .header img.facebook {
    width: 24px;
  }

  .phone-number {
    padding: 6px 5px;
    font-size: 10px;
    border-radius: 8px;
  }

  .nav-links {
    position: static;
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 10px;
    transform: none;
  }

  .nav-links .nav-btn {
    padding: 7px 8px;
    border-radius: 10px;
    font-size: 11px;
  }

  .header + .content-row {
    margin-top: 0;
  }

  .hero-image {
    width: calc(100% - 28px);
    margin-top: 70px;
  }

  .hero-subtext {
    right: auto;
    margin: 18px 14px 36px;
    font-size: 20px;
    line-height: 1.35;
    text-align: center;
  }

  .slider-section {
    margin: 24px 14px 0;
    border-radius: 14px;
  }

  .slider-slide img {
    height: 280px;
  }

  body.home-page .home-lower-content {
    margin-top: 80px;
    padding: 70px 14px 64px;
  }

  .mid-text {
    margin: 0 auto 24px;
  }

  .mid-text p {
    font-size: 15px;
    line-height: 1.7;
  }

  .usp-section {
    gap: 18px;
    margin-top: 48px;
  }

  .usp-card {
    flex-basis: 100%;
    max-width: none;
    padding: 22px 18px;
  }

  .usp-card h2 {
    font-size: 19px;
    line-height: 1.35;
  }

  .usp-card p {
    font-size: 14px;
    line-height: 1.6;
  }

  .team-section {
    flex-direction: column;
    gap: 24px;
    margin-top: 80px;
    padding: 18px;
    border-radius: 18px;
  }

  .team-image {
    flex: none;
    width: 100%;
  }

  .team-image img {
    height: 280px;
    border-radius: 16px;
  }

  .team-text h2 {
    font-size: 38px;
  }

  .team-text p {
    font-size: 15px;
    line-height: 1.7;
  }

  .footer {
    justify-content: center;
    padding: 22px 14px;
  }

  .footer-links {
    gap: 8px;
  }

  .footer-btn {
    padding: 8px 10px;
    border-radius: 10px;
    font-size: 12px;
  }

  .friseur-page {
    margin: 70px auto 90px;
    padding: 0 14px;
  }

  .friseur-hero {
    margin-bottom: 34px;
  }

  .eyebrow {
    font-size: 12px;
    letter-spacing: 0.12em;
  }

  .friseur-hero h1,
  .contact-hero h1,
  .legal-hero h1 {
    font-size: clamp(2rem, 12vw, 3.4rem);
  }

  .hero-copy,
  .hero-copy2,
  .contact-intro {
    font-size: 15px;
    line-height: 1.7;
  }

  .friseur-grid,
  .info-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-card,
  .info-card {
    padding: 22px 18px;
    border-radius: 16px;
  }

  .service-card h2 {
    font-size: 23px;
  }

  .service-card li,
  .info-card p,
  .cosmetic-service {
    font-size: 14px;
    line-height: 1.6;
  }

  .info-card h3 {
    font-size: 21px;
  }

  .contact-page-content,
  .legal-page-content {
    width: calc(100% - 28px);
    margin-top: 70px;
    margin-bottom: 90px;
  }

  .contact-layout {
    gap: 18px;
  }

  .contact-card {
    padding: 20px 18px;
    border-radius: 16px;
  }

  .contact-card h2 {
    font-size: 21px;
  }

  .contact-card p {
    font-size: 14px;
    line-height: 1.6;
  }

  .contact-team-image,
  .contact-team-image img {
    min-height: 280px;
  }

  .legal-content {
    gap: 18px;
  }

  .legal-card {
    border-radius: 16px;
  }

  .Galerie-Text {
    margin: 70px 14px 24px;
    font-size: clamp(2rem, 11vw, 3.4rem);
    line-height: 1.15;
  }
}
