body {
  margin: 0;
  background-color: #fff;
  font-family: 'Poppins', sans-serif;
}

@font-face {
  font-family: 'Poppins';
  src: url('fonts/Poppins-SemiBold.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}


    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background-color: #f0f0f0;
      padding: 12px 26px;
      border-radius: 999px;
      width: 90%;
      max-width: 900px;
      margin: 20px auto;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      position: sticky;
      top: 20px;
      z-index: 999;
    }

.nav:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.nav.scrolled {
  padding: 6px 18px;
  border-radius: 20px;
  backdrop-filter: blur(8px);
  background-color: rgba(240, 240, 240, 0.9);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nav.scrolled img {
  height: 30px;
}

.nav img {
  height: 40px;
  transition: transform 0.3s ease;
  display: block;
  transition: height 0.3s ease;
}

.nav-links {
  display: flex;
  gap: 8px;
}

.nav a {
  text-decoration: none;
  color: #333;
  font-size: 16px;
  font-weight: bold;
  padding: 6px 10px;
  transition: color 0.3s ease, font-size 0.3s ease;
}

.nav a:hover {
  font-size: 18px;
  color: #000;
}

.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  margin-left: auto;
}

.overlay-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  backdrop-filter: blur(12px);
  background: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.overlay-menu.active {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}

.overlay-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

.overlay-content a {
  color: white;
  font-size: 22px;
  font-weight: bold;
  text-decoration: none;
}

.closebutton {
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

.welcome {
  margin: 10px auto 20px auto;
  padding: 35px 25px;
  width: calc(100% - 80px);
  border-radius: 24px;
  color: #ddd;
  background: linear-gradient(to top left, #3a3a3a 10%, #0e0e0e 90%);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
  text-align: center;
  backdrop-filter: blur(6px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.welcome:hover {
  transform: scale(1.009);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
}

.welcome h1 {
  color: #fff;
  margin: 0 0 12px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

.welcome p {
  color: #fff;
  margin: 0 0 8px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

.linksimages {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin: 40px auto;
  max-width: 1000px;
}

.image {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 45%;
  transition: transform 0.3s ease;
}

.image:hover {
  transform: scale(1.016);
}

.image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 0px 0px rgba(0, 0, 0, 0.1);
}

.button {
  padding: 12px 50px;
  background-color: #333;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  transition: transform 0.3s ease;
}

.button:hover {
  transform: scale(1.03);
}

.footer {
  text-align: center;
  padding: 30px 16px;
  margin-top: 60px;
  font-size: 12px;
}

.footer-links {
  margin: 8px 0;
}

.footer-links a {
  color: #333;
  text-decoration: none;
  margin: 0 6px;
  font-weight: 500;
  transition: color 0.3s ease, font-size 0.3s ease;
}

.footer-links a:hover {
  font-size: 18px;
  color: #000;
}

.recommended, .clickona, .footer-note, p {
  text-align: center;
  margin: 8px auto;
  max-width: 100%;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: block;
  }
  .linksimages {
    flex-direction: column;
    align-items: center;
  }
  .image {
    width: 90%;
    max-width: 400px;
  }
  .button {
    width: 100%;
  }
}

.embed-container {
  display: flex;
  justify-content: center;
  margin: 40px auto;
  padding: 0 16px;
  flex-direction: column;
  width: 100%;
  max-width: 900px;
  margin: 40px auto;
  gap: 12px;
}

.embed-container iframe {
  width: 100%;
  max-width: 900px;
  height: 85vh;
  border: none;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.messageoftheweek {
  max-width: 900px;
  width: 90%;
  margin: 40px auto;
  padding: 20px;
  background-color: #f9f9f9;
  color: #222;
  text-align: left;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
  max-height: 80vh;
  line-height: 1.6;
  font-size: 16px;
}

.historylink {
  color: white;
  text-decoration: underline;
}

.historylink:hover {
  opacity: 0.9;
}

.privacypolicycatonchattext {
  max-width: 900px;
  width: 90%;
  margin: 40px auto;
  padding: 20px;
  background-color: #f9f9f9;
  color: #222;
  text-align: left;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
  max-height: 80vh;
  line-height: 1.6;
  font-size: 16px;
  transition: transform 0.3s ease;
}

.privacypolicycatonposttext {
  max-width: 900px;
  width: 90%;
  margin: 40px auto;
  padding: 20px;
  background-color: #f9f9f9;
  color: #222;
  text-align: left;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
  max-height: 80vh;
  line-height: 1.6;
  font-size: 16px;
  transition: transform 0.3s ease;
}

.privacypolicybirunitext {
  max-width: 900px;
  width: 90%;
  margin: 40px auto;
  padding: 20px;
  background-color: #f9f9f9;
  color: #222;
  text-align: left;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
  max-height: 80vh;
  line-height: 1.6;
  font-size: 16px;
  transition: transform 0.3s ease;
}

.privacypolicycatonchattext:hover {
  transform: scale(1.03);
}

.privacypolicycatonposttext:hover {
  transform: scale(1.03);
}

.privacypolicybirunitext:hover {
  transform: scale(1.03);
}

.logoandtext {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-text {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  transition: font-size 0.3s ease;
}

#cookie-consent-banner {
  display: none;
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  padding: 20px;
  background-color: rgba(34, 34, 34, 0.8);
  color: #fff;
  font-family: sans-serif;
  z-index: 1000;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  font-size: 14px;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  max-width: 90%;
  width: 700px;
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-banner-text p {
  font-family: 'Poppins';
  margin: 0 0 10px 0;
}

.cookie-banner-text a {
  font-family: 'Poppins';
  color: #ffffff;
  text-decoration: underline;
}

.cookie-banner-buttons {
  display: flex;
  gap: 15px;
  flex-shrink: 0;
}

.cookie-banner-buttons button {
  font-family: 'Poppins';
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
}

#cookie-accept-btn {
  background-color: #808080;
  color: white;
}

#cookie-reject-btn {
  background-color: #808080;
  color: white;
}

#cookie-consent-banner.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.privacypolicycatonchattext a {
  color: black;
}

.tos-link {
  color: black;
  text-decoration: underline;
  font-weight: 500;
  font-size: 1rem;
}

.pdf-iframe {
  width: 100%;
  height: 600px;
  border: none;
}

.deletion-form-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background-color: #fff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.deletion-form {
  width: 100%;
  max-width: 400px;
  padding: 30px;
  background-color: #fefefe;
  border-radius: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.deletion-form-input {
  width: 100%;
  padding: 15px 20px;
  margin: 12px 0;
  border: 2px solid #ddd;
  border-radius: 999px;
  font-size: 16px;
  transition: border-color 0.3s ease;
  max-width: 300px;
  font-family: 'Poppins';
}

.deletion-form-input:focus {
  border-color: #4a90e2;
  outline: none;
}

.deletion-form-button {
  background-color: #000000;
  color: white;
  border: none;
  padding: 14px 30px;
  font-size: 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.3s ease;
  margin-top: 10px;
  font-family: 'Poppins';
}

.deletion-form-button:hover {
  transform: scale(1.07);
}

.deletion-form-message {
  font-size: 18px;
  color: #000000;
  margin-top: 20px;
}

/* .announcement-banner {
/*  width: 100%;
/*  position: fixed;
/*  top: 0;
/*  left: 0;
/*  z-index: 1000;
/*  background-color: rgba(255, 255, 255, 0.6);
/*  backdrop-filter: blur(10px);
/*  -webkit-backdrop-filter: blur(10px);
/*  color: #000;
/* text-align: center;
/*  padding: 15px 20px;
/*  font-weight: bold;
/*  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
/*  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  } */

/* .announcement-banner a { */
 /* color: #000; */
/* text-decoration: underline; */
/*}*/

/* .page-container { */
/*  padding-top: 0; */
/* } */
