:root {
      --red: #A41F13;
      --bg-light: #F7F8FD;
      --neutral-light: #E0DBD8;
      --text-light: #0D1732;
      --accent-light: #0D1732;

      --bg-dark: #1E242B;
      --neutral-dark: #323741;
      --text-dark: #FFFFFF;
      --accent-dark: #0473FF;
    }


  * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body, html {
      font-family: 'Inter', sans-serif;
      height: 100%;
      background-color: var(--bg-light);
    }

    .dark .container {
      background-color: var(--bg-dark);
      color: var(--text-dark);
    }
    .dark .topcolorbar, .dark body , html.dark {
      background-color: var(--bg-dark);
    }
    .dark .topbar .logo {
      background-image: url('../pictures/logo_dark.png');
    }
    .dark .copyright {
      color: var(--text-dark);
    }
    .dark .footer a {
      color: var(--text-dark);
    }
    .dark .footer div a:hover {
      text-shadow: 1px 2px 10px rgba(255, 255, 255, 0.7);
    }
    .dark .center-section {
      background-color: var(--neutral-dark);
      box-shadow: 0px 10px 27px rgba(0, 0, 0, 0.35);
      border: 2px solid #3C424B;
      
    }
    .dark h1, .dark h2, .dark h3 { color:var(--text-dark); }
    p { margin-bottom:1rem; line-height:1.5; font-size:1.2rem; }
    a { color:var(--accent); text-decoration:none; }
    a:hover { text-decoration:underline; }
    h1, h2, h3 { font-family:'Sora',sans-serif; color:var(--accent-light); font-size:2.2rem; }
    ul { margin:0px 0px 16px 20px; line-height:1.5; font-size:1.2rem; }
    .page-title {font-size: 3.5rem;}
    .update-title-date {margin-bottom: 50px;}







    .container {
      min-height: 100%;
      width: 100%;
      min-height: 850px ;
      position: relative;
      background-color: var(--bg-light);
      overflow: hidden;
    }
    .topcolorbar {
      width: 100%;
      height: 12px;
      background-color:#0D1732;
      
    }
    .topbar{
      width: 100%;
      height: 100px;
      
      
    }
    .topbar .logo {
      background-image: url('../pictures/logo.png');
      background-size: cover;
    width: 100px;
    height: 100px;
      margin-top: 2.5rem;
      margin-left: 4rem;
      cursor: pointer;
    }
    .copyright {
      position: absolute;
      bottom: 1rem;
      right: 2rem;
      color: var(--text-light);
      font-size: 0.8rem;
    }
    

    .theme-switch-wrapper {
      position: absolute;
      top: 20px;
      right: 20px;
  }

  .theme-switch {
      position: relative;
      display: inline-block;
      width: 50px;
      height: 26px;
  }

  .theme-switch input {
      opacity: 0;
      width: 0;
      height: 0;
  }

  .slider {
      position: absolute;
      cursor: pointer;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: #ECEFF6;
      border: 1px solid #0D1732;
      transition: 0.4s;
      border-radius: 34px;
  }

  .slider:before {
      position: absolute;
      content: "";
      height: 18px;
      width: 18px;
      left: 4px;
      bottom: 3px;
      transition: 0.4s;
      border-radius: 50%;
      background-color: #0D1732;
  }
  input:checked + .slider {
      background-color: #CFCFCF;
  }

  input:checked + .slider:before {
      transform: translateX(24px);
      background-color: #1E242B;
  }
  .center-wrraper {
    width: 100%;
    
        
  }
  .center-section {
    padding: 65px 65px 65px 65px;
    border-radius: 40px;
    box-shadow: 0px 4px 27px rgba(0, 0, 0, 0.25);
    width: 80%;
    height: auto;
    background-color: white;
    margin: 0 auto;
    margin-bottom: 250px;
  }

  .footer {
      position: absolute;
      width: 100%;
      height: 60px;
      bottom: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 40px;
    }
    .footer div a {
      cursor: pointer;
      color: var(--text-light);
      text-decoration: none;
      user-select: none;
    }
    .footer div a:hover {
      text-shadow: 1px 2px 10px rgba(0, 0, 0, 0.4);
    }
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 600px;
  margin: 0 auto;
  background-color: #F7F8FD;
  color: #0D1732;
  border: 1px solid #E0DBD8;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  z-index: 9999;
}
.cookie-banner p {
  font-size: 0.95rem;
}
#cookie-banner {
  display: none;
}

.cookie-banner a {
  color: #0473FF;
  text-decoration: underline;
}

.cookie-button {
  background-color:#0D1732;
  color: white;
  border: none;
  padding: 0.5rem 1.2rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
}

.cookie-button:hover {
  background-color: #0059cc;
}

@media (max-width: 922px){
      .footer {
        bottom: 50px;
      }
    }
@media(max-width: 430px) {
  .footer {
  flex-direction: column;
  bottom: 130px;
  }
  .container {
    padding-bottom: 80px;
  }
}
    