* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a::after{
  text-decoration: none;
  color: #677e6d;
}
a{
  text-decoration: none;
  color: #404e44;
}

body {
  padding-top: 70px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  background-color: #f8f5f1;
}

/* === FADE IN === */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-in { opacity: 0; }
.fade-in.visible {
  animation: fadeInUp 0.7s ease forwards;
}

/* === NAV === */
nav {
  position: fixed;
  top: 0;
  left: 0;
  height: 70px; /* Deine gewünschten 70px Höhe */
  width: 100%;
  z-index: 1000;
  background-color: #ffffff; /* Weiß für nahtloses Verblenden */
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-content {
  display: flex;
  align-items: center;
  height: 100%;
  overflow: visible; /* Erlaubt dem Logo über die 70px hinaus zu ragen */
}

.Logo {
  height: 10vh; /* Logo 10% der Bildschirmhöhe */
  width: auto;
  display: block;
  position: relative;
  z-index: 1001;
}

.nav-links-desktop {
  display: flex;
  align-items: center;
}

.nav-links-desktop a {
  color: #677e6d;
  font-size: 14px;
  text-decoration: none;
  padding: 0 15px;
  transition: color 0.3s;
}

.nav-links-desktop a:hover {
  color: #223928;
}

.nav-links-desktop button {
  color: white;
  background-color: #223928;
  border: none;
  height: 38px;
  padding: 0 20px;
  margin-left: 20px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.3s;
}

/* === HAMBURGER === */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background-color: #223928;
}

/* === MOBILE MENU === */
.mobile-menu {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  z-index: 999;
  flex-direction: column;
  padding: 24px;
  border-top: 1px solid #e8e4db;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  color: #223928;
  font-size: 18px;
  text-decoration: none;
  padding: 16px 0;
  border-bottom: 1px solid #e8e4db;
}

/* === PAGE HEADER === */
.page-header {
  text-align: center;
  padding: 100px 24px 60px 24px; 
}

.page-header h3 {
  color: #C69C53;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.page-header h1 {
  color: #223928;
  font-family: Georgia, 'Times New Roman', Times, serif; /* Georgia wie ursprünglich */
  font-size: 56px;
  font-weight: 500;
  margin-top: 12px;
  line-height: 1.1;
}

/* === CONTENT === */
.datenschutz-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 40px 100px 40px;
}

.datenschutz-section {
  padding: 40px 0;
}

.datenschutz-section h2 {
  color: #223928;
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 20px;
}

.section-body p {
  color: #677e6d;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 6px;
}

.divider {
  height: 1px;
  width: 100%;
  background-color: rgb(226, 222, 210);
}

/* === FOOTER === */
.text-center-footer {
  text-align: center;
  background-color: #223928;
  padding: 128px 24px;
}

.text-center-footer h3 {
  color: #f8f5f199;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 16px;
}

.text-center-footer h1 {
  color: #F8F5F1;
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-weight: 500;
  font-size: 48px;
  max-width: 692px;
  margin: 0 auto 16px auto;
}

.text-center-footer h2 {
  font-weight: 500;
  font-size: 18px;
  color: #f8f5f1b3;
  max-width: 692px;
  margin: 0 auto;
}

.text-center-footer button {
  margin-top: 40px;
  background-color: #C69C53;
  border: none;
  padding: 16px 40px;
  color: #e8e4db;
  cursor: pointer;
}

.footer-links {
  background-color: #223928;
  color: #f8f5f199;
  font-size: 13px;
  padding: 20px 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer-links a {
  color: #f8f5f199;
  text-decoration: none;
  font-size: 13px;
}

/* === RESPONSIVE === */
@media (max-width: 767px) {
  .nav-links-desktop { display: none; }
  .hamburger { display: flex; }}