:root {
    --color-bg: #edf3ff;
    --color-surface: rgba(255, 255, 255, 0.72);
    --color-surface-strong: rgba(255, 255, 255, 0.9);
    --color-text: #173b7a;
    --color-text-soft: #4f6692;
    --color-border: rgba(111, 145, 204, 0.18);
    --color-primary: #74d7c7;
    --color-primary-hover: #64cab9;
    --color-white: #ffffff;
    --color-sub-text: #45618b;
    --color-border-line: #45618b41;

    --shadow-soft: 0 20px 50px rgba(47, 82, 145, 0.10);

    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --radius-ext: 4px;

    --container-max: 1900px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--color-text);
    background: linear-gradient(180deg, #dfe9fb 0%, #edf3ff 100%);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
}

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

h2 {
    margin: 0;
    font-weight: 600;
}

p,
h1,
h3,
h4,
h5,
h6 {
    margin: 0;
}

.footer {
  position: relative;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 20px 60px rgba(30, 60, 120, 0.08);
  overflow: hidden;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px 70px 25px;
  gap: 40px;
  z-index: 2;
  position: relative;
}

.footer-brand .logo {
  font-size: 20px;
  font-weight: 700;
  color: #1f3b64;
  margin-bottom: 6px;
}

.footer-brand p {
  color: #6b7c93;
  font-size: 14px;
}

.footer-features {
  display: flex;
  gap: 40px;
}

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

.feature .icon {
  font-size: 22px;
}

.feature strong {
  display: block;
  font-size: 14px;
  color: #1f3b64;
}

.feature p {
  font-size: 13px;
  color: #6b7c93;
  margin: 2px 0 0;
}

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-legal a,
.footer-cookie-settings {
  text-decoration: none;
  color: #1f3b64;
  font-size: 14px;
  transition: 0.2s;
}

.footer-cookie-settings {
  border: none;
  background: transparent;
  padding: 0;
  font-family: inherit;
  line-height: inherit;
  cursor: pointer;
  text-align: left;
}

.footer-legal a:hover,
.footer-cookie-settings:hover {
  color: #2f6bff;
}

.footer-bottom {
  text-align: center;
  padding: 40px 70px 0px;
  font-size: 13px;
  color: #8fa2c1;
  position: relative;
  z-index: 2;
}

.footer-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 140px;
  z-index: 1;
}

.wave-1 {
  fill: #eef0ff;
}

.wave-2 {
  fill: #f5f9ff;
  opacity: 0.9;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px;
}

.logo span {
  font-weight: 600;
  color: #1f3b64;
}

.logo_sub {
    font-size: 16px !important;
    margin-top: 10px;
}

.icon-footer {
    font-size: 30px;
}

/* ================= MOBILE ANSICHT FOOT ================= */

@media (max-width: 700px) {

    .footer {
        border-radius: 0px;
        padding-bottom: 26px;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 44px 24px 20px;
        gap: 28px;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-brand .logo {
        margin: 0 0 10px;
        justify-content: center;
    }

    .footer-brand .logo img {
        height: 48px;
    }

    .logo_sub {
        max-width: 220px;
        line-height: 1.5;
    }

    .footer-features {
        width: 100%;
        flex-direction: column;
        gap: 18px;
        align-items: stretch;
    }

    .feature {
        justify-content: flex-start;
        text-align: left;
        padding: 16px 18px;
        border-radius: 16px;
        background: rgba(237, 243, 255, 0.75);
    }

    .icon-footer {
        width: 42px;
        min-width: 42px;
        height: 42px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(116, 215, 199, 0.22);
        font-size: 22px;
    }

    .footer-legal {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 14px;
    }

    .footer-bottom {
        padding: 24px 24px 0;
        max-width: 260px;
        margin: 0 auto;
        line-height: 1.5;
    }

    .footer-wave {
        height: 95px;
    }
}