/* WissensWelt Kiel TECH-FUTURISTIC CSS – style.css */
/* === 1. CSS RESET / NORMALIZE === */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { line-height: 1.15; scroll-behavior: smooth; }
body { line-height: 1.6; background: #101823; min-height: 100vh; }
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
ol, ul { list-style: none; }
blockquote, q { quotes: none; }
blockquote:before, blockquote:after,
q:before, q:after { content: ''; content: none; }
table { border-collapse: collapse; border-spacing: 0; }
img, svg { max-width: 100%; display: block; }
input, button, textarea, select { font: inherit; }

/* === 2. BRAND VARIABLES === */
:root {
  --color-primary: #123967;
  --color-secondary: #ffffff;
  --color-accent: #54B6B2;
  --color-dark: #101823;
  --color-bg-light: #182741;
  --color-bg-section: #142036;
  --color-footer: #122132;
  --color-footer-light: #243759;
  --color-shadow: rgba(84, 182, 178, 0.20);
  --color-border: #2D476B;
  --font-display: 'Montserrat', 'Arial Rounded MT', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

/* === 3. TYPOGRAPHY === */
body {
  font-family: var(--font-body);
  color: var(--color-secondary);
  font-size: 16px;
  background: linear-gradient(135deg, #1a273c 0%, #16203a 100%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  letter-spacing: 0.01em;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 16px;
  line-height: 1.18;
}
h1 {
  font-size: 2.6rem;
  text-shadow: 0 4px 25px #54b6b294;
}
h2 { font-size: 2rem; }
h3 { font-size: 1.3rem; }
h4 { font-size: 1rem; }
p, li {
  font-size: 1rem;
  font-family: var(--font-body);
  color: var(--color-secondary);
}
a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.25s;
}
a:hover, a:focus {
  color: #85fbf9;
  text-decoration: underline;
}
strong { color: #fff; font-weight: 700; }
em { font-style: italic; }

/* === 4. GENERAL LAYOUT === */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-bg-section);
  border-radius: 20px;
  box-shadow: 0 6px 32px 0 var(--color-shadow);
  position: relative;
}

main > section {
  margin-bottom: 60px;
  padding: 40px 0 40px 0;
}

/* === 5. HEADER & NAVIGATION === */
header {
  background: var(--color-primary);
  box-shadow: 0 3px 32px 0 var(--color-shadow);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 80px;
}
.logo img {
  height: 52px;
  width: auto;
  filter: drop-shadow(0 1px 6px #54b6b288);
  transition: transform 0.2s;
}
.logo:hover img,
.logo:focus img {
  transform: scale(1.06) rotate(-2deg);
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  margin-left: 35px;
}
.main-nav a {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--color-secondary);
  padding: 6px 10px;
  border-radius: 5px;
  transition: color 0.2s, background 0.25s, box-shadow 0.3s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: var(--color-accent);
  color: var(--color-primary);
  box-shadow: 0 2px 14px #54b6b291;
  text-decoration: none;
}
.cta-btn, .footer-cta, .cta a, .cta-btn {
  background: linear-gradient(90deg, #54B6B2 40%, #33dcff 100%);
  color: var(--color-primary);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.12rem;
  padding: 12px 36px;
  border: none;
  border-radius: 100px;
  box-shadow: 0 5px 20px 0 #54b6b277;
  transition: background 0.2s, color 0.2s, box-shadow 0.25s, transform 0.12s;
  cursor: pointer;
  display: inline-block;
  margin-top: 10px;
  text-align: center;
  outline: none;
  letter-spacing: .04em;
}
.cta-btn:hover, .cta-btn:focus, .footer-cta:hover {
  background: #123967;
  color: #fff;
  box-shadow: 0 4px 24px 0 #54b6b2b7;
  transform: translateY(-2px) scale(1.04);
}

/* ----- Hamburger Mobile Menu Button ----- */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-accent);
  font-size: 2.6rem;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 1120;
  cursor: pointer;
  padding: 8px 14px;
  border-radius: 12px;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 2px 14px #54b6b266;
}
.mobile-menu-toggle:active {
  background: var(--color-accent);
  color: var(--color-primary);
}

/* ----- Mobile Menu Overlay ----- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(20, 32, 54, 0.97);
  z-index: 1200;
  transform: translateX(100vw);
  transition: transform 0.37s cubic-bezier(.73,.1,.22,.88);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 0 44px #54b6b292;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--color-accent);
  font-size: 2.6rem;
  margin: 20px 28px 0 auto;
  align-self: flex-end;
  cursor: pointer;
  padding: 6px 12px 0 0;
  transition: background 0.2s;
  border-radius: 8px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 50px 36px 0 36px;
  width: 100%;
  align-items: flex-start;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--color-accent);
  padding: 8px 0;
  border-bottom: 1px solid #2d476b55;
  transition: color 0.19s, background 0.19s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #fff;
  background: #2D476B22;
  border-radius: 5px;
  text-decoration: none;
}
.mobile-menu.open { overflow-y: auto; }

/* Hide main-nav and show burger on mobile */
@media (max-width: 900px) {
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .cta-btn {
    padding: 12px 24px;
    font-size: 1rem;
  }
}

/* === 6. HERO SECTION === */
.hero {
  background: linear-gradient(120deg, #123967 0%, #54B6B2 100%);
  background-blend-mode: multiply;
  border-radius: 0 0 36px 36px;
  box-shadow: 0 7px 38px 0 #54b6b22d;
  margin-bottom: 60px;
  position: relative;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 38px;
  padding-bottom: 38px;
}
.hero h1, .hero p {
  color: #fff;
}
.hero h1 {
  margin-bottom: 14px;
  font-size: 2.6rem;
  text-shadow: 0 4px 24px #54b6b294;
}
.hero p {
  font-size: 1.15rem;
  margin-bottom: 22px;
  color: #e6ffff;
}
@media (max-width: 768px) {
  .hero {
    border-radius: 0 0 18px 18px;
    padding: 0;
  }
  .hero .container {
    padding-top: 18px;
    padding-bottom: 18px;
  }
  .hero h1 {
    font-size: 2rem;
  }
}

/* === 7. FLEX UTILITIES & MANDATORY PATTERNS === */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-bg-light);
  border-radius: 18px;
  box-shadow: 0 6px 22px var(--color-shadow);
  min-width: 260px;
  flex: 1 1 300px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px 26px;
  transition: box-shadow 0.2s, transform 0.19s;
}
.card:hover {
  box-shadow: 0 12px 32px #54b6b277;
  transform: translateY(-5px) scale(1.02);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 24px #12396733;
  color: #123967;
  flex: 1 1 320px;
  margin-bottom: 22px;
}
.testimonial-card p {
  color: #123967;
  font-size: 1.1rem;
  margin-bottom: 0;
}
.testimonial-card span {
  font-size: 0.98rem;
  color: #54B6B2;
  margin-left: 8px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--color-bg-light);
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 5px 18px #54b6b244;
  min-width: 220px;
  flex: 1 1 280px;
  margin: 6px 0 20px 0;
  transition: box-shadow 0.18s;
}
.feature-item:hover {
  box-shadow: 0 6px 22px #33dcffa1;
}
.feature-item img {
  height: 38px; width: 38px;
  filter: drop-shadow(0 0 3px #54b6b2bb);
}

/* Index: .feature-grid alignment */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 24px;
  margin: 18px 0;
  justify-content: space-between;
}
@media (max-width: 900px) {
  .feature-grid {
    flex-direction: column;
    gap: 18px 0;
  }
}

/* === 8. TABLES, LISTS, & MISC === */
table {
  width: 100%;
  background: #142036;
  color: #fff;
  border-radius: 15px;
  overflow: hidden;
  margin: 16px 0 30px 0;
}
table th,
table td {
  padding: 18px 20px;
  border-bottom: 1px solid #233d5b;
  font-size: 1rem;
  text-align: left;
}
table th {
  background: #123967;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
}
table tr:last-child td {
  border-bottom: none;
}

ul {
  margin: 0 0 18px 0;
  padding: 0 0 0 20px;
}
ul li {
  margin-bottom: 10px;
  position: relative;
  color: #e6e6e6;
  line-height: 1.65;
}
ul li strong { color: #fff; }
ul li:before {
  content: "";
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  margin-right: 10px;
  box-shadow: 0 0 6px #54b6b244;
}

@media (max-width: 768px) { /* responsive ul gap */
  ul { padding-left: 12px; }
}

/* === 9. CARD & GRID VARIANTS === */
.team-grid,
.values-grid,
.facts-grid,
.event-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 18px 0;
  justify-content: flex-start;
}
.team-grid > div, .values-grid > div, .facts-grid > div, .event-list > div {
  flex: 1 1 260px;
  background: var(--color-bg-light);
  border-radius: 16px;
  box-shadow: 0 5px 14px #2d476b50;
  padding: 24px 18px;
  min-width: 200px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s;
  display: flex;
  flex-direction: column;
}
.values-grid img {
  height: 34px; width: 34px; margin-bottom: 9px; }
.values-grid h3 { margin-bottom: 7px; color: #54B6B2; font-size: 1.15rem; }

@media (max-width: 950px) {
  .team-grid, .values-grid, .facts-grid, .event-list {
    flex-direction: column;
    gap: 14px;
  }
}

/* === 10. CTAs & BUTTONS === */
.cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  margin-top: 32px;
}
.cta a.cta-btn {
  margin: 0;
}
.footer-cta, .cta-btn {
  margin-top: 15px;
}
.footer-cta {
  background: linear-gradient(90deg, #54B6B2 40%, #33dcff 100%);
  color: var(--color-primary);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 11px 32px;
  border: none;
  border-radius: 100px;
  margin: 20px 0 10px 0;
  box-shadow: 0 4px 12px 0 #54b6b277;
  transition: background 0.2s, color 0.2s, box-shadow 0.25s, transform 0.13s;
  cursor: pointer;
  display: inline-block;
  outline: none;
  letter-spacing: .03em;
}
.footer-cta:hover, .footer-cta:focus {
  background: #123967;
  color: #fff;
  box-shadow: 0 6px 22px #54b6b2b7;
  transform: translateY(-2px) scale(1.04);
}
button, .cta-btn, .footer-cta {
  box-shadow: 0 3px 11px 0 #54b6b245;
  outline: none;
}
button:active {
  background: var(--color-accent) !important;
  color: var(--color-primary) !important;
}

/* === 11. FOOTER === */
footer {
  background: var(--color-footer);
  color: var(--color-secondary);
  padding: 42px 0 12px 0;
  margin-top: 64px;
  border-radius: 32px 32px 0 0;
  box-shadow: 0 -4px 18px #54b6b220;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-logo img {
  height: 48px;
  width: auto;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
  min-width: 160px;
}
.footer-links a {
  color: #54B6B2;
  font-family: var(--font-display);
  font-size: 1rem;
  transition: color 0.18s;
}
.footer-links a:hover { color: #fff; text-decoration: underline; }
.footer-contact-short {
  font-size: 0.98rem;
  color: #b2d2ef;
  margin-bottom: 18px;
}
.footer-contact-short img {
  height: 16px; width: 16px; vertical-align: middle; margin-right: 4px;
}
.footer-brand {
  color: #86e8e6;
  margin-bottom: 20px;
  font-size: 1rem;
}
.footer-social-icons {
  display: flex;
  gap: 14px;
  align-items: center;
}
.footer-social-icons img {
  width: 28px; height: 28px;
  filter: drop-shadow(0 0 5px #54b6b277);
  opacity: 0.9;
  transition: opacity 0.2s, filter 0.2s; 
  cursor: pointer;
}
.footer-social-icons img:hover {
  filter: drop-shadow(0 0 9px #54b6b2cc);
  opacity: 1;
}
@media (max-width: 1100px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .footer-brand { margin-bottom: 10px; }
  .footer-links { flex-direction: row; gap: 16px; }
}

/* === 12. POLICY & TEXT BLOCKS === */
.policy, .text-section, .location {
  background: var(--color-bg-section);
  border-radius: 18px;
  padding: 32px 20px;
  margin-bottom: 40px;
  box-shadow: 0 5px 30px #54b6b220;
}
.text-section a { color: #54B6B2; font-weight: 500; }
.text-section a:hover { color: #fff; }

/* === 13. SUCCESS / THANK YOU === */
.thank-you {
  text-align: center;
  background: var(--color-bg-section);
  border-radius: 26px;
  box-shadow: 0 6px 28px 0 #54b6b255;
  padding: 60px 20px;
}
.thank-you h1 { color: #fff; margin-bottom: 18px; }

/* === 14. RESPONSIVENESS === */
@media (max-width: 768px) {
  .container {
    padding: 0 9px;
  }
  main > section, .section {
    padding: 22px 0 22px 0;
    margin-bottom: 30px;
  }
  .footer-links { flex-direction: column; gap: 8px; }
  .card-container, .content-grid, .feature-grid, .facts-grid, .team-grid, .values-grid, .event-list {
    flex-direction: column !important;
    gap: 12px;
  }
  .policy, .location, .thank-you, .text-section {
    padding: 14px 7px;
    border-radius: 13px;
  }
  .card {
    padding: 18px 9px;
    border-radius: 13px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px;
    border-radius: 10px;
  }
  .feature-item {
    padding: 14px;
    border-radius: 8px;
  }
  .footer-social-icons img {
    width: 23px; height: 23px;
  }
}

/* === 15. FORM & INPUTS (newsletter) === */
input, textarea {
  padding: 12px 14px;
  border-radius: 8px;
  border: none;
  margin-bottom: 12px;
  background: #21334f;
  color: #fff;
  font-size: 1rem;
  box-shadow: 0 2px 8px #54b6b212;
}
input:focus, textarea:focus {
  outline: 2px solid #54B6B2;
  background: #243759;
}

/* === 16. COOKIE CONSENT BANNER === */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #142036ee;
  color: #fff;
  border-top: 2px solid #54B6B2;
  z-index: 2000;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  font-size: 1rem;
  padding: 20px 34px 22px 20px;
  box-shadow: 0 -3px 22px #54B6B277;
  animation: cookiebanner-fadein 0.5s;
}
@keyframes cookiebanner-fadein {
  from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); }
}
.cookie-consent-banner p {
  margin-right: 18px;
  flex: 2 1 320px;
}
.cookie-consent-banner .cookie-btn {
  background: linear-gradient(90deg, #54B6B2 42%, #33dcff 105%);
  color: var(--color-primary);
  border-radius: 100px;
  border: none;
  padding: 10px 23px;
  margin-left: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  min-width: 120px;
  cursor: pointer;
  box-shadow: 0 3px 13px #54b6b244;
  transition: background 0.2s, color 0.2s, box-shadow 0.21s, transform 0.12s;
}
.cookie-consent-banner .cookie-btn:hover { background: #123967; color: #fff; }

.cookie-consent-banner .cookie-settings-btn {
  background: transparent;
  border: 1.5px solid #54B6B2;
  color: #54B6B2;
  padding: 9px 21px;
}
.cookie-consent-banner .cookie-settings-btn:hover { background: #54B6B2; color: #123967; }

@media (max-width: 768px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    font-size: 0.98rem;
    padding: 18px 10px 18px 10px;
    gap: 13px;
  }
  .cookie-consent-banner p {
    margin-right: 0;
  }
}

/* === 17. COOKIE MODAL === */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(15, 24, 40, 0.94);
  z-index: 2100;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookiemodal-fadein 0.5s;
  pointer-events: all;
}
@keyframes cookiemodal-fadein {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal-content {
  background: #101823;
  box-shadow: 0 10px 36px #54b6b2aa;
  border-radius: 18px;
  padding: 38px 28px 34px 28px;
  max-width: 400px;
  width: 90vw;
  color: #fff;
  text-align: left;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 29px;
  font-family: var(--font-body);
  font-size: 1.09rem;
  animation: modal-slidein 0.46s cubic-bezier(.69,-0.12,.23,1.08);
}
@keyframes modal-slidein {
  from { transform: translateY(60px) scale(0.99); opacity: 0; } to { transform: none; opacity: 1; } 
}
.cookie-modal-content h3 {
  font-family: var(--font-display); color: #54B6B2;
  margin-bottom: 9px;
}
.cookie-modal-content .cookie-modal-close {
  position: absolute;
  top: 18px; right: 18px;
  font-size: 2rem;
  color: #54B6B2;
  background: none;
  border: none;
  cursor: pointer;
}
.cookie-modal-options {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.cookie-modal-category label {
  font-weight: 500;
  font-family: var(--font-display);
}
.cookie-modal-category .switch {
  position: relative; display: inline-block; width: 42px; height: 24px;
}
.cookie-modal-category .switch input {
  opacity: 0; width: 0; height: 0;
}
.cookie-modal-category .slider {
  position: absolute; cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #233d5b;
  border-radius: 24px;
  transition: .24s;
}
.cookie-modal-category .slider:before {
  position: absolute; content: "";
  left: 3.5px; top: 3.5px;
  width: 17px; height: 17px;
  border-radius: 50%;
  background: #54B6B2;
  transition: .24s;
}
.cookie-modal-category .switch input:checked + .slider {
  background: #54B6B2;
}
.cookie-modal-category .switch input:checked + .slider:before {
  background: #fff;
  transform: translateX(16px);
}
.cookie-modal-btns {
  display: flex;
  gap: 18px;
  margin-top: 28px;
  justify-content: flex-end;
}
.cookie-modal-btns .cookie-btn {
  padding: 11px 32px;
  font-size: 1rem;
}
/* ================ */

/* Hide when not active */
.cookie-modal, .cookie-consent-banner { display: none; }
.cookie-modal.active, .cookie-consent-banner.active { display: flex !important; }

/* === 18. ANIMATIONS & MICRO-INTERACTIONS === */
.card, .feature-item, .testimonial-card, .cta-btn, .footer-cta, .mobile-nav a, .main-nav a, .cookie-btn {
  transition-property: background, box-shadow, color, transform, opacity;
  transition-duration: 0.21s;
  will-change: transform;
}

/* Small hover effect */
.card:hover, .feature-item:hover, .testimonial-card:hover {
  box-shadow: 0 7px 32px #33dcff42, 0 2px 0px #54B6B295;
  z-index: 5;
}

/* === 19. CUSTOM SCROLLBAR === */
::-webkit-scrollbar {
  width: 13px;
  background: #142036;
}
::-webkit-scrollbar-thumb {
  background: #123967;
  border-radius: 9px;
  border: 2px solid #233d5b;
}
::-webkit-scrollbar-thumb:hover {
  background: #54B6B2;
}

/* === 20. DIALOGS/MODALS GENERIC RESETS === */
[role="dialog"] {
  outline: none;
}

/* === 21. ACCESSIBILITY/FOCUS === */
a:focus, button:focus, .cta-btn:focus, .footer-cta:focus {
  outline: 2px solid #33dcff;
  outline-offset: 1px;
}

/* === 22. MISC. FIXES === */
main {
  min-height: 70vh;
}
img[alt], svg[alt] {
  outline: none;
}
img { user-select: none; }

/* ================ */
/* End WissensWelt Kiel TECH FUTURISTIC Design */
