/* =============================== */
/* Estilos Generales */
/* =============================== */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    overflow-x: hidden;
  }
  
  body {
    font-family: Arial, sans-serif;
    background: linear-gradient(90deg, #eff1f3, #dfe8f0, #f3f5f7);
    color: #333;
    display: flex;
    flex-direction: column;
    
    
  }
  /* =============================== */
/* Navbar */
/* =============================== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #e1dfdf;
    padding: 25px 20px;
  }
  .navbar .logo {
    color: rgb(133, 127, 127);
    font-size: 22px;
    font-weight: bold;
  }
  .navbar ul {
    list-style: none;
    display: flex;
    gap: 30px;
    padding: 0;
    margin: 0 auto;
    font-family: Georgia, 'Times New Roman', Times, serif;
  }
  .navbar ul li {
    display: inline;
    position: relative;
  
  }
  .navbar ul li a {
    color: rgb(82, 82, 82);
    text-decoration: none;
    padding: 8px 12px;
    transition: 0.3s;
    border-color: rgb(136, 205, 230);
  }
  .navbar ul li a:hover {
    background-color: #f0eded;
    border-radius: 5px;
    border-color: rgb(86, 185, 227);
    
    
  }
  
  /* Dropdown submenu para RATGEBER, PRAXIS y KONTAKT */
  .navbar ul li.dropdown .dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #faf9f9;
    min-width: 220px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    z-index: 10;
  }
  .navbar ul li.dropdown:hover .dropdown-content {
    display: block;
  }
  .navbar ul li.dropdown .dropdown-content li {
    padding: 8px 12px;
  }
  .navbar ul li.dropdown .dropdown-content li a {
    color: rgb(82, 82, 82);
    text-decoration: none;
    display: block;
  }
  .navbar ul li.dropdown .dropdown-content li a:hover {
    background-color: #f0eded;
  }
  .navbar ul li a.active {
    background-color: #e0e0e0;
    border-radius: 5px;
    font-weight: bold;
    color: #000;
  }

  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #0066cc;
    padding: 10px;
    border-radius: 5px;
    z-index: 1000;
   
  }
  
  .dropdown:hover .dropdown-content {
    display: block;
  }
  
  .dropdown-content li a {
    display: block;
    color: white;
    padding: 5px 10px;
  }

/* =============================== */
/* BODY */
/* =============================== */
  
  .main-content{
    padding-left: 100px;
  }
  h1,
  h2,
  h3 {
    color: #004080;
    margin-top: 30px;
    margin-bottom: 10px;
  }
  
  p,
  li {
    margin-bottom: 10px;
    font-size: 16px;
  }
  
  ul {
    padding-left: 20px;
    margin-bottom: 20px;
  }
  
  a {
    color: #0066cc;
  }
  
  a:hover {
    text-decoration: underline;
  }
  
  /* TITULO SECCION DATENSCHUTZ */
  .titulo {
    font-size: 28px;
    text-align: center;
    margin-top: 40px;
  }

  .section1,
  .section2{
    padding-left: 100px;

  }


/* =============================== */
/* Footer */
/* =============================== */
  .footer {
    background: #e1dfdf;
    font-weight: bold;
    width: 100%;
    margin-top: 10px;
    color: rgb(16, 16, 16);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px;
    font-family: 'Times New Roman', Times, serif;
    z-index: 2;
  }
  .footer .info-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    font-size: 20px;
  }
  .footer .info-box img {
    width: 50px;
    height: 50px;
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  .footer .info-box img:hover {
    transform: scale(1.1);
  }
  .footer-link {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
  }
  .footer-link:hover {
    color: inherit;
    text-decoration: none;
  }
  
  /* =============================== */
  /* Footer Bottom */
  /* =============================== */
  .footer-bottom {
    background: linear-gradient(90deg, #eff1f3, #dfe8f0, #f3f5f7);
    width: 100%;
    padding: 10px 0;
    text-align: center;
    font-weight: bold;
    font-family: 'Times New Roman', Times, serif;
    font-size: 16px;
    color: #333;
    z-index: 2;
  }