* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
}

body,
html {
  height: 100%;
  font-family: "Montserrat", sans-serif;
}

header {
  background-color: #ffffff;
  border-bottom: 2px solid #e0e0e0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}
nav a {
  text-decoration: none;
  color: #555;
  font-weight: 500;
  transition: color 0.3s ease;
}
nav a:hover {
  color: #8e44ad; /* edler violett-grauer Ton */
}
.logo a {
  color: inherit;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.5rem;
}
.logo a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 100%;
    right: 0;
    padding: 1rem;
    display: none; /* für spätere mobile Erweiterung */
  }
}

.intro {
  padding: 4rem 2rem;
  background-color: #fdfdfd;
  text-align: center;
}
.intro h1 {
  font-size: 2rem;
  color: #2c2c2c;
  margin-bottom: 1rem;
}
.intro p {
  font-size: 1.2rem;
  color: #555;
}
.intro-image {
  display: block;
  max-width: 100%;
  height: 200px;
  width: 200px;
  margin: 2rem auto;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.highlight {
  font-size: 1.1rem;
  color: #444;
  max-width: 800px;
  margin: 1rem auto;
  text-align: center;
}
.green {
  color: #2ecc71;
  font-weight: bold;
}

.scroll-down {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1.2rem;
  color: #555;
  margin-top: 2rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.scroll-down:hover {
  transform: translateY(5px);
  color: #8e44ad;
}
.scroll-down .arrow {
  font-size: 1.5rem;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
}

.toc {
  background-color: #f8f8f8;
  padding: 3rem 2rem;
  text-align: center;
}
.toc h2 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #2c3e50;
}
.toc ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 600px;
  display: grid;
  gap: 0.8rem;
}
.toc li a {
  display: block;
  text-decoration: none;
  color: #555;
  font-size: 1.1rem;
  padding: 0.6rem 1rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  transition: background 0.3s, color 0.3s;
}
.toc li a:hover {
  background-color: #8e44ad;
  color: #fff;
}

.section-highlight {
  background: #fff;
  padding: 4rem 2rem;
  border-top: 4px solid #000000;
}
.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.section-highlight h2 {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 1.5rem;
}
.section-highlight p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 1.2rem;
  margin-left: auto;
  margin-right: auto;
  text-align: justify;
}
.brand-highlight {
  color: #8e44ad;
  font-weight: bold;
  text-decoration: none;
}
.brand-highlight:hover {
  text-decoration: underline;
}

.section-rhodium {
  background-color: #fdfdfd;
  padding: 4rem 2rem;
  border-top: 1px solid #eee;
}
.section-rhodium h2 {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  text-align: center;
}
.section-rhodium p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: justify;
}

.section-extraordinary {
  background-color: #ffffff;
  padding: 4rem 2rem;
  border-top: 1px solid #eee;
}
.section-extraordinary h2 {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  text-align: center;
}
.section-extraordinary p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  text-align: justify;
}
.brand-highlight {
  color: #8e44ad;
  font-weight: bold;
  text-decoration: none;
}
.brand-highlight:hover {
  text-decoration: underline;
}

.cta {
  background-color: #f4f1fa;
  padding: 4rem 2rem;
  height: 50vh;
  border-top: 1px solid #ddd;
}
.cta-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}
.cta-content {
  flex: 1 1 600px;
  height: 30vh;
}
.cta-content h3 {
  font-size: 1.8rem;
  color: #2c2c2c;
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.cta-button {
  background-color: #8e44ad;
  color: white;
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}
.cta-button:hover {
  background-color: #732d91;
}
.cta-image {
  flex: 1 1 400px;
  text-align: center;
}
.cta-image img {
  height: 300px;
  width: 500px;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.section-design {
  background-color: #fff;
  padding: 4rem 2rem;
  border-top: 1px solid #eee;
  margin-top: 100px;
}
.design-container {
  display: flex;
  flex-direction: row; /* Bild links, Text rechts */
  align-items: flex-start;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}
.design-image {
  flex: 1 1 350px;
  text-align: center;
}
.design-image img {
  max-width: 90%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.design-content {
  flex: 1 1 500px;
}
.design-content h2 {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 1.5rem;
}
.design-content p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.section-persona {
  background-color: #fafafa;
  padding: 4rem 2rem;
  border-top: 1px solid #eee;
}
.persona-wrapper {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}
.section-persona h2 {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 2rem;
}
.section-persona p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.highlight-quote {
  font-style: italic;
  font-size: 1.2rem;
  margin: 2rem 0;
}
.statement {
  font-size: 1.3rem;
  font-weight: 500;
  color: #222;
  margin-top: 2rem;
  line-height: 1.6;
}

.section-komfort {
  background-color: #ffffff;
  padding: 4rem 2rem;
  border-top: 1px solid #eee;
}
.komfort-wrapper {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}
.section-komfort h2 {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 2rem;
}
.section-komfort p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.everlasting {
  font-size: 1.2rem;
  font-weight: 500;
  color: #222;
  margin-top: 2.5rem;
  font-family: "Georgia", serif;
  line-height: 1.8;
}
.everlasting span {
  display: block;
  margin-top: 1rem;
  font-size: 1.3rem;
  color: #5a2b8a;
  font-style: italic;
}

.section-faq {
  background-color: #fdfdfd;
  padding: 4rem 2rem;
  border-top: 1px solid #eee;
}
.faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
}
.section-faq h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
  color: #2c3e50;
}
.faq-item {
  border-bottom: 1px solid #ddd;
  margin-bottom: 1rem;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  position: relative;
}
.faq-question::after {
  content: "+";
  position: absolute;
  right: 1rem;
  font-size: 1.2rem;
  transition: transform 0.2s;
}
.faq-answer {
  display: none;
  padding: 0 1rem 1rem 1rem;
  color: #555;
  font-size: 1rem;
}
.faq-item.active .faq-answer {
  display: block;
}
.faq-item.active .faq-question::after {
  content: "−";
}

.section-final {
  background-color: #f8f8f8;
  padding: 4rem 2rem;
  text-align: center;
  border-top: 1px solid #eee;
}
.final-wrapper {
  max-width: 800px;
  margin: 0 auto;
}
.section-final h2 {
  font-size: 2rem;
  color: #2c3e50;
  margin-bottom: 2rem;
}
.section-final p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.kontakt-button {
  display: inline-block;
  margin-top: 2rem;
  background-color: #8e44ad;
  color: white;
  padding: 0.8rem 1.8rem;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
  transition: background-color 0.3s ease;
}
.kontakt-button:hover {
  background-color: #732d91;
}

.footer {
  background-color: #2c2c2c;
  color: #eee;
  padding: 3rem 2rem 1.5rem;
  font-size: 0.95rem;
}
.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
  gap: 2rem;
}
.footer h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #ffffff;
}
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer li {
  margin-bottom: 0.5rem;
}
.footer a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer a:hover {
  color: #8e44ad;
}
.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  border-top: 1px solid #444;
  padding-top: 1rem;
  font-size: 0.85rem;
  color: #aaa;
}
