:root {
  /* Brand Colors */
  --primary: #004899;
  --secondary: #eff3f7;
  --primary-text: #004899;
  --secondary-text: #1a1a1a;
  --grey-text: #666666;

  /* Neutral Colors */
  --dark: #1a1a1a;
  --grey: #666666;
  --white: #ffffff;
  --background: #eff3f7;
  --border: #bac5cd;
  --neutral-bg: #eff3f7;

  /* Accent Colors */
  --accent-base: #3ea37e;
  --accent-hover: #2f7c60;
  --disable: #e3e3e3;

  /* Semantic Colors */
  --warning: #c51931;
  --ok: #008264;
}

/* Regular Font */
@font-face {
  font-family: 'Cabin';
  src: url('../fonts/Cabin-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* Medium Font */
@font-face {
  font-family: 'Cabin';
  src: url('../fonts/Cabin-SemiBold.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

/* Bold Font */
@font-face {
  font-family: 'Cabin';
  src: url('../fonts/Cabin-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

body {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  font-family: 'Cabin', sans-serif;
  font-size: 16px;
}

.entry-content {
  margin-top: 78px;
}

ul {
  list-style-type: none;
  padding: 0;
}

a {
  text-decoration: none;
  color: #333333;
}

h1 {
  font-size: 12px;
}

h2 {
  font-size: 40px;
}

h3 {
  font-size: 32px;
}

.anchor {
  display: block;
  position: relative;
  top: -100px;
  visibility: hidden;
  height: 0;
  margin: 0;
}

.cookiefirst-cookie-declaration {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px 20px 60px 20px;
}

.cookiefirst-cookie-declaration h3,
.cookiefirst-cookie-declaration h2 {
  color: var(--primary-text);
  font-weight: 700;
  margin: 24px 0 24px 0;
}

.cookiefirst-cookie-declaration p {
  color: var(--secondary-text);
  font-size: 16px;
  line-height: 24px;
  margin: 0 0 20px 0;
}

.cookiefirst-cookie-declaration a {
  color: var(--primary-text);
  text-decoration: underline;
}

.not-found .entry-content {
  text-align: center;
  margin: 0;
}

.not-found-logo {
  width: 200px;
  margin: 0 auto;
  padding: 0px 0px 60px 0px;
}

.post.not-found p {
  margin: 0 auto;
  text-align: center;
  font-size: 36px;
  line-height: 44px;
  font-weight: 700;
  padding: 200px 20px 50px 20px;
  max-width: 1200px;
}

.btn-primary {
  background-color: var(--accent-base);
  color: var(--white);
  border: none;
  padding: 16px 24px;
  border-radius: 8px;
  cursor: pointer;
  font-style: normal;
  font-weight: 700;
  font-size: 17px;
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  transition: background-color 0.3s ease;
}

.btn-secondary {
  padding: 16px 24px;
  border-radius: 8px;
  background-color: var(--white);
  color: var(--accent-base);
  border: 1px solid var(--accent-base);
  font-style: normal;
  font-weight: 700;
  font-size: 17px;
}

.btn-secondary:hover {
  background-color: #dadada;
  transition: background-color 0.3s ease;
}

/* Layout */
.site-header {
  background: white;
  padding: 20px 0;
  border-bottom: 8px solid var(--accent-base);
  position: fixed;
  width: 100%;
  z-index: 999;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: auto;
}

.logo img {
  height: 40px;
}

/* Navigation */
.main-nav .nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.main-nav .nav-links li a {
  text-decoration: none;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  color: #000;
}

/* CTA Button */
.cta-button {
  background: #0073e6;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
}

/* Mobile Nav */
.mobile-toggle {
  display: none;
  cursor: pointer;
  position: relative;
  width: 48px;
  height: 48px;
  border: none;
  background: none;
  padding: 0;
}

.mobile-toggle .hamburger-icon,
.mobile-toggle .close-icon {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-toggle .close-icon {
  opacity: 0;
  visibility: hidden;
}

.mobile-cta {
  display: none;
  margin-top: 15px;
  text-align: center;
}

.main-nav.active {
  display: flex;
  opacity: 1;
}

.mobile-toggle {
  display: none;
}

.main-nav.active ~ .mobile-toggle .hamburger-icon {
  opacity: 0;
  visibility: hidden;
}

.main-nav.active ~ .mobile-toggle .close-icon {
  opacity: 1;
  visibility: visible;
}

/* Footer Styles */
.site-footer {
  margin-top: 0;
  padding: 110px 0px 55px 0px;
  background-color: var(--primary);
  color: var(--white);
  border-top: 8px solid var(--accent-base);
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 56px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer-contact-name {
  font-size: 19px;
  font-style: normal;
  font-weight: 700;
}

.footer-contact-address,
.footer-contact-city {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
}

.footer-contact p {
  margin: 5px 0;
}

.footer-links {
  margin-top: 17px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
}

.footer-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 32px;
  text-align: right;
}

.footer-cta h3 {
  max-width: 325px;
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding: 24px 0px 24px 0px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom-left {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
}

.footer-links-bottom {
  display: flex;
  gap: 30px;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
}

.footer-links-bottom a {
  color: var(--white);
}

/* Home Header Styles */

/* Slider Section */
.home-header {
  position: relative;
}

.home-header-swiper {
  width: 100%;
}

.swiper-slide {
  position: relative;
  display: flex;
  align-items: center;
}

.slide-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

@media (max-width: 768px) {
  .slide-background {
    background-position: 70% top;
  }
}

.slide-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}

.slide-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin: 0 auto;
  color: white;
  position: relative;
  z-index: 2;
}

.slide-subtitle {
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 600;
  letter-spacing: 1.44px;
  font-size: 12px;
  line-height: 22px;
}

.slide-title {
  font-size: 88px;
  font-weight: 700;
  line-height: 96px;
  margin-bottom: 2rem;
  max-width: 700px;
}

.slide-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.swiper-pagination {
  position: absolute !important;
  display: flex !important;
  gap: 0.5rem !important;
  max-width: 1200px !important;
  padding: 0 20px !important;
  z-index: 5555 !important;
}

.swiper-pagination-bullet {
  width: 12px !important;
  height: 12px !important;
  background-color: var(--border) !important;
  opacity: 1 !important;
  border-radius: 50% !important;
}

.swiper-pagination-bullet-active {
  background-color: var(--accent-base) !important;
}

/* Blue CTA Section */
.blue-cta-section {
  display: flex;
  align-items: center;
  height: 265px;
  background-color: var(--primary);
  color: white;
}

.blue-cta-container {
  width: 100%;
  padding: 0 104px;
}

.blue-cta-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18rem;
}

.blue-cta-text {
  flex: 2;
}

.blue-cta-text p {
  font-size: 18px;
  margin-bottom: 24px;
  line-height: 26px;
  font-weight: 400;
}

.blue-cta-text h3 {
  font-style: normal;
  font-weight: 700;
  margin-bottom: 10px;
}

.blue-cta-buttons {
  display: flex;
  gap: 8px;
  margin-top: 24px;
}

.blue-cta-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  position: relative;
  z-index: 10;
  right: 0;
  bottom: 60px;
}

.blue-cta-image img {
  height: auto;
  max-height: 382px;
}

.blue-cta-image-container {
  position: relative;
}

.home-header.has-cta-image .blue-cta-image-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: var(--accent-base);
}

/* Tab Module Styles */
.tab-module {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.tab-module .tab-triggers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.tab-module .tab-trigger {
  position: relative;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
.tab-module .tab-trigger:hover,
.tab-module .tab-trigger.active {
  opacity: 1;
}
.tab-module .tab-trigger img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 300px;
  object-fit: cover;
}
.tab-module .tab-image-title {
  position: absolute;
  bottom: 0;
  left: 32px;
  color: white;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  border-bottom: 8px solid var(--border);
  padding-bottom: 24px;
  transition: border-color 0.3s ease;
}

.tab-module .tab-trigger.active .tab-image-title {
  border-bottom-color: var(--accent-base);
}

.tab-module .tab-icon {
  display: none;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background-color: var(--accent-base);
  border-radius: 8px;
  position: relative;
  transition: background-color 0.3s ease, background-image 0.3s ease;
  background-image: url('../img/plus-icon.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

.tab-module .tab-trigger.active .tab-icon {
  background-color: var(--accent-hover);
  background-image: url('../img/minus-icon.svg');
}

.tab-module .tab-content-wrapper {
  padding: 104px 56px 0 56px;
  background-color: var(--neutral-bg);
}

.tab-module .tab-content {
  display: none;
}
.tab-module .tab-content.active {
  display: block;
}

.tab-module .content-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 40px;
}

.tab-module .content-text {
  flex: 1;
}

.tab-module .subtitle {
  display: block;
  margin-bottom: 16px;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: 1.44px;
  text-transform: uppercase;
}

.tab-module .title {
  color: var(--primary-text);
  margin-top: 0;
  margin-bottom: 8px;
  max-width: 708px;
  font-weight: 700;
}

.tab-module .text,
.content-text p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  color: var(--secondary-text);
  max-width: 708px;
}

.content-button {
  display: flex;
}

.tab-module .content-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 56px;
  border-top: 1px solid var(--border);
  padding: 62px 0px 104px 0px;
}

.tab-module .item-line {
  width: 56px;
  height: 8px;
  background-color: var(--primary-text);
  margin-bottom: 32px;
}

.tab-module .item-title {
  max-width: 185px;
  font-size: 18px;
  line-height: 24px;
  font-style: normal;
  font-weight: 600;
  color: var(--primary-text);
  margin-top: 0;
  margin-bottom: 5px;
}

.tab-module .item-text,
.tab-module .item p {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  color: var(--secondary-text);
}

/* CTA Module Styles */
.cta-module {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 112px;
  background-color: var(--primary);
  color: var(--white);
  height: 383px;
}

.cta-module.has-image .cta-content-wrapper {
  margin: 0 auto;
  width: 100%;
}

.cta-content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.cta-text-content {
  flex: 1.5;
}

.cta-headline {
  font-weight: 700;
  line-height: 48px;
  margin-top: 0;
  margin-bottom: 10px;
}

.cta-description p {
  max-width: 500px;
  font-size: 18px;
  line-height: 26px;
  margin-top: 0;
  margin-bottom: 56px;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cta-button-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--accent-base);
  color: var(--white);
  padding: 14px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}

.cta-button-item:hover {
  background-color: var(--accent-hover);
}

.cta-button-icon {
  height: 20px;
  width: auto;
}

.cta-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.cta-image-container {
  position: relative;
  padding-bottom: 8px;
  bottom: 55px;
}

.cta-image {
  display: block;
  width: 356px;
  height: 453px;
  object-fit: cover;
  position: relative;
  z-index: 10;
}

.cta-module.has-image .cta-image-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: var(--accent-base);
}

/* Employee Module Styles */
.employee-module {
  padding: 80px 0;
}

.employee-module-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.employee-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.employee-main-headline {
  color: var(--primary-text);
  margin: 0;
  font-weight: 700;
}

.employee-swiper-navigation {
  position: relative;
  display: flex;
  gap: 4px;
}

.employee-swiper-button-prev,
.employee-swiper-button-next {
  position: static !important;
  margin-top: 0 !important;
  width: 40px !important;
  height: 40px !important;
  background-color: var(--accent-base) !important;
  border-radius: 8px !important;
  color: var(--white) !important;
  transition: background-color 0.3s ease !important;
  font-weight: bold !important;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

.employee-swiper-button-prev {
  background-image: url('../img/arrow-left.svg');
}

.employee-swiper-button-next {
  background-image: url('../img/arrow-right.svg');
}

.employee-swiper-button-prev::after,
.employee-swiper-button-next::after,
.swiper-button-next:after,
.swiper-button-prev:after {
  content: '' !important;
  display: none !important;
}

.employee-swiper {
  width: 100%;
  overflow: hidden;
}

.employee-slide-content {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  border-radius: 4px;
}

.employee-image-wrapper {
  flex: 0 0 35%;
  max-width: 40%;
}

.employee-image {
  display: block;
  object-fit: cover;
  image-rendering: -webkit-optimize-contrast;
  overflow-clip-margin: unset;
  border-radius: 4px;
  width: 450px;
  min-height: 350px;
  overflow: hidden;
  transform: translate3d(0px, 0px, 0.1px);
}

.employee-text-content {
  flex: 1;
  background-color: var(--neutral-bg);
  padding: 48px;
  border-radius: 4px;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}

.employee-subheadline {
  font-size: 16px;
  font-weight: 400;
  color: var(--primary-text);
  margin-top: 0;
  margin-bottom: 78px;
  padding-bottom: 5px;
  border-bottom: 4px solid var(--primary-text);
  display: inline-block;
}

.employee-quote {
  font-size: 18px;
  line-height: 26px;
  color: var(--secondary-text);
  margin-bottom: 16px;
  position: relative;
  font-weight: 400;
}

.employee-quote p:first-child {
  margin-top: 0;
}
.employee-quote p:last-child {
  margin-bottom: 0;
}

.employee-name {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--primary-text);
  margin-top: 0;
  margin-bottom: 0;
}

.employee-buttons {
  margin-top: 40px;
  display: flex;
  gap: 8px;
}

/* Image Slider Module Styles */
.image-slider-module {
  padding: 60px 0;
  position: relative;
}

.image-slider-module.alignfull {
  padding: 60px 0;
  max-width: 100%;
}

.image-slider-module.alignwide {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.image-slider-container {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}

.image-swiper {
  width: 100%;
  overflow: hidden;
}

.image-swiper .swiper-slide {
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  overflow: hidden;
  background-color: #eee;
}

.image-swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.image-swiper-button-prev,
.image-swiper-button-next {
  position: absolute;
  top: 55% !important;
  transform: translateY(-50%) !important;
  z-index: 10 !important;
  width: 40px !important;
  height: 40px !important;
  background-color: var(--accent-base) !important;
  border-radius: 8px !important;
  color: var(--white) !important;
  transition: background-color 0.3s ease !important;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 40%;
}

.image-swiper-button-prev {
  background-image: url('../img/arrow-left.svg');
  background-size: 100%;
}

.image-swiper-button-next {
  background-image: url('../img/arrow-right.svg');
  background-size: 100%;
}

.image-swiper-button-prev::after,
.image-swiper-button-next::after {
  content: '' !important;
  display: none !important;
}

.image-slider-module.alignfull .image-swiper-button-prev {
  left: 30px;
}
.image-slider-module.alignfull .image-swiper-button-next {
  right: 30px;
}

.swiper-button-disabled {
  opacity: 0.3;
  cursor: auto;
}

/* FAQ Module Styles */
.faq-module {
  padding: 80px 0;
}

.faq-module-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.faq-main-headline {
  color: var(--primary-text);
  line-height: 48px;
  margin-top: 0;
  margin-bottom: 40px;
  font-weight: 700;
}

.faq-item {
  padding: 16px 16px 16px 24px;
  border: 1px solid var(--neutral-bg);
  background-color: var(--neutral-bg);
  border-radius: 4px;
  margin-bottom: 24px;
}

.faq-question-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 16px;
}

.faq-question {
  font-size: 18px;
  font-weight: 600;
  color: var(--secondary-text);
  line-height: 24px;
  margin: 0;
  flex: 1;
}

.faq-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background-color: var(--accent-base);
  border-radius: 8px;
  position: relative;
  transition: background-color 0.3s ease, background-image 0.3s ease;
  background-image: url('../img/plus-icon.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

.faq-icon::before,
.faq-icon::after {
  display: none;
}

.faq-item.active .faq-icon {
  background-color: var(--accent-hover);
  background-image: url('../img/minus-icon.svg');
}

.faq-answer {
  color: var(--secondary-text);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease-out, padding-bottom 0.4s ease-out;
  padding-bottom: 0;
}

.faq-answer p {
  max-width: 724px;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--secondary-text);
}

.faq-answer > *:first-child {
  margin-top: 24px;
}

.faq-answer > *:last-child {
  margin-bottom: 0;
}

.faq-item.active .faq-answer {
  padding-bottom: 24px;
}

.faq-question-trigger:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.faq-question-trigger:focus:not(:focus-visible) {
  outline: none;
}

/* Image Text Module Styles */
.image-text-module {
  padding: 80px 0;
}

.image-text-container {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.it-image-wrapper {
  flex: 0 0 50%;
  max-width: 50%;
}

.it-image-wrapper img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 4px;
}

.it-text-content {
  flex: 1;
}

.it-headline {
  color: var(--primary-text);
  font-weight: 700;
  line-height: 48px;
  margin-top: 0;
  margin-bottom: 38px;
}

.it-text {
  color: var(--secondary-text);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.it-text p:first-child {
  margin-top: 0;
}

.it-text p:last-child {
  margin-bottom: 0;
}

.it-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-base);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.3s ease;
}

.it-link::after {
  content: '\2192';
  display: inline-block;
  transition: transform 0.3s ease;
}

.it-link:hover {
  color: var(--accent-hover);
}

.it-link:hover::after {
  transform: translateX(4px);
}

/* Contact Form 7 Module Styles */
.contact-form-module {
  background-color: var(--white);
  padding: 60px 0;
}

.contact-form-container {
  background-color: var(--neutral-bg);
  padding: 72px 120px 48px 120px !important;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-form-module .cf7-grid-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0px 88px;
}

.contact-form-module .cf7-grid-wrapper p {
  margin: 0 0 24px 0;
}

.contact-form-module .cf7-grid-wrapper h3 {
  grid-column: span 1;
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-text);
  margin: 0 0 10px 0;
  line-height: 1.3;
}

.contact-form-module .cf7-grid-wrapper h3:first-of-type {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}

.contact-form-module .cf7-grid-wrapper h3:nth-of-type(2) {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

.contact-form-module .cf7-grid-wrapper label {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: var(--secondary-text);
  margin-bottom: 6px;
}

.contact-form-module .wpcf7-form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background-color: var(--white);
  font-size: 16px;
  line-height: 1.5;
  color: var(--secondary-text);
  transition: border-color 0.3s ease;
}

.contact-form-module .wpcf7-form-control:focus {
  outline: none;
  border-color: var(--accent-base);
}

.contact-form-module textarea.wpcf7-form-control {
  height: 140px;
  resize: vertical;
}

.contact-form-module .wpcf7-form-control-wrap[data-name*='file'] > span {
  display: block;
}

.contact-form-module .wpcf7-file {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.contact-form-module .cf7-column-2 .file-upload-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  padding: 27px 16px;
  text-align: center;
  border-radius: 8px;
  border: 1px dashed var(--border);
  background-color: var(--white);
  cursor: pointer;
}

.contact-form-module .wpcf7-file + label.file-upload-label {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 120px;
  border: 2px dashed var(--border);
  border-radius: 4px;
  padding: 20px;
  cursor: pointer;
  text-align: center;
  transition: border-color 0.3s ease, background-color 0.3s ease;
  background-color: var(--white);
}

.contact-form-module .wpcf7-file + label.file-upload-label:hover {
  border-color: var(--accent-base);
}

.contact-form-module .file-upload-label .upload-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 8px;
  display: inline-block;
  background-image: url('../img/folder-upload.svg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.contact-form-module .file-upload-label .upload-text {
  font-size: 16px;
  color: var(--grey-text);
  line-height: 24px;
  font-weight: 400;
}
.contact-form-module .file-upload-label .upload-subtext {
  font-size: 13px;
  color: var(--grey-text);
  line-height: 19px;
  font-weight: 400;
}

.contact-form-module .wpcf7-form-control-wrap[data-name*='file'] + p {
  font-size: 12px;
  color: var(--grey-text);
  margin-top: 8px;
  text-align: center;
}

.contact-form-module .wpcf7-form .form-footer {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
  margin-top: 20px;
}

.contact-form-module .contact-form-privacy {
  font-size: 13px;
  color: var(--grey-text);
  line-height: 1.5;
  max-width: 600px;
  text-align: left;
  width: 100%;
}

.contact-form-module .contact-form-privacy a {
  color: var(--accent-base);
  text-decoration: underline;
}

.contact-form-module .wpcf7-submit {
  background-color: var(--accent-base);
  color: var(--white);
  border: none;
  padding: 14px 30px;
  border-radius: 8px;
  cursor: pointer;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  transition: background-color 0.3s ease;
}

.contact-form-module .wpcf7-submit:hover {
  background-color: var(--accent-hover);
}

/* CF7 Response Output Messages */
.contact-form-module .wpcf7-response-output {
  grid-column: 1 / -1;
  margin: 20px 0 0 0;
  padding: 15px;
  border-radius: 4px;
  text-align: center;
}

.wpcf7-not-valid-tip {
  color: var(--warning);
  font-size: 13px;
  font-weight: 400;
  margin-top: 5px;
  display: block;
}

.wpcf7 form.invalid .wpcf7-response-output {
  padding: 8px;
  background-color: var(--warning) !important;
  color: var(--white) !important;
  font-size: 14px !important;
  border: none !important;
}

.wpcf7-spinner {
  display: none !important;
  visibility: hidden !important;
}

/* Standard Text Module Styles */
.standard-text-module {
  padding: 56px 0;
}

.standard-text-module.reduce-padding-top {
  padding-top: 0;
}

.standard-text-module.reduce-padding-bottom {
  padding-bottom: 0;
}

.standard-text-module.reduce-padding-both {
  padding-top: 0;
  padding-bottom: 0;
}

.standard-text-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.standard-text-headline {
  font-weight: 700;
  color: var(--primary-text);
  margin-top: 0;
  margin-bottom: 8px;
  line-height: 38px;
}

.standard-text-teaser {
  color: var(--secondary-text);
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 56px;
  max-width: 765px;
}

.standard-text-teaser.teaser-blue {
  color: var(--primary);
}

.standard-text-teaser p:first-child {
  margin-top: 0;
}

.standard-text-teaser p:last-child {
  margin-bottom: 0;
}

.standard-text-teaser strong,
.text-column strong {
  font-weight: 700;
}

.text-column a {
  color: var(--primary-text);
  text-decoration: underline;
}

.standard-text-content {
  font-size: 16px;
  line-height: 1.6;
  color: var(--secondary-text);
}

.standard-text-content h1,
.standard-text-content h2,
.standard-text-content h3,
.standard-text-content h4,
.standard-text-content h5,
.standard-text-content h6 {
  color: var(--primary-text);
  font-weight: 700;
}

.standard-text-content h4 {
  font-size: 18px;
  line-height: 24px;
  margin: 0 0 4px 0;
}

.text-column ul li::marker {
  color: var(--primary);
}

.standard-text-module.has-two-columns .standard-text-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}

.standard-text-module.has-single-column .text-column-single {
  max-width: 800px;
}

.text-column p:first-child {
  margin-top: 0;
}

.text-column p:last-child {
  margin-bottom: 0;
}

.text-column ul {
  list-style: disc;
  padding-left: 20px;
  margin-top: 1em;
  margin-bottom: 1em;
}

.text-column ul li {
  margin-bottom: 0.5em;
}

/* Sub Page Header Module Styles */
.sub-page-header-module {
  padding: 80px 0 40px 0;
  background-color: var(--white);
}

.sub-page-header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.sub-page-headline {
  font-size: 56px;
  font-weight: 700;
  color: var(--primary-text);
  margin-top: 0;
  margin-bottom: 40px;
  line-height: 67px;
  position: relative;
  padding-top: 15px;
}

.sub-page-headline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 56px;
  height: 8px;
  background-color: var(--primary-text);
}

.sub-page-text {
  font-size: 18px;
  line-height: 26px;
  color: var(--secondary-text);
  max-width: 565px;
}

.sub-page-text p:first-child {
  margin-top: 0;
}

.sub-page-text p:last-child {
  margin-bottom: 0;
}

/* === Media Queries === */

@media (min-width: 1441px) {
  .slide-content,
  .nav-container {
    padding: 0 104px;
    max-width: 1920px;
    margin: 0 auto;
  }
  .blue-cta-container {
    width: 100%;
    padding: 0 104px;
  }
  .home-header-swiper {
    height: 60vh;
    min-height: 500px;
  }
  .cta-module {
    padding: 80px 104px 48px 104px;
  }
  .cta-module.has-image .cta-content-wrapper {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 56px;
  }
  .swiper-pagination {
    padding: 0 56px !important;
    bottom: 56px !important;
    max-width: 1920px !important;
    margin: 0 auto !important;
  }
  .blue-cta-content {
    padding: 0 56px;
    max-width: 1920px;
    margin: 0 auto;
  }
  .cta-content-wrapper {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 56px;
  }
}

@media (min-width: 1024px) {
  .slide-content,
  .nav-container {
    padding: 0 56px;
  }
}

@media (min-width: 1920px) {
  .home-header-swiper {
    height: 60vh;
  }
  .swiper-pagination {
    padding: 0 !important;
    bottom: 56px !important;
    max-width: 1920px !important;
    margin: 0 auto !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 100% !important;
    display: flex !important;
    justify-content: flex-start !important;
    box-sizing: border-box !important;
    padding-left: 56px !important;
  }
}

@media (max-width: 1440px) {
  .swiper-pagination {
    padding: 0 56px !important;
  }
  .blue-cta-container {
    width: 100%;
    padding: 0 56px;
  }
  .home-header-swiper {
    height: 535px;
  }
  .cta-module {
    padding: 80px 56px 48px 56px;
  }
  .swiper-pagination {
    padding: 0 56px !important;
    bottom: 56px !important;
  }
}

@media (min-width: 769px) {
  .tab-module .tab-trigger {
    display: block;
    background-color: transparent;
    border: none;
    padding: 0;
    margin-bottom: 0;
  }
  .tab-module .tab-trigger img {
    display: block;
  }
  .tab-module .tab-image-title {
    position: absolute;
    bottom: 0;
    left: 32px;
    color: white;
    font-size: 24px;
    font-weight: 700;
    border-bottom: 8px solid var(--border);
    padding-bottom: 24px;
    margin-right: 0;
  }
  .tab-module .tab-trigger.active .tab-image-title {
    border-bottom-color: var(--accent-base);
  }
  .tab-module .tab-icon {
    display: none;
  }
  .tab-module .tab-content-wrapper {
    padding: 104px 56px 0 56px;
    background-color: var(--neutral-bg);
  }
  .tab-module .tab-content {
    max-height: none;
    overflow: visible;
    padding: 0;
    border: none;
    margin-bottom: 0;
    display: none;
  }
  .tab-module .tab-content.active {
    display: block;
    padding: 0;
  }
  .tab-module .tab-content .content-main {
    flex-direction: row;
    align-items: flex-end;
    margin-bottom: 40px;
  }

  .tab-module .tab-content .content-items {
    border-top: 1px solid var(--border);
    padding: 62px 0px 104px 0px;
    gap: 56px;
  }
}

@media (max-width: 1024px) {
  .nav-container {
    padding: 0 20px;
  }

  .site-header .nav-container > .btn-primary {
    display: none;
  }

  .main-nav.active .mobile-cta {
    display: block;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    padding: 0;
    text-align: left;
    margin-top: 40px;
  }
  .main-nav {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--accent-base);
    flex-direction: column;
    text-align: left;
    padding: 48px 20px;
    opacity: 0;
  }

  .main-nav.active {
    display: flex;
    height: 100vh;
    max-height: 100vh;
    padding: 48px 20px;
    opacity: 1;
  }

  .mobile-toggle {
    display: flex;
  }

  .main-nav .nav-links {
    flex-direction: column;
    gap: 40px;
  }

  .main-nav .nav-links li a {
    color: var(--white);
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
  }
  .cta-button {
    display: none;
  }

  .slide-title {
    font-size: 64px;
    line-height: 71px;
  }
  .slide-subtitle {
    font-size: 15px;
    line-height: 27px;
    letter-spacing: 1.8px;
    margin-bottom: 12px;
  }

  .swiper .swiper-pagination {
    padding: 0 20px !important;
  }
  .blue-cta-content {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 48px;
  }

  .blue-cta-image {
    bottom: 0;
  }
  .slide-content {
    padding: 48px 20px 48px 20px;
  }
  .swiper.home-header-swiper {
    height: 60vh;
  }
  .blue-cta-section {
    height: auto;
  }
  .blue-cta-section .blue-cta-container {
    padding: 80px 20px 48px 20px;
  }
  .cta-module {
    margin-top: 40px;
    height: auto;
    padding: 90px 20px 48px 20px;
  }
  .cta-content-wrapper {
    flex-direction: column-reverse;
    text-align: left;
    align-items: flex-start;
  }
  .cta-image-wrapper {
    margin-top: 0;
  }
  .cta-image-container {
    bottom: 0;
  }
  .contact-form-module {
    padding: 20px;
  }
  .contact-form-module .cf7-grid-wrapper {
    grid-template-columns: 1fr;
  }
  .contact-form-container {
    padding: 20px !important;
  }
  .tab-module .tab-content-wrapper {
    padding: 104px 20px 0 20px;
  }
}

@media (max-width: 992px) {
  .employee-slide-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .employee-image-wrapper {
    flex: 0 0 80%;
    max-width: 80%;
    margin-bottom: 30px;
  }
  .employee-text-content {
    width: 100%;
  }
  .employee-subheadline {
    display: block;
    text-align: center;
  }
  .employee-quote {
    padding-left: 0;
    text-align: left;
  }
  .employee-quote::before {
    display: none;
  }
  .employee-buttons {
    justify-content: center;
  }
  .image-text-container {
    gap: 40px;
  }
  .it-headline {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .employee-image-wrapper {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 0;
  }
  .image-slider-module,
  .image-slider-module.alignfull {
    padding: 0;
  }
  .employee-image {
    width: 100%;
  }
  .employee-text-content {
    padding: 32px 20px;
  }
  .employee-subheadline {
    font-size: 20px;
    margin-bottom: 48px;
  }
  .employee-quote,
  .employee-name {
    font-size: 20px;
    line-height: 29px;
    text-align: left;
  }
  .employee-buttons {
    flex-direction: row;
    margin-top: 24px;
  }
  .slide-content {
    justify-content: flex-end;
  }
  .contact-form-module .wpcf7-form {
    grid-template-columns: 1fr;
  }
  .contact-form-module .wpcf7-form h3:first-of-type,
  .contact-form-module .wpcf7-form h3:nth-of-type(2) {
    grid-column: 1 / -1;
    grid-row: auto;
  }
  .contact-form-module .wpcf7-form .form-footer {
    align-items: center;
  }
  .contact-form-module .contact-form-privacy {
    text-align: center;
  }
  .image-text-container {
    flex-direction: column;
  }
  .it-image-wrapper {
    flex-basis: auto;
    max-width: 100%;
    width: 100%;
  }
  .it-image-wrapper img {
    max-height: 300px;
  }
  .it-text-content {
    width: 100%;
  }
  .image-swiper .swiper-slide img {
    height: 250px;
  }
  .image-swiper-button-prev,
  .image-swiper-button-next {
    width: 35px;
    height: 35px;
  }
  .image-swiper-button-prev::after,
  .image-swiper-button-next::after {
    font-size: 14px;
  }
  .image-swiper-button-prev {
    left: 5px;
  }
  .image-swiper-button-next {
    right: 5px;
  }
  .employee-header {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .employee-buttons a {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
  .tab-module {
    padding: 0;
  }
  .tab-module .tab-triggers {
    display: block;
  }

  .tab-module .tab-trigger {
    display: block;
    position: relative;
    opacity: 1;
    cursor: pointer;
    overflow: hidden;
  }
  .tab-module .tab-trigger:first-child {
    margin-bottom: 16px;
  }
  .tab-module .tab-trigger.active {
    margin-bottom: 0;
  }
  .tab-module .tab-trigger::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
    transition: background-color 0.3s ease;
  }

  .tab-module .tab-trigger:hover::after {
    background-color: rgba(0, 0, 0, 0.5);
  }

  .tab-module .tab-trigger img {
    display: block;
    width: 100%;
    height: 450px;
    object-fit: cover;
  }

  .tab-module .tab-image-title {
    position: absolute;
    bottom: 16px;
    left: 16px;
    border-bottom: none;
    padding-bottom: 0;
    font-size: 18px;
    color: var(--white);
    font-weight: 700;
    z-index: 2;
  }

  .tab-module .tab-icon {
    display: block;
    position: absolute;
    bottom: 16px;
    right: 16px;
    z-index: 2;
  }

  .tab-module .tab-content-wrapper {
    padding: 0;
    background-color: transparent;
  }

  .standard-text-teaser {
    margin-bottom: 32px;
  }

  .text-column p,
  .text-column ul li {
    font-size: 20px;
    line-height: 29px;
  }

  .tab-module .tab-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out,
      border-color 0.4s ease-out;
    padding: 0 16px;
    margin-bottom: 10px;
    border-radius: 0 0 4px 4px;
    border: 1px solid transparent;
    border-top: none;
    background-color: var(--neutral-bg);
  }

  .tab-module .tab-content.active {
    max-height: none;
    padding-top: 32px;
    padding-bottom: 32px;
    border-color: var(--border);
  }

  .tab-module .tab-content .content-main {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 32px;
  }

  .tab-module .tab-content .content-items {
    padding-top: 32px;
    padding-bottom: 0;
    gap: 32px;
  }

  .tab-module .tab-trigger:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
  }

  .tab-module .tab-trigger:focus:not(:focus-visible) {
    outline: none;
  }

  .standard-text-headline {
    margin-bottom: 12px;
  }

  .standard-text-module.has-two-columns .standard-text-content {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .standard-text-teaser,
  .standard-text-module.has-single-column .text-column-single {
    max-width: 100%;
  }
  .sub-page-headline {
    font-size: 40px;
  }
  .sub-page-text {
    max-width: 100%;
  }

  .site-footer {
    padding: 72px 0px 55px 0px;
  }
  .footer-content,
  .footer-bottom {
    flex-direction: column;
    gap: 30px;
  }

  .footer-cta {
    text-align: right;
  }

  .footer-links-bottom {
    text-align: left;
  }

  .footer-links-bottom {
    flex-wrap: wrap;
    gap: 15px 20px;
  }
}

@media (max-width: 576px) {
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .cta-button-item {
    width: fit-content;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  h3 {
    font-size: 36px;
    line-height: 43px;
  }

  .swiper.home-header-swiper {
    height: 85vh;
    min-height: unset;
  }

  .cta-module {
    padding: 80px 20px 48px 20px;
  }

  .cta-module.has-image {
    padding: 56px 20px 80px 20px;
  }

  .cta-module.has-image h2 {
    font-size: 40px;
    line-height: 48px;
  }

  .cta-headline {
    font-size: 56px;
    line-height: 62px;
  }

  .cta-image {
    width: 138px;
    height: auto;
  }
  .cta-description p {
    font-size: 20px;
    line-height: 29px;
    margin-bottom: 32px;
  }

  .cta-buttons {
    align-items: flex-start;
  }
  .blue-cta-image img {
    max-width: 145px;
  }
  .blue-cta-buttons {
    margin-top: 32px;
  }
  .standard-text-module {
    padding: 56px 0px 80px 0px;
  }
  .standard-text-teaser {
    font-size: 20px;
    line-height: 29px;
  }

  .tab-module .tab-content.active,
  .tab-module .tab-content {
    padding: 56px 20px 62px 20px;
    margin-bottom: 0;
  }

  .tab-module .tab-content .content-items {
    padding: 62px 0px 0px 0px;
    gap: 50px;
  }

  .tab-module .content-text {
    padding: 0px;
  }
  .tab-module .tab-trigger img,
  .tab-module .tab-trigger {
    height: 350px;
    max-height: 350px;
  }

  .tab-module .item-title {
    font-size: 24px;
    line-height: 31px;
    max-width: 245px;
  }

  .tab-module .item-text,
  .tab-module .item p {
    font-size: 20px;
    line-height: 30px;
    max-width: 300px;
  }

  .tab-module .tab-trigger .tab-image-title {
    font-size: 28px;
    line-height: 29px;
    border-bottom: 8px solid var(--border);
    padding-bottom: 16px;
    bottom: 0;
  }

  .tab-module .tab-trigger.active .tab-image-title {
    border-bottom-color: var(--border);
    padding-bottom: 16px;
  }

  .tab-module .text,
  .content-text p {
    font-size: 20px;
    line-height: 30px;
  }

  .tab-module .tab-trigger::after {
    background-color: unset;
  }
  .tab-module .title {
    width: 100%;
  }

  .employee-main-headline {
    line-height: 48px;
  }
  .employee-header {
    gap: 32px;
    margin-bottom: 24px;
  }
  .employee-image {
    width: 100%;
    max-height: 350px;
  }
  .employee-text-content {
    width: 100%;
  }

  .footer-container {
    padding: 0 20px;
  }

  .footer-links-bottom {
    flex-direction: column;
  }
  .footer-cta {
    margin-top: 26px;
  }
  .faq-list .faq-item:last-child {
    margin-bottom: 0;
  }

  .faq-question {
    font-weight: 700;
  }
  .faq-answer p,
  .faq-answer ul li,
  .faq-question,
  .blue-cta-text {
    font-size: 20px;
    line-height: 29px;
  }
  .it-headline {
    font-size: 40px;
    margin-bottom: 16px;
  }
  .it-text,
  .it-link {
    font-size: 20px;
    line-height: 29px;
  }
  .image-text-module {
    padding: 80px 0px 64px 0px;
  }
  .contact-form-module {
    padding: 40px 20px;
  }
  .contact-form-container {
    padding: 48px 20px 20px 20px !important;
  }
  .contact-form-module .cf7-grid-wrapper h3 {
    font-size: 28px;
    line-height: 34px;
    margin: 0 0 24px 0;
  }
  .contact-form-module .cf7-grid-wrapper label {
    margin-bottom: 6px;
    font-size: 16px;
    font-weight: 600;
  }
  .contact-form-module .cf7-grid-wrapper p {
    margin-bottom: 24px;
  }
  .contact-form-module .wpcf7-form-control {
    border-radius: 8px;
  }
  .contact-form-module .wpcf7-form .form-footer {
    align-items: flex-start;
  }
  .contact-form-module .contact-form-privacy {
    text-align: left;
  }
}

@media (max-width: 380px) {
  h3 {
    font-size: 29px;
  }
  h2 {
    font-size: 34px;
    line-height: 40px;
  }
  .main-nav .nav-links li a {
    font-size: 30px;
  }
  .main-nav .nav-links {
    gap: 20px;
  }
  .main-nav.active .mobile-cta {
    margin-top: 20px;
    font-size: 30px;
  }
  .slide-title {
    font-size: 52px;
    line-height: 64px;
  }
  .it-headline {
    font-size: 36px;
    line-height: 43px;
  }
  .tab-module .tab-trigger .tab-image-title {
    font-size: 21px;
  }
  .faq-question,
  .faq-answer p {
    font-size: 19px;
    line-height: 24px;
  }
  .faq-answer ul li {
    font-size: 16px;
    line-height: 24px;
  }
  .faq-icon {
    width: 35px;
    height: 35px;
  }
  .blue-cta-buttons .btn-primary,
  .blue-cta-buttons .btn-secondary,
  .employee-buttons a {
    padding: 8px 18px;
  }
}

/* CookieFirst Banner - START */
.cookiefirst-root [data-cookiefirst-widget="banner"] [data-cookiefirst-action="reject"],
.cookiefirst-root [data-cookiefirst-widget="banner"] [data-cookiefirst-action="save"],
.cookiefirst-root [data-cookiefirst-widget="banner"] [data-cookiefirst-action="adjust"] {
	background: rgba(0,0,0,0) !important;
	color: #5677a9 !important;
}

.cookiefirst-root [data-cookiefirst-widget="banner"] [data-cookiefirst-action="reject"]:hover,
.cookiefirst-root [data-cookiefirst-widget="banner"] [data-cookiefirst-action="reject"]:focus-visible,
.cookiefirst-root [data-cookiefirst-widget="banner"] [data-cookiefirst-action="save"]:hover,
.cookiefirst-root [data-cookiefirst-widget="banner"] [data-cookiefirst-action="save"]:focus-visible,
.cookiefirst-root [data-cookiefirst-widget="banner"] [data-cookiefirst-action="adjust"]:hover,
.cookiefirst-root [data-cookiefirst-widget="banner"] [data-cookiefirst-action="adjust"]:focus-visible {
	background: #0047B2 !important;
	color: #FFFFFF !important;
}

.cookiefirst-root [data-cookiefirst-widget="modal"] [data-cookiefirst-action="save"],
.cookiefirst-root [data-cookiefirst-widget="modal"] [data-cookiefirst-action="reject_second"] {
	background: rgba(0,0,0,0) !important;
	color: #5677a9 !important;
}

.cookiefirst-root [data-cookiefirst-widget="modal"] [data-cookiefirst-action="save"]:hover,
.cookiefirst-root [data-cookiefirst-widget="modal"] [data-cookiefirst-action="save"]:focus-visible,
.cookiefirst-root [data-cookiefirst-widget="modal"] [data-cookiefirst-action="reject_second"]:hover,
.cookiefirst-root [data-cookiefirst-widget="modal"] [data-cookiefirst-action="reject_second"]:focus-visible {
	background: #0047B2 !important;
	color: #FFFFFF !important;
}
/* CookieFirst Banner - END */

/* Cookie-Richtlinie Page - START */
.cookiefirst-cookie-declaration button {
	background: #0047B2;
	color: #FFFFFF;
	padding: 6px 12px;
	margin: 0 4px;
	border: 1px solid #0047B2;
	border-radius: 4px;
	cursor: pointer;
}

.cookiefirst-cookie-declaration button:hover,
.cookiefirst-cookie-declaration button:focus-visible {
	background: #FFFFFF;
	color: #0047B2;
}
/* Cookie-Richtlinie Page - END */
