/* =========================================================
   Contact page isolated styles
   Prefix: ctc-
   Safe to use together with global style.css
========================================================= */

body {
    overflow-x: hidden;
}

.ctc-main {
    width: 100%;
    overflow-x: hidden;
    background: #f6f8fb;
}

.ctc-page {
    width: 100%;
    max-width: 100%;
    padding: 88px 0;
    background:
        radial-gradient(circle at 12% 8%, rgba(37, 99, 235, 0.1), transparent 34%),
        radial-gradient(circle at 88% 80%, rgba(249, 115, 22, 0.08), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f6f8fb 100%);
    color: #111827;
    font-family: Inter, "Segoe UI", Arial, sans-serif;
}

.ctc-page *,
.ctc-page *::before,
.ctc-page *::after {
    box-sizing: border-box;
}

.ctc-container {
    width: min(1160px, calc(100% - 32px));
    max-width: 1160px;
    margin: 0 auto;
}

.ctc-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 48px;
    align-items: start;
    width: 100%;
    min-width: 0;
}

.ctc-content,
.ctc-form-card {
    min-width: 0;
    max-width: 100%;
}

.ctc-label {
    margin: 0 0 14px;
    color: #2563eb;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.ctc-title {
    margin: 0;
    max-width: 760px;
    color: #071426;
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1.05;
    font-weight: 950;
    letter-spacing: -0.055em;
    overflow-wrap: anywhere;
    word-break: normal;
    hyphens: auto;
}

.ctc-lead {
    max-width: 680px;
    margin: 24px 0 0;
    color: #4b5563;
    font-size: 17px;
    line-height: 1.75;
    overflow-wrap: break-word;
}

.ctc-info-grid {
    display: grid;
    gap: 16px;
    margin-top: 34px;
    width: 100%;
}

.ctc-info-card {
    width: 100%;
    min-width: 0;
    padding: 22px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 14px 34px rgba(7, 20, 38, 0.07);
}

.ctc-info-card__icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    margin-bottom: 16px;
    border-radius: 14px;
    background: #eef4ff;
    color: #2563eb;
    font-size: 20px;
    font-weight: 900;
}

.ctc-info-card h2 {
    margin: 0;
    color: #071426;
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.ctc-info-card p {
    margin: 10px 0 0;
    color: #667085;
    font-size: 15px;
    line-height: 1.65;
}

/* Form card */

.ctc-form-card {
    width: 100%;
    padding: 32px;
    border-radius: 32px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 24px 70px rgba(7, 20, 38, 0.12);
}

.ctc-form-card h2 {
    margin: 0;
    color: #071426;
    font-size: 32px;
    line-height: 1.1;
    letter-spacing: -0.045em;
}

.ctc-form-card>p {
    margin: 12px 0 24px;
    color: #667085;
    font-size: 15px;
    line-height: 1.65;
}

.ctc-form {
    display: grid;
    gap: 16px;
    width: 100%;
}

.ctc-form__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 14px;
    width: 100%;
    min-width: 0;
}

.ctc-form__field {
    display: grid;
    gap: 7px;
    min-width: 0;
}

.ctc-form__field--full {
    grid-column: 1 / -1;
}

.ctc-form__field label {
    color: #071426;
    font-size: 13px;
    font-weight: 850;
}

.ctc-form__field input,
.ctc-form__field select,
.ctc-form__field textarea {
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: 50px;
    padding: 0 15px;
    border: 1px solid #d1d5db;
    border-radius: 14px;
    background: #ffffff;
    color: #111827;
    outline: none;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ctc-form__field textarea {
    min-height: 140px;
    padding-top: 13px;
    resize: vertical;
}

.ctc-form__field input:focus,
.ctc-form__field select:focus,
.ctc-form__field textarea:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.11);
}

.ctc-form__checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #667085;
    font-size: 12px;
    line-height: 1.55;
}

.ctc-form__checkbox input {
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
    margin-top: 3px;
}

.ctc-form__checkbox span {
    min-width: 0;
    overflow-wrap: break-word;
}

.ctc-form__checkbox a {
    color: #2563eb;
    font-weight: 800;
    text-decoration: underline;
}

.ctc-form__error {
    padding: 12px 14px;
    border-radius: 14px;
    background: #fff1f2;
    color: #be123c;
    border: 1px solid #fecdd3;
    font-size: 13px;
    line-height: 1.5;
    font-weight: 700;
}

.ctc-form__button {
    min-height: 54px;
    width: fit-content;
    max-width: 100%;
    border: 0;
    border-radius: 999px;
    background: #2563eb;
    color: #ffffff;
    cursor: pointer;
    padding: 0 24px;
    font-size: 15px;
    font-weight: 900;
    box-shadow: 0 14px 30px rgba(37, 99, 235, 0.26);
    transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.ctc-form__button:hover {
    transform: translateY(-1px);
    background: #1d4ed8;
    box-shadow: 0 18px 38px rgba(37, 99, 235, 0.32);
}

.ctc-form__button:disabled {
    opacity: 0.72;
    cursor: wait;
}

/* Modal styles for existing contact.js */

.contact-modal-open {
    overflow: hidden;
}

.contact-modal {
    position: fixed;
    inset: 0;
    z-index: 4000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(7, 20, 38, 0.74);
    backdrop-filter: blur(8px);
}

.contact-modal.is-visible {
    display: flex;
}

.contact-modal__box {
    width: min(470px, 100%);
    padding: 32px;
    border-radius: 30px;
    background: #ffffff;
    text-align: center;
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
}

.contact-modal__loader {
    width: 58px;
    height: 58px;
    margin: 0 auto 18px;
    border-radius: 50%;
    border: 5px solid #dbeafe;
    border-top-color: #2563eb;
    animation: ctcContactSpin 1s linear infinite;
}

.contact-modal__icon {
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: #dcfce7;
    color: #15803d;
    font-size: 30px;
    font-weight: 950;
}

.contact-modal__icon[hidden],
.contact-modal__loader[hidden],
.contact-modal__close[hidden] {
    display: none;
}

.contact-modal h2 {
    margin: 0;
    color: #071426;
    font-size: 26px;
    line-height: 1.15;
    letter-spacing: -0.04em;
}

.contact-modal p {
    margin: 12px 0 0;
    color: #667085;
    font-size: 15px;
    line-height: 1.65;
}

.contact-modal__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    margin: 24px auto 0;
    padding: 0 22px;
    border: 0;
    border-radius: 999px;
    background: #2563eb;
    color: #ffffff;
    cursor: pointer;
    font-weight: 900;
}

.contact-modal__close:hover {
    background: #1d4ed8;
}

@keyframes ctcContactSpin {
    to {
        transform: rotate(360deg);
    }
}

/* Tablet */

@media (max-width: 980px) {
    .ctc-page {
        padding: 72px 0;
    }

    .ctc-layout {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .ctc-form-card {
        max-width: 760px;
    }
}

/* Mobile */

@media (max-width: 640px) {
    .ctc-container {
        width: min(100% - 24px, 1160px);
    }

    .ctc-page {
        padding: 48px 0;
    }

    .ctc-title {
        font-size: 33px;
        line-height: 1.08;
        letter-spacing: -0.04em;
    }

    .ctc-lead {
        font-size: 16px;
    }

    .ctc-form-card {
        padding: 20px;
        border-radius: 24px;
    }

    .ctc-form-card h2 {
        font-size: 28px;
    }

    .ctc-form__grid {
        grid-template-columns: 1fr;
    }

    .ctc-form__field--full {
        grid-column: auto;
    }

    .ctc-form__button {
        width: 100%;
    }

    .contact-modal__box {
        padding: 26px 20px;
        border-radius: 24px;
    }
}

@media (max-width: 420px) {
    .ctc-container {
        width: min(100% - 20px, 1160px);
    }

    .ctc-title {
        font-size: 30px;
    }

    .ctc-form-card {
        padding: 18px;
    }
}

/* =========================================================
   Cookie page simple styles
   Prefix: cki-
========================================================= */

.cki-main {
    width: 100%;
    overflow-x: hidden;
    background: #ffffff;
}

.cki-page {
    width: 100%;
    padding: 72px 0 88px;
    background:
        radial-gradient(circle at 12% 8%, rgba(37, 99, 235, 0.06), transparent 32%),
        linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
    color: #111827;
    font-family: Inter, "Segoe UI", Arial, sans-serif;
}

.cki-page *,
.cki-page *::before,
.cki-page *::after {
    box-sizing: border-box;
}

.cki-container {
    width: min(920px, calc(100% - 32px));
    margin: 0 auto;
}

.cki-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 34px;
    color: #667085;
    font-size: 13px;
    line-height: 1.4;
}

.cki-breadcrumbs a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 700;
}

.cki-breadcrumbs a:hover {
    text-decoration: underline;
}

.cki-header {
    max-width: 820px;
    margin-bottom: 42px;
}

.cki-label {
    margin: 0 0 14px;
    color: #2563eb;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.cki-header h1 {
    margin: 0;
    color: #071426;
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.02;
    font-weight: 950;
    letter-spacing: -0.06em;
}

.cki-header p {
    max-width: 780px;
    margin: 22px 0 0;
    color: #4b5563;
    font-size: 18px;
    line-height: 1.75;
}

.cki-header .cki-updated {
    margin-top: 16px;
    color: #667085;
    font-size: 14px;
    line-height: 1.5;
}

.cki-content {
    max-width: 820px;
}

.cki-content section {
    margin-top: 34px;
}

.cki-content section:first-child {
    margin-top: 0;
}

.cki-content h2 {
    margin: 0 0 12px;
    color: #071426;
    font-size: 24px;
    line-height: 1.25;
    font-weight: 900;
    letter-spacing: -0.035em;
}

.cki-content p {
    margin: 0;
    color: #344054;
    font-size: 16px;
    line-height: 1.8;
}

.cki-content p+p {
    margin-top: 14px;
}

.cki-content a {
    color: #2563eb;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cki-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 22px;
    margin-top: 44px;
    padding-top: 24px;
}

.cki-links a {
    color: #2563eb;
    font-size: 15px;
    font-weight: 850;
    text-decoration: none;
}

.cki-links a:hover {
    text-decoration: underline;
}

@media (max-width: 640px) {
    .cki-page {
        padding: 52px 0 68px;
    }

    .cki-container {
        width: min(100% - 24px, 920px);
    }

    .cki-header {
        margin-bottom: 34px;
    }

    .cki-header h1 {
        font-size: 38px;
        line-height: 1.06;
        letter-spacing: -0.045em;
    }

    .cki-header p {
        font-size: 16px;
        line-height: 1.7;
    }

    .cki-content section {
        margin-top: 30px;
    }

    .cki-content h2 {
        font-size: 21px;
    }

    .cki-content p {
        font-size: 15px;
        line-height: 1.75;
    }

    .cki-links {
        display: grid;
        gap: 12px;
    }
}

/* ========================================================= Datenschutz page simple styles Prefix: dps- ========================================================= */
.dps-main {
    width: 100%;
    overflow-x: hidden;
    background: #ffffff;
}

.dps-page {
    width: 100%;
    padding: 72px 0 88px;
    background: radial-gradient(circle at 12% 8%, rgba(37, 99, 235, 0.06), transparent 32%), linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
    color: #111827;
    font-family: Inter, "Segoe UI", Arial, sans-serif;
}

.dps-page *,
.dps-page *::before,
.dps-page *::after {
    box-sizing: border-box;
}

.dps-container {
    width: min(920px, calc(100% - 32px));
    margin: 0 auto;
}

.dps-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 34px;
    color: #667085;
    font-size: 13px;
    line-height: 1.4;
}

.dps-breadcrumbs a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 700;
}

.dps-breadcrumbs a:hover {
    text-decoration: underline;
}

.dps-header {
    max-width: 820px;
    margin-bottom: 42px;
}

.dps-label {
    margin: 0 0 14px;
    color: #2563eb;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.dps-header h1 {
    margin: 0;
    color: #071426;
    font-size: clamp(38px, 5vw, 64px);
    line-height: 1.02;
    font-weight: 950;
    letter-spacing: -0.06em;
}

.dps-header p {
    max-width: 780px;
    margin: 22px 0 0;
    color: #4b5563;
    font-size: 18px;
    line-height: 1.75;
}

.dps-header .dps-updated {
    margin-top: 16px;
    color: #667085;
    font-size: 14px;
    line-height: 1.5;
}

.dps-content {
    max-width: 820px;
}

.dps-content section {
    margin-top: 34px;
}

.dps-content section:first-child {
    margin-top: 0;
}

.dps-content h2 {
    margin: 0 0 12px;
    color: #071426;
    font-size: 24px;
    line-height: 1.25;
    font-weight: 900;
    letter-spacing: -0.035em;
}

.dps-content p {
    margin: 0;
    color: #344054;
    font-size: 16px;
    line-height: 1.8;
}

.dps-content p+p {
    margin-top: 14px;
}

.dps-content ul {
    margin: 14px 0 0;
    padding-left: 22px;
    color: #344054;
    font-size: 16px;
    line-height: 1.8;
}

.dps-content li+li {
    margin-top: 4px;
}

.dps-content a {
    color: #2563eb;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
    overflow-wrap: anywhere;
}

.dps-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 22px;
    margin-top: 44px;
    padding-top: 24px;
}

.dps-links a {
    color: #2563eb;
    font-size: 15px;
    font-weight: 850;
    text-decoration: none;
}

.dps-links a:hover {
    text-decoration: underline;
}

@media (max-width: 640px) {
    .dps-page {
        padding: 52px 0 68px;
    }

    .dps-container {
        width: min(100% - 24px, 920px);
    }

    .dps-header {
        margin-bottom: 34px;
    }

    .dps-header h1 {
        font-size: 38px;
        line-height: 1.06;
        letter-spacing: -0.045em;
    }

    .dps-header p {
        font-size: 16px;
        line-height: 1.7;
    }

    .dps-content section {
        margin-top: 30px;
    }

    .dps-content h2 {
        font-size: 21px;
    }

    .dps-content p,
    .dps-content ul {
        font-size: 15px;
        line-height: 1.75;
    }

    .dps-links {
        display: grid;
        gap: 12px;
    }
}

/* =========================================================
   Risk disclaimer page simple styles
   Prefix: rsk-
========================================================= */

.rsk-main {
  width: 100%;
  overflow-x: hidden;
  background: #ffffff;
}

.rsk-page {
  width: 100%;
  padding: 72px 0 88px;
  background:
    radial-gradient(circle at 12% 8%, rgba(37, 99, 235, 0.06), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
  color: #111827;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}

.rsk-page *,
.rsk-page *::before,
.rsk-page *::after {
  box-sizing: border-box;
}

.rsk-container {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
}

.rsk-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 34px;
  color: #667085;
  font-size: 13px;
  line-height: 1.4;
}

.rsk-breadcrumbs a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 700;
}

.rsk-breadcrumbs a:hover {
  text-decoration: underline;
}

.rsk-header {
  max-width: 820px;
  margin-bottom: 42px;
}

.rsk-label {
  margin: 0 0 14px;
  color: #2563eb;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.rsk-header h1 {
  margin: 0;
  color: #071426;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.02;
  font-weight: 950;
  letter-spacing: -0.06em;
}

.rsk-header p {
  max-width: 780px;
  margin: 22px 0 0;
  color: #4b5563;
  font-size: 18px;
  line-height: 1.75;
}

.rsk-header .rsk-updated {
  margin-top: 16px;
  color: #667085;
  font-size: 14px;
  line-height: 1.5;
}

.rsk-content {
  max-width: 820px;
}

.rsk-content section {
  margin-top: 34px;
}

.rsk-content section:first-child {
  margin-top: 0;
}

.rsk-content h2 {
  margin: 0 0 12px;
  color: #071426;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.rsk-content p {
  margin: 0;
  color: #344054;
  font-size: 16px;
  line-height: 1.8;
}

.rsk-content p + p {
  margin-top: 14px;
}

.rsk-content a {
  color: #2563eb;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
  overflow-wrap: anywhere;
}

.rsk-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin-top: 44px;
  padding-top: 24px;
}

.rsk-links a {
  color: #2563eb;
  font-size: 15px;
  font-weight: 850;
  text-decoration: none;
}

.rsk-links a:hover {
  text-decoration: underline;
}

@media (max-width: 640px) {
  .rsk-page {
    padding: 52px 0 68px;
  }

  .rsk-container {
    width: min(100% - 24px, 920px);
  }

  .rsk-header {
    margin-bottom: 34px;
  }

  .rsk-header h1 {
    font-size: 36px;
    line-height: 1.06;
    letter-spacing: -0.045em;
  }

  .rsk-header p {
    font-size: 16px;
    line-height: 1.7;
  }

  .rsk-content section {
    margin-top: 30px;
  }

  .rsk-content h2 {
    font-size: 21px;
  }

  .rsk-content p {
    font-size: 15px;
    line-height: 1.75;
  }

  .rsk-links {
    display: grid;
    gap: 12px;
  }
}
/* =========================================================
   Impressum page simple styles
   Prefix: imp-
========================================================= */

.imp-main {
  width: 100%;
  overflow-x: hidden;
  background: #ffffff;
}

.imp-page {
  width: 100%;
  padding: 72px 0 88px;
  background:
    radial-gradient(circle at 12% 8%, rgba(37, 99, 235, 0.06), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
  color: #111827;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}

.imp-page *,
.imp-page *::before,
.imp-page *::after {
  box-sizing: border-box;
}

.imp-container {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
}

.imp-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 34px;
  color: #667085;
  font-size: 13px;
  line-height: 1.4;
}

.imp-breadcrumbs a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 700;
}

.imp-breadcrumbs a:hover {
  text-decoration: underline;
}

.imp-header {
  max-width: 820px;
  margin-bottom: 42px;
}

.imp-label {
  margin: 0 0 14px;
  color: #2563eb;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.imp-header h1 {
  margin: 0;
  color: #071426;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.02;
  font-weight: 950;
  letter-spacing: -0.06em;
}

.imp-header p {
  max-width: 780px;
  margin: 22px 0 0;
  color: #4b5563;
  font-size: 18px;
  line-height: 1.75;
}

.imp-header .imp-updated {
  margin-top: 16px;
  color: #667085;
  font-size: 14px;
  line-height: 1.5;
}

.imp-content {
  max-width: 820px;
}

.imp-content section {
  margin-top: 34px;
}

.imp-content section:first-child {
  margin-top: 0;
}

.imp-content h2 {
  margin: 0 0 12px;
  color: #071426;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.imp-content p {
  margin: 0;
  color: #344054;
  font-size: 16px;
  line-height: 1.8;
}

.imp-content p + p {
  margin-top: 14px;
}

.imp-content strong {
  color: #071426;
  font-weight: 900;
}

.imp-content a {
  color: #2563eb;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
  overflow-wrap: anywhere;
}

.imp-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin-top: 44px;
  padding-top: 24px;
}

.imp-links a {
  color: #2563eb;
  font-size: 15px;
  font-weight: 850;
  text-decoration: none;
}

.imp-links a:hover {
  text-decoration: underline;
}

@media (max-width: 640px) {
  .imp-page {
    padding: 52px 0 68px;
  }

  .imp-container {
    width: min(100% - 24px, 920px);
  }

  .imp-header {
    margin-bottom: 34px;
  }

  .imp-header h1 {
    font-size: 38px;
    line-height: 1.06;
    letter-spacing: -0.045em;
  }

  .imp-header p {
    font-size: 16px;
    line-height: 1.7;
  }

  .imp-content section {
    margin-top: 30px;
  }

  .imp-content h2 {
    font-size: 21px;
  }

  .imp-content p {
    font-size: 15px;
    line-height: 1.75;
  }

  .imp-links {
    display: grid;
    gap: 12px;
  }
}
/* =========================================================
   AGB / Nutzungsbedingungen page simple styles
   Prefix: agb-
========================================================= */

.agb-main {
  width: 100%;
  overflow-x: hidden;
  background: #ffffff;
}

.agb-page {
  width: 100%;
  padding: 72px 0 88px;
  background:
    radial-gradient(circle at 12% 8%, rgba(37, 99, 235, 0.06), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
  color: #111827;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}

.agb-page *,
.agb-page *::before,
.agb-page *::after {
  box-sizing: border-box;
}

.agb-container {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
}

.agb-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 34px;
  color: #667085;
  font-size: 13px;
  line-height: 1.4;
}

.agb-breadcrumbs a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 700;
}

.agb-breadcrumbs a:hover {
  text-decoration: underline;
}

.agb-header {
  max-width: 820px;
  margin-bottom: 42px;
}

.agb-label {
  margin: 0 0 14px;
  color: #2563eb;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.agb-header h1 {
  margin: 0;
  color: #071426;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.02;
  font-weight: 950;
  letter-spacing: -0.06em;
}

.agb-header p {
  max-width: 780px;
  margin: 22px 0 0;
  color: #4b5563;
  font-size: 18px;
  line-height: 1.75;
}

.agb-header .agb-updated {
  margin-top: 16px;
  color: #667085;
  font-size: 14px;
  line-height: 1.5;
}

.agb-content {
  max-width: 820px;
}

.agb-content section {
  margin-top: 34px;
}

.agb-content section:first-child {
  margin-top: 0;
}

.agb-content h2 {
  margin: 0 0 12px;
  color: #071426;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.agb-content p {
  margin: 0;
  color: #344054;
  font-size: 16px;
  line-height: 1.8;
}

.agb-content p + p {
  margin-top: 14px;
}

.agb-content a {
  color: #2563eb;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
  overflow-wrap: anywhere;
}

.agb-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin-top: 44px;
  padding-top: 24px;
}

.agb-links a {
  color: #2563eb;
  font-size: 15px;
  font-weight: 850;
  text-decoration: none;
}

.agb-links a:hover {
  text-decoration: underline;
}

@media (max-width: 640px) {
  .agb-page {
    padding: 52px 0 68px;
  }

  .agb-container {
    width: min(100% - 24px, 920px);
  }

  .agb-header {
    margin-bottom: 34px;
  }

  .agb-header h1 {
    font-size: 38px;
    line-height: 1.06;
    letter-spacing: -0.045em;
  }

  .agb-header p {
    font-size: 16px;
    line-height: 1.7;
  }

  .agb-content section {
    margin-top: 30px;
  }

  .agb-content h2 {
    font-size: 21px;
  }

  .agb-content p {
    font-size: 15px;
    line-height: 1.75;
  }

  .agb-links {
    display: grid;
    gap: 12px;
  }
}
/* =========================================================
   Risikohinweis page simple styles
   Prefix: rsk-
========================================================= */

.rsk-main {
  width: 100%;
  overflow-x: hidden;
  background: #ffffff;
}

.rsk-page {
  width: 100%;
  padding: 72px 0 88px;
  background:
    radial-gradient(circle at 12% 8%, rgba(37, 99, 235, 0.06), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
  color: #111827;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}

.rsk-page *,
.rsk-page *::before,
.rsk-page *::after {
  box-sizing: border-box;
}

.rsk-container {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
}

.rsk-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 34px;
  color: #667085;
  font-size: 13px;
  line-height: 1.4;
}

.rsk-breadcrumbs a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 700;
}

.rsk-breadcrumbs a:hover {
  text-decoration: underline;
}

.rsk-header {
  max-width: 820px;
  margin-bottom: 42px;
}

.rsk-label {
  margin: 0 0 14px;
  color: #2563eb;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.rsk-header h1 {
  margin: 0;
  color: #071426;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.02;
  font-weight: 950;
  letter-spacing: -0.06em;
}

.rsk-header p {
  max-width: 780px;
  margin: 22px 0 0;
  color: #4b5563;
  font-size: 18px;
  line-height: 1.75;
}

.rsk-header .rsk-updated {
  margin-top: 16px;
  color: #667085;
  font-size: 14px;
  line-height: 1.5;
}

.rsk-content {
  max-width: 820px;
}

.rsk-content section {
  margin-top: 34px;
}

.rsk-content section:first-child {
  margin-top: 0;
}

.rsk-content h2 {
  margin: 0 0 12px;
  color: #071426;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.rsk-content p {
  margin: 0;
  color: #344054;
  font-size: 16px;
  line-height: 1.8;
}

.rsk-content p + p {
  margin-top: 14px;
}

.rsk-content a {
  color: #2563eb;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
  overflow-wrap: anywhere;
}

.rsk-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin-top: 44px;
  padding-top: 24px;
}

.rsk-links a {
  color: #2563eb;
  font-size: 15px;
  font-weight: 850;
  text-decoration: none;
}

.rsk-links a:hover {
  text-decoration: underline;
}

@media (max-width: 640px) {
  .rsk-page {
    padding: 52px 0 68px;
  }

  .rsk-container {
    width: min(100% - 24px, 920px);
  }

  .rsk-header {
    margin-bottom: 34px;
  }

  .rsk-header h1 {
    font-size: 36px;
    line-height: 1.06;
    letter-spacing: -0.045em;
  }

  .rsk-header p {
    font-size: 16px;
    line-height: 1.7;
  }

  .rsk-content section {
    margin-top: 30px;
  }

  .rsk-content h2 {
    font-size: 21px;
  }

  .rsk-content p {
    font-size: 15px;
    line-height: 1.75;
  }

  .rsk-links {
    display: grid;
    gap: 12px;
  }
}
/* =========================================================
   Werbehinweis page simple styles
   Prefix: wrb-
========================================================= */

.wrb-main {
  width: 100%;
  overflow-x: hidden;
  background: #ffffff;
}

.wrb-page {
  width: 100%;
  padding: 72px 0 88px;
  background:
    radial-gradient(circle at 12% 8%, rgba(37, 99, 235, 0.06), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
  color: #111827;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
}

.wrb-page *,
.wrb-page *::before,
.wrb-page *::after {
  box-sizing: border-box;
}

.wrb-container {
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
}

.wrb-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 34px;
  color: #667085;
  font-size: 13px;
  line-height: 1.4;
}

.wrb-breadcrumbs a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 700;
}

.wrb-breadcrumbs a:hover {
  text-decoration: underline;
}

.wrb-header {
  max-width: 820px;
  margin-bottom: 42px;
}

.wrb-label {
  margin: 0 0 14px;
  color: #2563eb;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.wrb-header h1 {
  margin: 0;
  color: #071426;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.02;
  font-weight: 950;
  letter-spacing: -0.06em;
}

.wrb-header p {
  max-width: 780px;
  margin: 22px 0 0;
  color: #4b5563;
  font-size: 18px;
  line-height: 1.75;
}

.wrb-header .wrb-updated {
  margin-top: 16px;
  color: #667085;
  font-size: 14px;
  line-height: 1.5;
}

.wrb-content {
  max-width: 820px;
}

.wrb-content section {
  margin-top: 34px;
}

.wrb-content section:first-child {
  margin-top: 0;
}

.wrb-content h2 {
  margin: 0 0 12px;
  color: #071426;
  font-size: 24px;
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.wrb-content p {
  margin: 0;
  color: #344054;
  font-size: 16px;
  line-height: 1.8;
}

.wrb-content p + p {
  margin-top: 14px;
}

.wrb-content a {
  color: #2563eb;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
  overflow-wrap: anywhere;
}

.wrb-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin-top: 44px;
  padding-top: 24px;
}

.wrb-links a {
  color: #2563eb;
  font-size: 15px;
  font-weight: 850;
  text-decoration: none;
}

.wrb-links a:hover {
  text-decoration: underline;
}

@media (max-width: 640px) {
  .wrb-page {
    padding: 52px 0 68px;
  }

  .wrb-container {
    width: min(100% - 24px, 920px);
  }

  .wrb-header {
    margin-bottom: 34px;
  }

  .wrb-header h1 {
    font-size: 38px;
    line-height: 1.06;
    letter-spacing: -0.045em;
  }

  .wrb-header p {
    font-size: 16px;
    line-height: 1.7;
  }

  .wrb-content section {
    margin-top: 30px;
  }

  .wrb-content h2 {
    font-size: 21px;
  }

  .wrb-content p {
    font-size: 15px;
    line-height: 1.75;
  }

  .wrb-links {
    display: grid;
    gap: 12px;
  }
}