body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f5f7fa;
  margin: 0;
  padding: 0;
  color: #222222;
}

.cookies-eu-banner {
  background: #444;
  color: #fff;
  padding: 6px;
  font-size: 13px;
  text-align: center;
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 10;
  transition: opacity 0.3s ease-in-out;
}

.cookies-eu-banner .cookie-checkbox {
  display: none;
}

.cookies-eu-banner .accept-btn {
  display: inline-block;
  background: #222;
  color: #fff;
  border: 1px solid #000;
  cursor: pointer;
  padding: 4px 7px;
  margin: 2px 0;
  font-size: 13px;
  font-weight: 700;
  transition: background 0.07s, color 0.07s, border-color 0.07s;
}

.cookies-eu-banner .accept-btn:hover {
  background: #fff;
  color: #222;
}

.cookie-checkbox:checked+.cookies-content {
  display: none;
}

/* Main header styling */
.sleek-header {
  background: linear-gradient(135deg, #1e2a47, #3f5efb);
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;

  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  position: relative;
}

/* Logo styling */
.logo-container .site-logo {
  font-size: 2.5em;
  font-weight: 700;
  text-decoration: none;
  color: #ffffff;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.logo-container .site-logo:hover {
  color: #f1c40f;
}

/* Tagline styling */
.tagline .tagline-text {
  font-size: 1.2em;
  font-style: italic;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
}

/* Call-to-action button */
.cta-container .cta-link {
  background-color: #f39c12;
  color: #ffffff;
  padding: 12px 25px;
  font-size: 1.1em;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-container .cta-link:hover {
  background-color: #e67e22;
  transform: scale(1.1);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .sleek-header {
    flex-direction: column;
    text-align: center;
  }

  .logo-container .site-logo {
    font-size: 2em;
    margin-bottom: 10px;
  }

  .tagline .tagline-text {
    font-size: 1.1em;
    margin-bottom: 15px;
  }

  .cta-container .cta-link {
    font-size: 1.2em;
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  .sleek-header {
    padding: 15px;
  }

  .logo-container .site-logo {
    font-size: 1.8em;
  }

  .tagline .tagline-text {
    font-size: 1em;
  }

  .cta-container .cta-link {
    font-size: 1em;
    padding: 8px 18px;
  }
}

.wrapper {
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  justify-content: center;
  padding: 30px;
}

.container {
  background: #ffffff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  min-width: 320px;
  transition: all 0.3s ease-in-out;
}

.container:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

h1,
h2,
h3,
h4 {
  text-align: center;
  color: #ff5722;
  font-size: 30px;
  margin-bottom: 25px;
}

h5 {
  font-size: 22px;
  line-height: 1.7;
  color: #555;
  text-align: center;
}

.highlight {
  font-weight: bold;
  color: #ff4081;
  font-size: 22px;
  text-align: center;
  margin: 25px 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 25px;
  justify-items: center;
}

.grid a {
  text-decoration: none;
  background-color: #00bcd4;
  color: white;
  padding: 18px;
  border-radius: 8px;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  display: block;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.grid a:hover {
  background-color: #ff4081;
  transform: scale(1.05);
}

.btn {
  display: block;

  background-color: #9b6af1;
  color: white;
  padding: 22px;
  font-size: 22px;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  margin-top: 35px;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #ff5722;
}

.btn:active {
  background-color: #d32f2f;
}

button {
  background-color: #673ab7;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 50px;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 25px;
  width: 100%;
}

button:hover {
  background-color: #ff5722;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.text-section {
  margin-top: 35px;
  padding: 25px;
  background-color: #e1f5fe;
  border-radius: 12px;
  border: 1px solid #b2ebf2;
}

@media (max-width: 1024px) {
  .wrapper {
    flex-direction: column;
    align-items: center;
  }

  .container {
    width: 90%;
  }
}

@media (max-width: 768px) {
  .grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }

  .btn {
    font-size: 20px;
    padding: 20px;
  }

  button {
    font-size: 20px;
    padding: 14px 22px;
  }
}

@media (max-width: 480px) {
  .container {
    width: 100%;
    padding: 20px;
  }

  .grid {
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  }

  .btn,
  button {
    font-size: 18px;
    padding: 14px;
  }
}

ul,
ol {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}


.legal-footer {
  background-color: #f9f9fb;
  color: #333;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  padding: 40px 20px 20px;
  text-align: center;
}

.footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section {
  flex: 1 1 300px;
}

.footer-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
}

.footer-section h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.footer-section p,
.footer-section li {
  font-size: 14px;
  line-height: 1.6;
}

.contact-block ul {
  list-style: none;
  padding: 0;
  margin-bottom: 10px;
}

.contact-block a {
  color: #333;
  text-decoration: none;
}

.policy-links {
  display: flex;
  flex-direction: column;
}

.policy-links a {
  margin-top: 4px;
  font-size: 14px;
  color: #0073e6;
  text-decoration: underline;
}

.footer-disclaimer {
  background-color: #e6e6e6;
  padding: 15px 20px;
  margin-top: 30px;
  font-size: 13px;
  line-height: 1.5;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 12px;
  color: #666;
}

@media (max-width: 768px) {
  .footer-wrapper {
    flex-direction: column;
    gap: 20px;
  }

  .footer-section {
    flex: 1 1 100%;
  }

  .footer-title {
    font-size: 20px;
  }

  .footer-section h3 {
    font-size: 16px;
  }
}