:root {
      --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;
      
    }


    .container {
      display: block;
      flex-direction: row;
      min-height: 100vh;
      width: 100%;
      position: relative;
      background-color: var(--bg-light);
      padding-bottom: 150px;
    }
    .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-section {
  position: relative;
  width: 1000px;
  padding: 60px 100px 100px 100px;
  border-radius: 99px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 3%;
  background-color: white;
  box-shadow: 0px 4px 27px rgba(0, 0, 0, 0.25);

}
.title {
  width: 100%;
  font-size: 3.4rem;
  font-family: "Sora", sans-serif;
  text-align: center;
  font-weight: bold;
  margin-bottom: 50px;
}

.plan-cards {
  display: flex;
  justify-content: space-around;
  width: 100%;
  margin-bottom: 15px;
}

.plan-card {
  position: relative;
  background-color: white;
  border: 1px solid #CFCFCF;
  border-radius: 32px;
  width: 200px;
  height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.dark .plan-card {
  background-color: var(--neutral-dark);
  border-color: #CFCFCF;
  color: var(--text-dark);
  box-shadow: 0 4px 10px rgba(4,115,255,0.1);
}

.plan-card h2 {
  font-family: "Sora" , sans-serif;
  font-size: 1.5rem;
  color: var(--text-light);
  margin-top: 30px;
}

.dark .plan-card h2 {
  color: var(--text-dark);
}

.plan-card .price {
  font-size: 2rem;
  color: #666;
  margin: 10px 0;
}

.dark .plan-card .price {
  color: #BBB;
}

.plan-card .get-started {
  background-color: #0D1732;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  width: 137px;
  margin-top: 15px;
}

.dark .plan-card .get-started {
  background-color: var(--accent-dark);
}

.plan-card .get-started:hover {
  background-color: var(--accent-dark);
}

.dark .plan-card .get-started:hover {
    box-shadow: 0 4px 10px rgba(0,0,0,0.7);
}

.popular-tag {
  background-color: #0D1732;
  color: white;
  padding: 2px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  position: absolute;
  top: 10px;
  right: 10px;
}

.dark .popular-tag {
  background-color: var(--accent-dark);
}

.popular {
  border: 2px solid #0D1732;
}

.dark .popular {
  border-color: var(--accent-dark);
}

.payment-info {
  margin-top: 5px;
  font-size: 0.9rem;
  color: #666;
}

.dark .payment-info {
  color: #BBB;
}

.main-alert {
  display: none;
  padding: 20px;
  min-height: 60px;
  background-color: rgba(220, 38, 38, 0.8); /* Red | #16A34A - success*/
  color: white;
  margin-bottom: 15px;
  border-radius: 15px;
  position: absolute;
  z-index: 1;
  width: 100%;
  top: -98px;
  left: 50%;
  text-align: center;
  transform: translateX(-50%);
}
/* The close button */
.closebtn {
  margin-left: 15px;
  color: white;
  font-weight: bold;
  float: right;
  font-size: 22px;
  line-height: 20px;
  cursor: pointer;
  transition: 0.3s;
}
/* When moving the mouse over the close button */
.closebtn:hover {
  color: black;
}




.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 a {
  color: #0473FF;
  text-decoration: underline;
}
#cookie-banner {
  display: none;
}

.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;
}



.overlay-shield button {
  margin-top: 1rem;
  padding: 0.6rem 1.2rem;
  background-color: #0473FF;
  border: none;
  color: white;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
}

@media (max-width: 922px){
      .footer {
        bottom: 50px;
      }
    }
@media (max-width: 580px){
      .center-section {
        padding: 125px 20px 125px 20px;
      }
    }
@media (max-width: 922px) {
  .plan-cards {
    flex-direction: column;
    align-items: center;
  }

  .plan-card {
    width: 80%;
    margin: 10px 0;
  }
} 

@media (max-width:1000px){
    .center-section {
      width: 96%;
    }
    

}

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



