* {
  margin: 0;
  padding: 0;
  font-family:"Calibri";
}

.topnav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: white;
  border-bottom: 2px solid #C4CC46;
  padding: 10px -10px;
  position: relative;
  z-index: 1000; /* Ensures navbar stays above other elements */
}

/* Logo Styling */
.logo-container {
  flex-grow: 1;
}

.logo {
  width: 120px;
  height: auto;
}

/* Navigation Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Menu Items */
.topnav a {
  color: black;
  text-decoration: none;
  font-size: 18px;
  padding: 10px 14px;
  transition: all 0.3s;
}

.topnav a:hover {
  color: #C4CC46;
}

/* Dropdown Styles */
.dropdown {
  position: relative;
}

.dropdown .dropbtn {
  font-size: 18px;
  border: none;
  background-color: inherit;
  color: black;
  padding: 10px 14px;
  cursor: pointer;
  transition: all 0.3s;
}

/* Dropdown Content */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 180px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1001;
  padding: 8px 0; /* Slightly reduced padding */
}

/* Dropdown Links */
.dropdown-content a {
  display: block;
  color: black;
  padding: 12px 18px; /* Reduced padding slightly */
  text-decoration: none;
  text-align: left;
  font-size: 16px;
  line-height: 1.6; /* Adjusted line height */
}

/* Hover Effect */
.dropdown-content a:hover {
  color: #C4CC46;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Flag styling */
.flagge {
  padding: 6px 12px;
}

.flagge img {
  width: 24px;
  height: auto;
  border-radius: 2px;
  cursor: pointer;
}

/* Burger Menu (Mobile) */
.topnav .icon {
  display: none;
  font-size: 24px;
  cursor: pointer;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}

/* Responsive Design */
@media (max-width: 768px) {
  .topnav {
    flex-direction: row;
    position: relative;
  }

  /* Adjusts menu for mobile to avoid overlapping logo */
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 70px; /* Moves the menu below the logo */
    right: 0;
    background-color: white;
    border-top: 2px solid #C4CC46;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding-top: 10px; /* Ensures logo is not covered */
  }

  /* Show menu when burger is tapped */
  .topnav.responsive .nav-links {
    display: flex;
  }

  .topnav .icon {
    display: block;
  }
}
  
  /* Inhaltsbereich */
  .content {
    padding: 20px;
    max-width: 1200px;
    margin: auto;
  }
  
  /* Einleitung */
  .intro {
    margin-bottom: 40px;
    text-align: center;
  }
  
  .intro h2 {
    font-size: 2rem;
    color: #C4CC46;
    margin-bottom: 10px;
  }
  
  .intro-img {
    width: 100%;
    max-width: 600px;
    margin: 20px auto;
  }
  
  /* Features */
  .features {
    margin-bottom: 40px;
    text-align: center;
  }
  
  .features h2 {
    font-size: 1.8rem;
    color: #C4CC46;
    margin-bottom: 20px;
  }
  
  .creative-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 20px 0;
  }
  
  .creative-list li {
    background: #fff;
    border: 2px solid #C4CC46;
    border-radius: 8px;
    padding: 15px 20px;
    text-align: center;
    font-weight: bold;
    color: #333;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  
  .creative-list li:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    background: #C4CC46;
    color: #fff;
  }
  
  .creative-list img {
    width: 100%;
    max-width: 80px;
    margin-bottom: 10px;
  }
  
  /* Premium-Bereich */
  .premium {
    background: #fff;
    border-left: 4px solid #C4CC46;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 40px;
  }
  
  .premium h2 {
    color: #C4CC46;
    margin-bottom: 10px;
  }
  
  .premium-img {
    width: 100%;
    max-width: 600px;
    margin: 20px auto;
  }
  
  /* Execution Business Bereich */
  .execution-business {
    background: #fff;
    border-left: 4px solid #C4CC46;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 40px;
  }
  
  .execution-business h2 {
    color: #C4CC46;
    margin-bottom: 15px;
  }
  
  .execution-business h3 {
    color: #333;
    margin-top: 20px;
    font-size: 1.2rem;
  }
  
  .execution-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding-left: 20px;
    margin-bottom: 20px;
    list-style-type: disc;
  }
  
  .execution-list li {
    padding-left: 10px;
    font-weight: normal;
  }
  
  .execution-business p {
    margin-top: 15px;
    font-size: 1.1rem;
    color: #333;
  }
  
  .execution-img {
    width: 100%;
    max-width: 600px;
    margin: 20px auto;
  }
  
  footer {
    background-color: #D9D9D9;
    padding: 40px 20px;
    color: #333;
    font-family: Arial, sans-serif;
    border-top: 1px solid #ccc;
    margin-top: 90px;
  }
  
  .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer-logo {
    width: 30%;
  }
  
  .footer-logo img {
    max-width: 250px;
  }
  
  .footer-logo p {
    margin-top: 10px;
    font-size: 14px;
    color: #666;
  }
  
  .footer-btn {
    display: inline-block;
    background-color: #cedc00;
    color: #333;
    padding: 10px 20px;
    text-decoration: none;
    margin-top: 20px;
    font-weight: bold;
  }
  
  .footer-links, .footer-contact {
    width: 30%;
  }
  
  .footer-links h3, .footer-contact h3 {
    margin-bottom: 20px;
    font-size: 18px;
  }
  
  .footer-links ul {
    list-style-type: none;
    padding: 0;
  }
  
  .footer-links ul li {
    margin-bottom: 10px;
  }
  
  .footer-links ul li a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
  }
  
  .footer-links ul li a:hover {
    text-decoration: underline;
  }
  
  .footer-contact p {
    font-size: 14px;
    margin-bottom: 10px;
    color: #333;
  }
  
  .footer-contact a {
    color: #333;
    text-decoration: none;
  }
  
  .footer-contact a:hover {
    text-decoration: underline;
  }
  
  .footer-bottom {
    margin-top: 40px;
    border-top: 1px solid #8e8e8e;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #666;
  }
  
  .footer-bottom a {
    color: #333;
    text-decoration: none;
  }
  
  .footer-bottom a:hover {
    text-decoration: underline;
  }
  
  /* Media Queries für Mobile */
  @media (max-width: 768px) {
    .content {
        padding: 10px;
    }
  
    .intro h2 {
        font-size: 1.6rem;
    }
  
    .features h2,
    .premium h2,
    .execution-business h2 {
        font-size: 1.8rem;
        text-align: center;
    }
  
    .creative-list {
        grid-template-columns: 1fr;
        margin-bottom: 20px;
    }
  
    .premium, .execution-business {
        padding: 15px;
    }
  
    .execution-business h3 {
        font-size: 1.1rem;
    }
  
    .execution-list li {
        font-size: 1rem;
    }
  
    .execution-business p {
        font-size: 1rem;
    }
  }
  
  @media (max-width: 480px) {
    .intro h2 {
        font-size: 1.4rem;
    }
  
    .features h2,
    .premium h2,
    .execution-business h2 {
        font-size: 1.6rem;
    }
  
    .creative-list li {
        padding: 8px;
        font-size: 0.9rem;
    }
  
    .execution-business p {
        font-size: 0.95rem;
    }
  }

  /* Responsive Styles */
  @media (max-width: 992px) {
    .menu_bar ul {
      flex-direction: column;
      align-items: flex-start;
    }
  }
  
  @media (max-width: 768px) {
    .slogan {
      transform: scale(1.5);
      margin-top: 50px;
      width: 80%;
    }
  
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .footer-logo,
    .footer-links,
    .footer-contact {
      width: 100%;
      margin-bottom: 20px;
    }
  }
  
/* Responsive Navigation */
@media (max-width: 992px) {
  .burger-menu {
    display: block;
  }

  .menu_bar ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    right: 0;
    background-color: white;
    width: 100%;
    z-index: 1000;
    border-top: 2px solid #C4CC46;
  }

  .menu_bar ul.active {
    display: flex;
  }

  .menu_bar ul li {
    text-align: center;
    padding: 15px 0;
    width: 100%;
    border-bottom: 1px solid #ddd;
  }

  .dropdown_menu {
    position: static;
    margin: 0 auto;
    width: 100%;
  }

  body, html {
    overflow-x: hidden;
  }
}

  
  @media (max-width: 576px) {
    .menu_bar ul li a {
      font-size: 16px;
      padding: 10px;
    }
  }