.elementor-263 .elementor-element.elementor-element-da77d6c{--display:flex;}.elementor-263 .elementor-element.elementor-element-b464c6a{--display:flex;}.elementor-263 .elementor-element.elementor-element-b464c6a:not(.elementor-motion-effects-element-type-background), .elementor-263 .elementor-element.elementor-element-b464c6a > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FFFFFF;}.elementor-263 .elementor-element.elementor-element-e4a9ef1{--display:flex;}.elementor-263 .elementor-element.elementor-element-615090b{--display:flex;}.elementor-263 .elementor-element.elementor-element-615090b:not(.elementor-motion-effects-element-type-background), .elementor-263 .elementor-element.elementor-element-615090b > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#F9F9F9;}.elementor-263 .elementor-element.elementor-element-a6d8016{--display:flex;}.elementor-263 .elementor-element.elementor-element-a6d8016:not(.elementor-motion-effects-element-type-background), .elementor-263 .elementor-element.elementor-element-a6d8016 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#181818;}/* Start custom CSS for html, class: .elementor-element-face89c *//* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

/* ================= NAVBAR ================= */
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1200px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 12px 20px;

  background: white;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);

  z-index: 1000;
}

/* ================= LOGO ================= */
.logo img {
  height: 50px;
}

/* ================= MENU DESKTOP ================= */
.nav-menu {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  color: black;
  font-weight: 600;
}

/* ================= BUTTON ================= */
.nav-btn {
  background: #9d2d01;
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
}

/* ================= HAMBURGER ================= */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: black;
  border-radius: 3px;
  transition: 0.3s;
}

/* Animation */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ================= LEGAL (DESKTOP AUS) ================= */
.menu-divider,
.menu-legal {
  display: none;
}

.menu-divider {
  width: 100%;
  height: 1px;
  background: #ddd;
  margin: 10px 0;
}

.menu-legal {
  flex-direction: column;
  gap: 10px;
}

.menu-legal a {
  font-size: 14px;
  color: #666;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  /* Button aus */
  .nav-btn {
    display: none;
  }

  /* Hamburger an */
  .hamburger {
    display: flex;
  }

  /* Menü Panel */
  .nav-menu {
    position: absolute;
    top: 80px;
    right: -100%;
    width: 260px;

    flex-direction: column;
    align-items: flex-start;
    gap: 20px;

    background: white;
    padding: 20px;
    border-radius: 20px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.2);

    transition: right 0.3s ease;

    /* 🔥 WICHTIGER FIX */
    max-height: 80vh;
    overflow-y: auto;
  }

  .nav-menu.active {
    right: 0;
  }

  /* Jetzt sichtbar */
  .menu-divider {
    display: block;
  }

  .menu-legal {
    display: flex;
    width: 100%;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-2c16621 *//* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  color: white;
}

/* ================= HEADER ================= */
.guide {
  max-width: 1100px;
  margin: auto;
  padding: 100px 20px;
}

.guide-header {
  text-align: center;
  margin-bottom: 60px;
}

.guide-header h1 {
  font-size: 5rem;
  margin-bottom: 10px;
}

.guide-header p {
  opacity: 0.7;
}

/* ================= TIMELINE ================= */
.timeline {
  position: relative;
  padding-left: 40px;
}

/* Linie */
.timeline::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 0;
  width: 2px;
  height: 100%;
  background: #9d2d01;
}

/* Item */
.timeline-item {
  position: relative;
  margin-bottom: 40px;
}

/* Nummer */
.timeline-number {
  position: absolute;
  left: -5px;
  top: 0;

  width: 35px;
  height: 35px;
  background: #9d2d01;

  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: bold
}

/* Content */
.timeline-content {
  background: #222;
  padding: 25px;
  border-radius: 15px;

  border: 1px solid rgba(255,255,255,0.05);
  transition: 0.3s;
  font-size: 20px;
}

/* Titel */
.timeline-content h2 {
  margin-bottom: 10px;
  color: white;
}

/* Liste */
.timeline-content ul {
  list-style: none;
}

.timeline-content li {
  margin-bottom: 8px;
  opacity: 0.85;
}

/* Highlight */
.highlight .timeline-content {
  background: #9d2d01;
}

.highlight .timeline-number {
  background: white;
  color: #9d2d01;
}

/* Button */
.cta-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;

  background: white;
  color: #9d2d01;

  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
}

/* ================= MOBILE ================= */
@media (max-width: 600px) {

  .guide-header h1 {
    font-size: 2rem;
  }

  .timeline {
    padding-left: 25px;
  }

  .timeline-number {
    width: 28px;
    height: 28px;
    font-size: 14px;
  }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-d5bb3fa *//* ================= FOOTER ================= */
.footer {
  background: #181818;
  color: white;
  padding: 80px 20px 40px;
}

/* ================= CONTAINER ================= */
.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;

  max-width: 1200px;
  margin: auto;
}

/* ================= BOX ================= */
.footer-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* TITEL */
.footer-box h3,
.footer-box h4 {
  margin-bottom: 15px;
  font-size: 1.6rem;
  font-weight: 600;
  position: relative;
  color: white;
}

/* 🔥 Linie unter Titel */
.footer-box h3::after,
.footer-box h4::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  
  background: #9d2d01;
  margin-top: 10px;
  border-radius: 2px;
}

/* TEXT */
.footer-box p {
  font-size: 1.4rem;
  color: #ffff;
  line-height: 1.6;
}

/* LINKS */
.footer-box a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-box a:hover {
  color: white;
}

/* ================= SOCIAL ICONS ================= */
.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.social-icons a {
  width: 38px;
  height: 38px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255,255,255,0.05);
  color: #9d2d01;

  font-size: 18px;
  transition: 0.3s;
}

/* HOVER */
.social-icons a:hover {
  background: #9d2d01;
  color: white;
  transform: scale(1.1);
}

/* ================= BOTTOM BAR ================= */
.footer-bottom {
  margin-top: 50px;
  text-align: center;
  font-size: 0.9rem;
  color: #888;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    text-align: center;
  }

  .footer-box h3::after,
  .footer-box h4::after {
    margin: 8px auto 0;
  }

  .social-icons {
    justify-content: center;
  }
}

@media (max-width: 500px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}/* End custom CSS */