 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Roboto', sans-serif;
    }

    body {
      background: #fff;
      color: #333;
    }

    header {
      display: flex;
      align-items: center;
      padding: 10px 20px;
      background-color: #fff;
      border-bottom: 1px solid #ddd;
      flex-wrap: wrap;
    }

    .logo {
      width: 50px;
    }

    .search-container {
      flex: 1;
      margin: 0 10px;
      display: flex;
    }

    .search-container input {
      flex: 1;
      padding: 8px;
      font-size: 16px;
    }

    nav {
      display: flex;
      justify-content: space-evenly;
      background: #fff;
      flex-wrap: wrap;
      padding: 10px 0;
      border-bottom: 1px solid #ddd;
    }

    nav .category {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      margin: 10px;
      width: 80px;
    }

    nav .category i {
      font-size: 30px;
      margin-bottom: 5px;
    }

    nav .category span {
      font-size: 14px;
    }

    .banner {
      background: yellow;
      text-align: center;
      padding: 30px 10px;
      position: relative;
    }

    .banner .title {
      font-size: 22px;
      font-weight: bold;
      margin-bottom: 10px;
    }

    .banner .subtitle {
      font-size: 18px;
      color: #0050a0;
      margin-bottom: 20px;
    }

    .banner .btn {
      background: #0050a0;
      color: white;
      padding: 10px 20px;
      font-size: 16px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
    }

    .banner img {
      width: 100px;
      border-radius: 50%;
      margin: 30px;
    }

    @media (max-width: 768px) {
      nav {
        justify-content: flex-start;
        overflow-x: auto;
      }

      .banner {
        font-size: 14px;
      }

      .banner .title {
        font-size: 18px;
      }

      .banner .btn {
        padding: 8px 16px;
        font-size: 14px;
      }
    }

     .angebot-wrapper {
      padding: 20px;
    }

    .angebot-header {
      font-size: 20px;
      font-weight: bold;
      margin-bottom: 15px;
    }

    .angebot-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 16px;
      margin: 20px;
      margin-bottom: 40px;
    }

    .angebot-card {
      background: white;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      display: flex;
      flex-direction: column;
    }

    .angebot-card img {
      width: 100%;
      height: auto;
    }

    .angebot-text {
      padding: 12px;
    }

    .angebot-label {
      font-size: 12px;
      color: #888;
      margin-bottom: 5px;
    }

    .angebot-title {
      font-weight: bold;
      font-size: 15px;
    }

    .outdoor-header {
      font-size: 18px;
      font-weight: bold;
      margin: 30px 0 15px;
    }

    .outdoor-grid {
      display: grid;
      margin: 20px;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 16px;
    }

    .outdoor-card {
      background: white;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }

    .outdoor-card img {
      width: 100%;
      height: auto;
    }

    .outdoor-text {
      padding: 12px;
    }

    .outdoor-title {
      font-weight: bold;
      font-size: 15px;
      margin-bottom: 4px;
    }

    .outdoor-desc {
      font-size: 13px;
      color: #555;
    }

    @media (max-width: 500px) {
      .angebot-header,
      .outdoor-header {
        font-size: 16px;
      }
    }

    .wochen-angebot-container {
      padding: 20px;
    }

    .wochen-title {
      font-size: 20px;
      font-weight: bold;
      margin-bottom: 15px;
    }

    .wochen-grid {
      display: grid;
      margin: 20px;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 16px;
      margin-bottom: 40px;
    }

    .wochen-item {
      background: white;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      display: flex;
      flex-direction: column;
    }

    .wochen-item img {
      width: 100%;
      height: auto;
    }

    .wochen-info {
      padding: 12px;
    }

    .wochen-info h4 {
      font-size: 15px;
      margin: 0 0 6px;
    }

    .wochen-info small {
      color: #777;
      font-size: 13px;
    }

    .highlight-title {
      font-size: 18px;
      font-weight: bold;
      margin: 30px 0 15px;
    }

    .highlight-grid {
      display: grid;
      margin: 20px;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 16px;
    }

    .highlight-box {
      background: white;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }

    .highlight-box img {
      width: 100%;
      height: auto;
    }

    .highlight-info {
      padding: 12px;
    }

    .highlight-info h4 {
      margin: 0 0 4px;
      font-size: 15px;
    }

    .highlight-info p {
      font-size: 13px;
      color: #555;
      margin: 0;
    }

    @media (max-width: 500px) {
      .wochen-title,
      .highlight-title {
        font-size: 16px;
      }
    }

     .lidl-section {
      margin-bottom: 40px;
    }

    .lidl-heading {
      font-size: 20px;
      margin: 20px;
      font-weight: bold;
      margin-bottom: 16px;
    }

    .lidl-grid {
      display: grid;
      margin:40px;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 16px;
    }

    .lidl-card {
      background-color: white;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      display: flex;
      flex-direction: column;
    }

    .lidl-card img {
      width: 100%;
      height: auto;
    }

    .lidl-card-content {
      padding: 12px;
    }

    .lidl-card-content h4 {
      font-size: 15px;
      margin: 0 0 6px;
    }

    .lidl-card-content p {
      font-size: 13px;
      color: #555;
      margin: 0;
    }

    @media (max-width: 600px) {
      .lidl-heading {
        font-size: 17px;
      }
    }
      .deal-wrapper {
      background: #003087;
      border-radius: 8px;
      padding: 20px;
      color: white;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .deal-title {
      font-size: 20px;
      font-weight: bold;
    }

    .countdown {
      font-size: 18px;
      display: flex;
      gap: 10px;
      align-items: center;
    }

    .time-box {
      background: white;
      color: #003087;
      padding: 10px 14px;
      border-radius: 4px;
      font-weight: bold;
    }

    .product-list {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 16px;
    }

    .product-card {
      background: white;
      border-radius: 8px;
      color: black;
      padding: 10px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    }

    .product-card img {
      width: 100%;
      height: auto;
      border-radius: 4px;
    }

    .rating {
      font-size: 14px;
      color: #f0a500;
      margin-bottom: 4px;
    }

    .brand {
      font-size: 12px;
      font-weight: bold;
    }

    .title {
      font-size: 13px;
      margin: 5px 0;
    }

    .old-price {
      text-decoration: line-through;
      font-size: 12px;
      color: #888;
    }

    .discount {
      color: red;
      font-weight: bold;
      font-size: 12px;
    }

    .new-price {
      font-size: 22px;
      color: red;
      font-weight: bold;
    }

    .energy {
      margin-top: 6px;
      font-size: 11px;
      color: #003087;
      font-weight: bold;
    }

    .product-link {
      font-size: 11px;
      color: #007bff;
      text-decoration: underline;
    }

    .view-all {
      color: #ffdc00;
      font-weight: bold;
      font-size: 14px;
    }

    @media (max-width: 600px) {
      .countdown {
        flex-wrap: wrap;
        font-size: 16px;
      }

      .time-box {
        font-size: 16px;
      }
    }

     .section-header {
      font-size: 22px;
      font-weight: bold;
      margin: 40px;
      margin-bottom: 20px;
    }

    .flyer-container {
      display: grid;
      margin: 50px;
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      gap: 16px;
    }

    .flyer-card {
      background: white;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
      text-align: center;
      transition: transform 0.3s;
    }

    .flyer-card:hover {
      transform: translateY(-5px);
    }

    .flyer-img {
      width: 100%;
      height: auto;
    }

    .flyer-type {
      font-size: 13px;
      color: #444;
      margin-top: 8px;
    }

    .flyer-dates {
      font-size: 14px;
      font-weight: bold;
      margin-bottom: 10px;
    }

    .inactive {
      opacity: 0.4;
      pointer-events: none;
    }

    .inactive-button {
      background: none;
      border: 2px solid #003087;
      color: #003087;
      padding: 6px 10px;
      margin: 10px auto;
      border-radius: 4px;
      font-size: 14px;
      cursor: pointer;
    }

    @media (max-width: 600px) {
      .section-header {
        font-size: 18px;
        text-align: center;
      }

      .flyer-dates {
        font-size: 12px;
      }

      .inactive-button {
        font-size: 12px;
      }
    }

     .headline {
      font-weight: bold;
      font-size: 16px;
      margin: 20px 20px ;
    }

    .image-banner {
      width: 98%;
      margin: 10px;
      height: auto;
      border-radius: 4px;
      overflow: hidden;
      position: relative;
    }

    .image-banner img {
      width: 100%;
      height: auto;
      display: block;
    }

    .text-overlay {
      position: absolute;
      bottom: 0;
      background: rgba(255, 255, 255, 0.7);
      width: 100%;
      font-size: 14px;
      font-weight: bold;
      padding: 6px 12px;
    }

    .strip-section {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      background: #0046aa;
      color: white;
      padding: 20px;
      margin: 20px 0;
      border-radius: 4px;
      position: relative;
    }

    .strip-section > div {
      flex: 1 1 30%;
      text-align: center;
    }

    .strip-section img {
      max-width: 100%;
      height: auto;
    }

    .label-box {
      background: #ffec00;
      color: #c60000;
      font-weight: bold;
      padding: 6px 12px;
      transform: rotate(-45deg);
      position: absolute;
      right: 10px;
      top: 10px;
      font-size: 14px;
    }

    .footer-strip {
      background: #e0e9f8;
      padding: 10px 15px;
      font-size: 14px;
      font-weight: normal;
    }

    @media (max-width: 768px) {
      .strip-section {
        flex-direction: column;
        text-align: center;
        gap: 16px;
      }

      .label-box {
        position: static;
        transform: none;
        margin: 10px auto 0;
      }
    }

     .spalten-container {
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      justify-content: space-between;
    }

    .eintrag-spalte {
        margin: 30px;
      min-width: 150px;
      flex: 1;
    }

    .eintrag-spalte h3 {
      font-size: 16px;
      margin-bottom: 10px;
    }

    .eintrag-spalte ul {
      list-style: disc inside;
      margin: 0;
      padding: 0;
    }

    .eintrag-spalte li {
      margin-bottom: 6px;
    }

    .eintrag-spalte a {
      color: #0056ba;
      text-decoration: none;
      font-size: 14px;
    }

    .eintrag-spalte a:hover {
      text-decoration: underline;
    }

    @media (max-width: 768px) {
      .spalten-container {
        flex-direction: column;
        gap: 20px;
      }
    }

    .inhalt-bereich {
      max-width: 1000px;
      margin: auto;
      padding: 10px;
    }

    .inhalt-bereich h2 {
      font-size: 20px;
      font-weight: bold;
      margin: 24px 0 12px;
    }

    .inhalt-bereich p {
      margin-bottom: 16px;
      font-size: 15px;
    }

    .inhalt-bereich a {
      color: #0056ba;
      text-decoration: none;
    }

    .inhalt-bereich a:hover {
      text-decoration: underline;
    }

    @media (max-width: 768px) {
      .inhalt-bereich {
        padding: 10px;
      }

      .inhalt-bereich h2 {
        font-size: 18px;
      }

      .inhalt-bereich p {
        font-size: 14px;
      }
    }

      .oberbereich {
      text-align: center;
      font-weight: bold;
      font-size: 20px;
      margin-bottom: 30px;
    }

    .werbe-box {
      display: flex;
      max-width: 800px;
      margin: 0 auto;
      background: #ffe600;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
      flex-wrap: wrap;
    }

    .werbe-bild {
      flex: 1 1 200px;
      min-width: 200px;
    }

    .werbe-bild img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .werbe-inhalt {
      flex: 2 1 300px;
      padding: 20px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
    }

    .werbe-inhalt h3 {
      margin: 0 0 10px;
      font-size: 22px;
      color: #000;
    }

    .werbe-inhalt p {
      margin: 0 0 20px;
      font-size: 16px;
      color: #000;
    }

    .cta-button {
      padding: 10px 20px;
      background-color: #0045aa;
      color: #fff;
      font-weight: bold;
      border: none;
      border-radius: 20px;
      text-decoration: none;
      transition: background 0.3s ease;
    }

    .cta-button:hover {
      background-color: #002e73;
    }

    .fusszeile {
      margin-top: 30px;
      font-size: 13px;
      text-align: left;
      color: #333;
      padding-left: 10px;
    }

    @media (max-width: 600px) {
      .werbe-box {
        flex-direction: column;
        text-align: center;
      }

      .werbe-inhalt {
        align-items: center;
        padding: 15px;
      }

      .werbe-inhalt h3 {
        font-size: 20px;
      }

      .werbe-inhalt p {
        font-size: 15px;
      }

      .cta-button {
        width: 100%;
        text-align: center;
      }
    }

    
    .unterbereich {
      background-color: #2e3b4e;
      color: #fff;
      padding: 40px 20px 20px;
    }

    .symbolzeile {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-around;
      padding-bottom: 20px;
      border-bottom: 1px solid #999;
      text-align: center;
    }

    .symbolzeile div {
      margin: 10px;
      max-width: 160px;
    }

    .symbolzeile img {
      height: 30px;
      margin-bottom: 10px;
    }

    .abschnitte {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      margin: 30px 0;
    }

    .abschnitte > div {
      flex: 1 1 200px;
      margin: 10px;
    }

    .abschnitte h4 {
      color: #fff;
      font-size: 16px;
      margin-bottom: 10px;
    }

    .abschnitte a {
      display: block;
      color: #ccc;
      text-decoration: none;
      font-size: 14px;
      margin: 5px 0;
    }

    .abschnitte a:hover {
      text-decoration: underline;
    }

    .infozeile {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      padding: 20px 0;
      border-top: 1px solid #999;
      border-bottom: 1px solid #999;
    }

    .infozeile div {
      margin: 10px;
      flex: 1 1 150px;
    }

    .infozeile img {
      max-height: 30px;
      margin: 5px;
    }

    .lizenzen {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      padding: 20px 0;
    }

    .lizenzen img {
      max-height: 60px;
      margin: 10px 20px;
    }

    .rechtliches {
      text-align: center;
      padding: 15px;
      font-size: 13px;
      color: #ccc;
    }

    .rechtliches a {
      color: #ccc;
      text-decoration: none;
      margin: 0 10px;
    }

    .rechtliches a:hover {
      text-decoration: underline;
    }

    @media (max-width: 768px) {
      .abschnitte {
        flex-direction: column;
      }
      .infozeile {
        flex-direction: column;
        align-items: flex-start;
      }
    }

  .kopfzeile {
      display: flex;
      align-items: center;
      padding: 10px 15px;
      background-color: white;
      border-bottom: 1px solid #ddd;
      flex-wrap: wrap;
      position: relative;
    }

    .logo-bereich img {
      width:150px;
      height: auto;
    }

    .menu-symbol {
      display: flex;
      flex-direction: column;
      justify-content: center;
      cursor: pointer;
      margin-left: 10px;
      margin-right: 10px;
    }

    .menu-symbol span {
      height: 2px;
      background: #000;
      margin: 3px 0;
      width: 20px;
    }

    .menutext {
      font-size: 10px;
      text-align: center;
    }

    .dropdown-navi {
      display: none;
      position: absolute;
      top: 60px;
      left: 10px;
      background-color: white;
      border: 1px solid #ccc;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
      padding: 10px;
      z-index: 1000;
      flex-direction: column;
      gap: 10px;
    }

    .dropdown-navi a {
      text-decoration: none;
      color: #333;
      font-size: 14px;
    }

    .dropdown-navi a:hover {
      text-decoration: underline;
    }

    .aktiv-seite {
      color: #004f9f;
      font-weight: bold;
      margin-right: 15px;
      text-decoration: underline;
    }

    .suchfeld-container {
      flex: 1;
      display: flex;
      align-items: center;
      margin: 10px;
      border: 1px solid #ccc;
      border-radius: 20px;
      padding: 5px 10px;
      background-color: #f9f9f9;
    }

    .suchfeld-container input {
      flex: 1;
      border: none;
      outline: none;
      font-size: 14px;
      background: transparent;
    }

    .suchfeld-container button {
      border: none;
      background: transparent;
      cursor: pointer;
    }

    .navi-elemente {
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .navi-elemente img {
      width: 24px;
      height: 24px;
      cursor: pointer;
    }

    @media (max-width: 768px) {
      .suchfeld-container {
        flex-basis: 100%;
        margin: 10px 0;
      }

      .navi-elemente {
        justify-content: space-around;
        flex-basis: 100%;
        margin-top: 10px;
      }

      .dropdown-navi {
        left: 15px;
        right: 15px;
        width: auto;
      }
    }

      .breadcrumbs {
      font-size: 13px;
      padding: 10px 20px;
      color: #666;
    }

    .breadcrumbs a {
      text-decoration: none;
      color: #004f9f;
    }

    .header-section {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px;
      background: linear-gradient(to right, #f5faff, #fff);
      flex-wrap: wrap;
    }

    .text-block {
      max-width: 400px;
    }

    .text-block h2 {
      font-size: 20px;
      font-weight: bold;
      color: #222;
    }

    .image-block img {
      max-width: 100%;
      height: auto;
    }

    .downloads {
      padding: 20px;
      display: flex;
      flex-direction: column;
      gap: 20px;
      max-width: 900px;
      margin: auto;
    }

    .download-box {
      display: flex;
      flex-direction: row;
      align-items: center;
      background-color: #f5f5f5;
      padding: 15px;
      gap: 15px;
      flex-wrap: wrap;
    }

    .button-style {
      background-color: #005cb9;
      color: white;
      padding: 10px 15px;
      font-weight: bold;
      font-size: 14px;
      border: none;
      display: flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
    }

    .button-style:hover {
      background-color: #004a99;
    }

    .adobe-text {
      font-size: 14px;
      color: #333;
    }

    .adobe-text a {
      color: #004f9f;
      text-decoration: none;
    }

    .adobe-text a:hover {
      text-decoration: underline;
    }

    @media (max-width: 768px) {
      .header-section {
        flex-direction: column;
        align-items: flex-start;
      }

      .download-box {
        flex-direction: column;
        align-items: flex-start;
      }
    }