@layer pages {
  .gw-page-header {
    padding-block: var(--gw-space-2xl);
    background: linear-gradient(135deg, var(--gw-color-surface) 0%, white 100%);
    text-align: center;
  }

  .gw-page-header__title {
    font-size: var(--gw-font-size-2xl);
    font-weight: 700;
    margin-block-end: var(--gw-space-md);
  }

  .gw-page-header__description {
    font-size: var(--gw-font-size-lg);
    color: var(--gw-color-text-muted);
    max-inline-size: 800px;
    margin-inline: auto;
  }

  .gw-content {
    padding-block: var(--gw-space-xl);
  }

  .gw-content h2 {
    font-size: var(--gw-font-size-xl);
    font-weight: 700;
    margin-block-end: var(--gw-space-md);
  }

  .gw-content h3 {
    font-size: var(--gw-font-size-lg);
    font-weight: 700;
    margin-block-end: var(--gw-space-sm);
  }

  .gw-content p {
    margin-block-end: var(--gw-space-md);
    line-height: 1.8;
  }

  .gw-content ul,
  .gw-content ol {
    margin-block-end: var(--gw-space-md);
    padding-inline-start: var(--gw-space-lg);
  }

  .gw-content li {
    margin-block-end: var(--gw-space-sm);
    list-style: disc;
  }

  .gw-success-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-block-size: 60vh;
    text-align: center;
    padding: var(--gw-space-2xl);
  }

  .gw-success-page__icon {
    inline-size: 5rem;
    block-size: 5rem;
    background-color: var(--gw-color-success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-block-end: var(--gw-space-lg);
    color: white;
    font-size: 2.5rem;
  }

  .gw-success-page__message {
    font-size: var(--gw-font-size-xl);
    color: var(--gw-color-text);
  }

  /* Wer wir sind section */
  .gw-wer-wir-sind {
    padding-block: var(--gw-space-2xl);
    overflow: hidden;
    background-image: url('../../img/bcg.png');
    background-size: cover;
    background-position: center;
  }

  .gw-wer-wir-sind__grid {
    display: grid;
    gap: var(--gw-space-xl);
    align-items: center;
  }

  @media (min-width: 900px) {
    .gw-wer-wir-sind__grid {
      grid-template-columns: 1fr 1fr;
    }
  }

  .gw-wer-wir-sind__image {
    width: 100%;
    height: auto;
    object-fit: contain;
  }
  
  .gw-wer-wir-sind__content {
    text-align: left;
  }

  .gw-wer-wir-sind__title {
    display: flex;
    align-items: center;
    gap: var(--gw-space-sm);
    font-size: var(--gw-font-size-2xl);
    font-weight: 700;
    color: var(--gw-color-primary);
    margin-block-end: var(--gw-space-md);
    line-height: 1.2;
  }

  .gw-wer-wir-sind__icon {
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 0.4em solid transparent;
    border-bottom: 0.4em solid transparent;
    border-left: 0.7em solid var(--gw-color-primary);
  }

  .gw-wer-wir-sind__text p {
    color: var(--gw-color-primary);
    font-size: var(--gw-font-size-base);
    line-height: 1.6;
    margin-bottom: var(--gw-space-sm);
  }

 /* Top Platforms Section */
  .gw-top-platforms {
    padding-block: var(--gw-space-2xl);
    background-image: url('../../img/bcg.png');
    background-size: 350px;
    background-repeat: no-repeat;
    background-position: center;
  }
  /* Top Platforms Card Design */
  .gw-top-card {
    border: 1px solid var(--gw-color-primary);
    background-color: white;
    margin-bottom: var(--gw-space-2xl);
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
  }

  @media (min-width: 900px) {
    .gw-top-card {
      grid-template-columns: 350px 1fr;
    }
  }

  .gw-top-card__badge {
    position: absolute;
    top: -15px;
    left: 0;
    background-color: var(--gw-color-primary);
    color: white;
    padding: 0.25rem 1rem;
    font-weight: 700;
    font-size: var(--gw-font-size-base);
    z-index: 1;
  }

  .gw-top-card__left {
    padding: var(--gw-space-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-bottom: 1px solid var(--gw-color-border);
  }

  .gw-top-card__left a {
    display: block;
    text-decoration: none;
    cursor: pointer;
  }

  @media (min-width: 900px) {
    .gw-top-card__left {
      border-bottom: none;
      border-right: 1px solid var(--gw-color-border);
    }
  }

  .gw-top-card__image {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin-bottom: var(--gw-space-md);
  }

  .gw-top-card__title {
    font-size: var(--gw-font-size-lg);
    font-weight: 700;
    color: var(--gw-color-primary);
  }

  .gw-top-card__right {
    display: flex;
    flex-direction: column;
  }

  .gw-top-card__info {
    padding: var(--gw-space-lg);
    display: grid;
    gap: var(--gw-space-lg);
    flex-grow: 1;
  }

  @media (min-width: 600px) {
    .gw-top-card__info {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  .gw-top-card__info-title {
    font-weight: 700;
    color: var(--gw-color-primary);
    margin-bottom: var(--gw-space-xs);
    font-size: var(--gw-font-size-sm);
  }

  .gw-top-card__info-text {
    font-size: var(--gw-font-size-sm);
    color: var(--gw-color-text-muted);
    line-height: 1.4;
  }

  .gw-top-card__button {
    background-color: var(--gw-color-primary);
    color: white;
    text-align: center;
    padding: var(--gw-space-md);
    font-weight: 700;
    text-decoration: none;
    transition: background-color var(--gw-transition-fast);
    display: block;
    width: 100%;
  }

  .gw-top-card__button:hover {
    background-color: var(--gw-color-primary-dark);
    color: white;
  }

  /* Spielkategorien Section */
  .gw-categories {
    padding-block: var(--gw-space-2xl);
  }

  .gw-categories__title {
    display: flex;
    align-items: center;
    gap: var(--gw-space-sm);
    font-size: var(--gw-font-size-2xl);
    font-weight: 700;
    color: var(--gw-color-primary);
    margin-block-end: var(--gw-space-xl);
    line-height: 1.2;
  }

  .gw-categories__icon {
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 0.5em solid transparent;
    border-bottom: 0.5em solid transparent;
    border-left: 0.9em solid var(--gw-color-primary);
  }

  .gw-categories__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--gw-space-lg);
  }

  @media (min-width: 600px) {
    .gw-categories__grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (min-width: 900px) {
    .gw-categories__grid {
      grid-template-columns: repeat(4, 1fr);
    }
  }

  .gw-categories__card {
    border: 1px solid var(--gw-color-primary);
    background-color: white; /* Fallback */
    background-color: rgba(255, 255, 255, 0.9); /* Slightly transparent white for bg image visibility */
    padding: var(--gw-space-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
    height: 100%;
  }

  .gw-categories__card-icon {
    width: auto;
    height: 80px;
    object-fit: contain;
    margin-bottom: var(--gw-space-lg);
  }

  .gw-categories__card-title {
    font-size: var(--gw-font-size-lg);
    font-weight: 700;
    color: var(--gw-color-primary);
    margin-bottom: var(--gw-space-md);
    align-self: flex-start;
  }

  .gw-categories__card-text {
    font-size: var(--gw-font-size-sm);
    color: var(--gw-color-primary);
    line-height: 1.5;
    align-self: flex-start;
  }

  /* Warum Online-Games wählen Section */
  .gw-warum {
    padding-block: var(--gw-space-2xl);
    overflow: hidden;
  }

  .gw-warum__title {
    display: flex;
    align-items: center;
    gap: var(--gw-space-sm);
    font-size: var(--gw-font-size-2xl);
    font-weight: 700;
    color: var(--gw-color-primary);
    margin-block-end: var(--gw-space-xl);
    line-height: 1.2;
  }

  .gw-warum__icon {
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 0.5em solid transparent;
    border-bottom: 0.5em solid transparent;
    border-left: 0.9em solid var(--gw-color-primary);
  }

  .gw-warum__grid {
    display: grid;
    gap: var(--gw-space-xl);
  }

  @media (min-width: 900px) {
    .gw-warum__grid {
      grid-template-columns: 1fr 1fr;
      align-items: center;
    }
  }

  .gw-warum__left {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .gw-warum__image-main {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
  }

  .gw-warum__right {
    display: flex;
    flex-direction: column;
    gap: var(--gw-space-lg);
  }

  .gw-warum__image-top {
    display: flex;
    justify-content: flex-end;
  }

  .gw-warum__image-sub {
    width: auto;
    max-width: 300px;
    height: auto;
    object-fit: contain;
  }

  .gw-warum__text-content {
    display: flex;
    flex-direction: column;
    gap: var(--gw-space-md);
  }

  .gw-warum__text {
    font-size: var(--gw-font-size-base);
    color: var(--gw-color-primary);
    line-height: 1.6;
  }

  /* Vorteile Section */
  .gw-vorteile {
    padding-block: var(--gw-space-2xl);
  }

  .gw-vorteile__title {
    display: flex;
    align-items: center;
    gap: var(--gw-space-sm);
    font-size: var(--gw-font-size-2xl);
    font-weight: 700;
    color: var(--gw-color-primary);
    margin-block-end: var(--gw-space-xl);
    line-height: 1.2;
  }

  .gw-vorteile__icon {
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 0.5em solid transparent;
    border-bottom: 0.5em solid transparent;
    border-left: 0.9em solid var(--gw-color-primary);
  }

  .gw-vorteile__grid {
    display: grid;
    gap: var(--gw-space-lg);
  }

  .gw-vorteile__card {
    display: flex;
    border: 1px solid var(--gw-color-primary);
    background-color: #fff;
    align-items: stretch;
  }

  .gw-vorteile__image-box {
    flex: 0 0 40%;
    border-right: 1px solid var(--gw-color-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: var(--gw-space-md);
  }

  .gw-vorteile__image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }

  .gw-vorteile__content-box {
    padding: var(--gw-space-lg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: var(--gw-space-sm);
  }

  .gw-vorteile__card-title {
    font-size: var(--gw-font-size-lg);
    font-weight: 700;
    color: var(--gw-color-primary);
    line-height: 1.3;
  }

  .gw-vorteile__text {
    font-size: var(--gw-font-size-sm);
    color: var(--gw-color-primary);
    line-height: 1.5;
  }

  @media (min-width: 900px) {
    .gw-vorteile__grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .gw-vorteile__card--center {
      grid-column: 1 / -1;
      justify-self: center;
      width: calc((100% - var(--gw-space-lg)) / 2);
    }
  }

  /* FAQ Section */
  .gw-faq {
    padding-block: var(--gw-space-2xl);
    overflow: hidden;
    background-image: url('../../img/bcg.png');
    background-size: 350px;
    background-repeat: no-repeat;
    background-position: center;
  }

  .gw-faq__title {
    display: flex;
    align-items: center;
    gap: var(--gw-space-sm);
    font-size: var(--gw-font-size-2xl);
    font-weight: 700;
    color: var(--gw-color-primary);
    margin-block-end: var(--gw-space-xl);
    line-height: 1.2;
  }

  .gw-faq__icon {
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 0.5em solid transparent;
    border-bottom: 0.5em solid transparent;
    border-left: 0.9em solid var(--gw-color-primary);
  }

  .gw-faq__layout {
    display: flex;
    flex-direction: column;
    gap: var(--gw-space-xl);
    position: relative;
  }

  .gw-faq__row {
    display: flex;
    position: relative;
  }

  .gw-faq__row--1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--gw-space-lg);
  }

  @media (min-width: 900px) {
    .gw-faq__row--1 {
      grid-template-columns: 1fr 1fr;
      align-items: center;
    }
  }

  .gw-faq__row--right {
    justify-content: flex-end;
  }

  .gw-faq__card {
    border: 1px solid var(--gw-color-primary);
    background-color: #fff;
    padding: var(--gw-space-xl);
    position: relative;
    max-width: 600px;
    width: 100%;
  }

  .gw-faq__card-icon {
    position: absolute;
    top: var(--gw-space-md);
    right: var(--gw-space-md);
    color: var(--gw-color-primary);
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1;
  }

  .gw-faq__card-icon--bars {
    letter-spacing: -2px;
  }

  .gw-faq__card-icon--diamond {
    font-size: 2rem;
  }

  .gw-faq__card-title {
    font-size: var(--gw-font-size-lg);
    font-weight: 700;
    color: var(--gw-color-primary);
    margin-bottom: var(--gw-space-md);
    padding-right: var(--gw-space-xl);
  }

  .gw-faq__card-text {
    font-size: var(--gw-font-size-sm);
    color: var(--gw-color-primary);
    line-height: 1.5;
  }

  .gw-faq__image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .gw-faq__image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    transform: rotate(-10deg);
  }

  /* Support Section */
  .gw-support {
    padding-block: var(--gw-space-2xl);
    overflow: hidden;
  }

  .gw-support__grid {
    display: grid;
    gap: var(--gw-space-xl);
    align-items: center;
  }

  @media (min-width: 900px) {
    .gw-support__grid {
      grid-template-columns: 1fr 1fr;
    }
  }

  .gw-support__image-wrapper {
    display: flex;
    justify-content: center;
  }

  .gw-support__image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }

  .gw-support__content {
    display: flex;
    flex-direction: column;
    gap: var(--gw-space-md);
  }

  .gw-support__title {
    display: flex;
    align-items: center;
    gap: var(--gw-space-sm);
    font-size: var(--gw-font-size-2xl);
    font-weight: 700;
    color: var(--gw-color-primary);
    line-height: 1.2;
  }

  .gw-support__icon {
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 0.5em solid transparent;
    border-bottom: 0.5em solid transparent;
    border-left: 0.9em solid var(--gw-color-primary);
    flex-shrink: 0;
  }

  .gw-support__text {
    font-size: var(--gw-font-size-base);
    color: var(--gw-color-primary);
    line-height: 1.6;
  }

  /* Reliability Section */
  .gw-reliability {
    padding-block: var(--gw-space-2xl);
  }

  .gw-reliability__title {
    display: flex;
    align-items: center;
    gap: var(--gw-space-sm);
    font-size: var(--gw-font-size-2xl);
    font-weight: 700;
    color: var(--gw-color-primary);
    margin-block-end: var(--gw-space-2xl);
    line-height: 1.2;
  }

  .gw-reliability__icon {
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 0.6em solid transparent;
    border-bottom: 0.6em solid transparent;
    border-left: 1em solid var(--gw-color-primary);
  }

  .gw-reliability__grid {
    display: grid;
    gap: var(--gw-space-xl);
    margin-block-end: var(--gw-space-2xl);
  }

  @media (min-width: 900px) {
    .gw-reliability__grid {
      grid-template-columns: repeat(3, 1fr);
      gap: var(--gw-space-2xl);
    }
  }

  .gw-reliability__column {
    display: flex;
    flex-direction: column;
    gap: var(--gw-space-sm);
  }

  .gw-reliability__subtitle {
    font-size: var(--gw-font-size-lg);
    font-weight: 700;
    color: var(--gw-color-primary);
    margin-block-end: var(--gw-space-xs);
  }

  .gw-reliability__text {
    font-size: var(--gw-font-size-sm);
    color: var(--gw-color-primary);
    line-height: 1.5;
  }

  .gw-reliability__contact {
    margin-top: var(--gw-space-2xl);
  }

  .gw-reliability__contact-title {
    font-size: var(--gw-font-size-xl);
    font-weight: 700;
    color: var(--gw-color-primary);
    margin-block-end: var(--gw-space-lg);
  }

  .gw-reliability__contact-grid {
    display: grid;
    gap: var(--gw-space-lg);
  }

  @media (min-width: 600px) {
    .gw-reliability__contact-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  .gw-reliability__contact-item {
    display: flex;
    flex-direction: column;
    gap: var(--gw-space-xs);
  }

  .gw-reliability__contact-label {
    font-size: var(--gw-font-size-lg);
    font-weight: 700;
    color: var(--gw-color-primary);
  }

  .gw-reliability__contact-link,
  .gw-reliability__contact-text {
    font-size: var(--gw-font-size-base);
    color: var(--gw-color-primary);
    text-decoration: none;
  }

  .gw-reliability__contact-link:hover {
    text-decoration: underline;
  }

  /* Sicherheit Section */
  .gw-sicherheit {
    padding-block: var(--gw-space-2xl);
  }

  .gw-sicherheit__title {
    display: flex;
    align-items: center;
    gap: var(--gw-space-sm);
    font-size: var(--gw-font-size-2xl);
    font-weight: 700;
    color: var(--gw-color-primary);
    margin-block-end: var(--gw-space-xl);
    line-height: 1.2;
  }

  .gw-sicherheit__icon {
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 0.6em solid transparent;
    border-bottom: 0.6em solid transparent;
    border-left: 1em solid var(--gw-color-primary);
  }

  .gw-sicherheit__grid {
    display: flex;
    flex-direction: column;
    gap: var(--gw-space-lg);
  }

  .gw-sicherheit__card {
    border: 1px solid var(--gw-color-primary);
    background-color: white;
    padding: var(--gw-space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--gw-space-lg);
    align-items: center;
  }

  @media (min-width: 768px) {
    .gw-sicherheit__card {
      flex-direction: row;
      justify-content: space-between;
      text-align: left;
    }

    .gw-sicherheit__card--reverse {
      flex-direction: row-reverse;
    }
  }

  .gw-sicherheit__card-content {
    flex: 1;
  }

  .gw-sicherheit__card-title {
    font-size: var(--gw-font-size-lg);
    font-weight: 700;
    color: var(--gw-color-primary);
    margin-bottom: var(--gw-space-sm);
  }

  .gw-sicherheit__card-text {
    font-size: var(--gw-font-size-sm);
    color: var(--gw-color-primary);
    line-height: 1.5;
  }

  .gw-sicherheit__card-image-wrapper {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .gw-sicherheit__card-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  /* Contact Section */
  .gw-contact-section {
    padding-block: var(--gw-space-2xl);
    background-image: url('../../img/bcg.png');
    background-size: 350px;
    background-repeat: no-repeat;
    background-position: center;
  }

  .gw-contact-section__grid {
    display: grid;
    gap: var(--gw-space-xl);
  }

  @media (min-width: 900px) {
    .gw-contact-section__grid {
      grid-template-columns: 1.5fr 1fr;
      align-items: center;
    }
  }

  .gw-contact-section__title {
    display: flex;
    align-items: center;
    gap: var(--gw-space-sm);
    font-size: var(--gw-font-size-2xl);
    font-weight: 700;
    color: var(--gw-color-primary);
    margin-block-end: var(--gw-space-xl);
    line-height: 1.2;
  }

  .gw-contact-section__icon {
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 0.6em solid transparent;
    border-bottom: 0.6em solid transparent;
    border-left: 1em solid var(--gw-color-primary);
  }

  .gw-contact-section__form {
    display: flex;
    flex-direction: column;
    gap: var(--gw-space-lg);
  }

  .gw-contact-section__input {
    width: 100%;
    padding: var(--gw-space-md);
    border: 1px solid var(--gw-color-primary);
    border-radius: 0;
    font-size: var(--gw-font-size-base);
    color: var(--gw-color-text);
  }

  .gw-contact-section__input::placeholder {
    color: var(--gw-color-text-muted);
  }

  .gw-contact-section__checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: var(--gw-space-sm);
  }

  .gw-contact-section__checkbox {
    margin-top: 0.3em;
    width: 1.2em;
    height: 1.2em;
    border: 1px solid var(--gw-color-primary);
    border-radius: 0;
    appearance: none;
    cursor: pointer;
    position: relative;
  }

  .gw-contact-section__checkbox:checked {
    background-color: var(--gw-color-primary);
  }

  .gw-contact-section__checkbox:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 0.8em;
  }

  .gw-contact-section__checkbox-label {
    font-size: var(--gw-font-size-sm);
    color: var(--gw-color-primary);
    font-weight: 700;
  }

  .gw-contact-section__disclaimer {
    display: flex;
    gap: var(--gw-space-xs);
    font-size: var(--gw-font-size-xs);
    color: var(--gw-color-primary);
    margin-top: var(--gw-space-xs);
  }

  .gw-contact-section__disclaimer-icon {
    font-style: normal;
    font-weight: 700;
    border: 1px solid var(--gw-color-primary);
    border-radius: 50%;
    width: 1.2em;
    height: 1.2em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .gw-contact-section__button {
    background-color: var(--gw-color-primary);
    color: white;
    border: none;
    padding: var(--gw-space-md);
    font-weight: 700;
    font-size: var(--gw-font-size-base);
    cursor: pointer;
    text-align: center;
    width: 100%;
    transition: background-color var(--gw-transition-fast);
  }

  .gw-contact-section__button:hover {
    background-color: var(--gw-color-primary-dark);
  }

  .gw-contact-section__image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .gw-contact-section__image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }

  /* Nahtlos Section */
  .gw-nahtlos {
    padding-block: var(--gw-space-2xl);
    background-color: white;
    background-image: url('../../img/bcg.png');
    background-size: 350px;
    background-repeat: no-repeat;
    background-position: center;
  }

  .gw-nahtlos__content {
    display: flex;
    flex-direction: column;
    gap: var(--gw-space-xl);
    align-items: center;
  }

  @media (min-width: 900px) {
    .gw-nahtlos__content {
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      gap: var(--gw-space-2xl);
    }
  }

  .gw-nahtlos__text-wrapper {
    flex: 1;
  }

  .gw-nahtlos__title {
    display: flex;
    align-items: flex-start;
    gap: var(--gw-space-sm);
    font-size: var(--gw-font-size-2xl);
    font-weight: 700;
    color: var(--gw-color-primary);
    margin-block-end: var(--gw-space-lg);
    line-height: 1.2;
  }

  .gw-nahtlos__icon {
    display: inline-block;
    width: 0;
    height: 0;
    border-top: 0.6em solid transparent;
    border-bottom: 0.6em solid transparent;
    border-left: 1em solid var(--gw-color-primary);
    margin-top: 0.1em;
  }

  .gw-nahtlos__text {
    font-size: var(--gw-font-size-base);
    color: var(--gw-color-primary);
    line-height: 1.6;
  }

  .gw-nahtlos__image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
  }

  .gw-nahtlos__image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }
}
