:root {
      --primary: #181818;
      --secondary: #eee;
      --accent: #fff;
      --navbar-height: 74px;
      --logo-size-w: 120px;
      --logo-size-h: 60px;
      --footer-bg: #161616;
      --footer-border: #222;
      --card-gap: 2vw;
      --card-maxwidth: 370px;
      --btn-main: #fff;
      --btn-main-hover: #232323;
      --btn-txt: #111;
      --color-bronze: #aa7a4c;
      --color-silber: #b5b9bd;
      --color-gold: #ffd700;
      --color-platin: #6eefff;
    }
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    html, body {
      background: var(--primary);
      color: var(--secondary);
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      min-height: 100vh;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      overflow-x: hidden; 
    }
    nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: var(--navbar-height);
      background: rgba(10,10,10, 0.97);
      display: flex;
      align-items: center;
      justify-content: space-between;
      z-index: 998;
      box-shadow: 0 2px 8px rgba(0,0,0,0.11);
      padding: 0 4vw;
    }
    main {
      margin-top: var(--navbar-height);
      padding: 2rem 1.5rem 4rem 1.5rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      min-height: calc(100vh - var(--navbar-height));
    }
    .nav-logo-wrap {
      display: flex;
      align-items: center;
    }
    .nav-logo {
      height: var(--logo-size-h);
      width: var(--logo-size-w);
      object-fit: contain;
      border-radius: 6px;
    }
    .navbar-links {
      display: flex;
      align-items: center;
    }
    .navbar-links ul {
      list-style: none;
      display: flex;
      gap: 2.2rem;
      align-items: center;
      margin: 0;
    }
    nav a {
      color: var(--secondary);
      text-decoration: none;
      padding: 0 4px;
      font-weight: 500;
      letter-spacing: 1px;
      transition: color .2s;
      font-size: 1.05rem;
      cursor: pointer;
      white-space: nowrap;
    }
    nav a:hover {
      color: rgb(90, 90, 90);
    }
    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      cursor: pointer;
      width: 36px;
      height: 36px;
      z-index: 1001;
      margin-right: 2vw;
    }
    .hamburger span {
      height: 4px;
      width: 31px;
      background: var(--accent);
      margin: 5px 0;
      border-radius: 3px;
      display: block;
      transition: all 0.32s;
    }
    @media (max-width: 750px) {
      .navbar-links ul {
        position: fixed;
        top: 0;
        right: -100vw;
        width: 100vw;
        height: 100vh;
        background: #191919;
        flex-direction: column;
        gap: 3rem;
        align-items: center;
        justify-content: center;
        padding: var(--navbar-height) 0 0 0;
        box-shadow: 0 2px 23px #000;
        transition: right 0.33s ease;
        z-index: 1000;
        font-size: 1.9rem;
      }
      .navbar-links ul.active {
        right: 0;
      }
      .hamburger {
        display: flex;
      }
      .navbar-links ul li a {
        padding: 0 12px;
      }
      nav {
        padding: 0 2vw;
      }
      .nav-logo { 
        height: 65px; 
        width: 95px; 
      }
    }
    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(8px, 7px);
    }
    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .pakete-section {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 3rem 1rem 5rem 1rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .pakete-hinweis {
      color: #bbb;
      font-size: 1.13rem;
      margin-bottom: 2.2rem;
      max-width: 720px;
      line-height: 1.45;
    }
    .pakete-grid {
      width: 100%;
      display: flex;
      flex-wrap: wrap;
      gap: 2.9rem;
      justify-content: center;
    }
    .paket-card {
      background-color: rgba(34, 34, 34, 0.85);
      backdrop-filter: saturate(180%) blur(10px);
      border-radius: 18px;
      padding: 2.8rem 2.4rem 3.4rem 2.4rem;
      max-width: 320px;
      flex: 1 1 320px;
      box-shadow: 0 8px 30px rgba(0,0,0,0.65);
      display: flex;
      flex-direction: column;
      color: var(--secondary);
      transition: box-shadow 0.3s ease, transform 0.3s ease;
      border-top: 6px solid transparent;
      text-align: center;
      position: relative;
    }
    
    .paket-bronze {
      border-color: var(--color-bronze);
    }
    .paket-silber {
      border-color: var(--color-silber);
    }
    .paket-gold {
      border-color: var(--color-gold);
    }
    .paket-platin {
      border-color: var(--color-platin);
    }
    
    .paket-gold.popular::before {
      content: "Beliebtestes Paket";
      position: absolute;
      top: -12px;
      left: 50%;
      transform: translateX(-50%);
      background-color: var(--color-gold);
      color: #181818;
      padding: 0.25rem 1rem;
      font-size: 0.9rem;
      font-weight: 700;
      border-radius: 20px;
      box-shadow: 0 2px 10px rgba(255 215 0 / 0.7);
      letter-spacing: 0.05em;
      z-index: 10;
      user-select: none;
      white-space: nowrap;
    }
    .paket-silber.budget::before {
      content: "Günstigstes Paket";
      position: absolute;
      top: -12px;
      left: 50%;
      transform: translateX(-50%);
      background-color: var(--color-silber);
      color: #181818;
      padding: 0.25rem 1rem;
      font-size: 0.9rem;
      font-weight: 700;
      border-radius: 20px;
      box-shadow: 0 2px 10px rgba(181 185 189 / 0.7);
      letter-spacing: 0.05em;
      z-index: 10;
      user-select: none;
      white-space: nowrap;
    }
    .paket-title {
      font-size: 1.7rem;
      font-weight: 700;
      margin-bottom: 0.9rem;
      letter-spacing: 0.9px;
      text-shadow: 0 0 4px rgba(0,0,0,0.2);
      color: var(--secondary);
      transition: color 0.3s ease;
    }
    .paket-preis {
      font-size: 2.6rem;
      font-weight: 900;
      margin-bottom: 1.3rem;
      letter-spacing: 1.2px;
      line-height: 1;
      color: var(--secondary);
      text-shadow: 0 0 6px rgba(0,0,0,0.3);
      transition: color 0.3s ease;
    }
    
    .paket-bronze .paket-title,
    .paket-bronze .paket-preis {
      color: var(--color-bronze);
    }
    .paket-silber .paket-title,
    .paket-silber .paket-preis {
      color: var(--color-silber);
    }
    .paket-gold .paket-title,
    .paket-gold .paket-preis {
      color: var(--color-gold);
    }
    .paket-platin .paket-title,
    .paket-platin .paket-preis {
      color: var(--color-platin);
    }
    .paket-details {
      font-size: 1.14rem;
      line-height: 1.6;
      margin-bottom: 1.6rem;
      color: inherit;
    }
    .paket-zubuchbar {
      margin-bottom: 2rem;
      color: inherit;
    }
    .paket-zubuchbar-title {
      font-weight: 600;
      margin-bottom: 0.55rem;
      font-size: 1.16rem;
      letter-spacing: 0.3px;
    }
    .paket-zubuchbar-list {
      list-style: disc;
      list-style-position: inside;
      padding-left: 0;
      font-size: 1.05rem;
      line-height: 1.5;
      color: inherit;
    }
    .paket-action {
      margin-top: auto;
    }
    .paket-btn {
      color: var(--btn-txt);
      border: none;
      padding: 1.05em 2.4em;
      font-size: 1.14rem;
      font-weight: 700;
      border-radius: 30px;
      cursor: pointer;
      box-shadow: 0 5px 15px rgba(0,0,0,0.15);
      transition: background 0.27s ease, color 0.27s ease, transform 0.2s ease;
      user-select: none;
      width: 100%;
      max-width: 280px;
      margin: 0 auto;
      background-color: var(--btn-main);
      text-decoration: none;
      display: inline-block;
      text-align: center;
    }
    /* Paket-spezifische Buttonfarben */
    .paket-bronze .paket-btn {
      background-color: var(--color-bronze);
      color: #fff;
      box-shadow: 0 6px 14px rgb(170 122 76 / 0.45);
    }
    
    .paket-silber .paket-btn {
      background-color: var(--color-silber);
      color: #181818;
      box-shadow: 0 6px 14px rgb(181 185 189 / 0.45);
    }
    
    .paket-gold .paket-btn {
      background-color: var(--color-gold);
      color: #181818;
      box-shadow: 0 6px 14px rgba(255 215 0 / 0.55);
    }
    
    .paket-platin .paket-btn {
      background-color: var(--color-platin);
      color: #004d5d;
      box-shadow: 0 6px 14px rgba(110 239 255 / 0.55);
    }
    
    @media (max-width: 480px) {
      nav a {
        font-size: 0.97rem;
        padding: 0 3px;
      }
      .pakete-section h2 {
        font-size: 1.95rem;
      }
      .pakete-hinweis {
        font-size: 1rem;
        margin-bottom: 2rem;
      }
      .paket-title {
        font-size: 1.45rem;
      }
      .paket-preis {
        font-size: 1.85rem;
      }
      .paket-details,
      .paket-zubuchbar-list {
        font-size: 0.95rem;
      }
      .paket-btn {
        font-size: 1rem;
        padding: 0.85em 2em;
      }
    }


    footer {
      background: var(--footer-bg); color: #dadada;
      padding: 40px 6vw 18px 6vw;
      width: 100vw; border-top: 1.7px solid var(--footer-border);
      display: flex; gap: 16px; flex-wrap: wrap; justify-content: center;
      align-items: flex-start; font-weight: 400;
    }
    .footer-grid {
      display: flex; width: 100%; justify-content: center;
      gap: 52px; flex-wrap: wrap;
      max-width: 1250px; margin: 0 auto 33px auto;
    }
    .footer-col {
      flex: 1 1 170px;
      min-width: 160px; max-width: 230px;
      padding-bottom: 11px;
      display: flex; flex-direction: column; align-items: flex-start;
    }
    .footer-col h3 {
      margin-bottom: 8px; margin-top: 0;
      font-size: 1.05rem; color: #fff; letter-spacing: 1.1px;
      font-weight: bold;
    }
    .footer-col address, .footer-col a, .footer-col div, .footer-col p {
      font-size: 0.99rem; color: #bbb; font-style: normal; text-decoration: none; margin-bottom: 3px;
      line-height: 1.6;
      background: none;
      border: none;
      padding: 0;
      display: block;
      word-break: break-all;
    }
    .footer-col a {
      color: #bbb;
      text-decoration: none;
      transition: color 0.16s;
      cursor: pointer;
    }
    .footer-col a:hover {
      color: #fff;
      text-decoration: underline;
    }
    .footer-bar {
      width: 100%; display: flex; margin: 0 auto 0 auto; justify-content: center; align-items: center;
    }
    .footer-bar hr {
      width: 66vw; max-width: 400px; border: none;
      border-top: 1.3px solid #353535; margin: 0 auto;
    }
    .footer-copyright {
      width: 100%;
      padding-top: 17px; padding-bottom: 3px;
      text-align: center;
      color: #bdbdbd;
      font-size: 0.96rem;
      font-weight: 500;
      letter-spacing: 0.6px;
      user-select: none;
    }
    @media (max-width: 900px) {
      .footer-grid { gap: 19px; }
      .footer-col { flex-basis: 41%; min-width: 130px; }
    }
    @media (max-width: 600px) {
      footer { padding: 23px 6vw 13px 6vw;}
      .footer-grid { flex-direction: column; gap: 0; }
      .footer-col {max-width: unset; min-width: unset; padding-bottom: 21px;}
    }