:root {
  --bg: #fff;
  --bg-gray: #f3f3f3;
  --text: #000000;
  --orange: #f9ba01;
  --orange-faded: rgb(243 217 142);
  --dark-blue: #0a1f44;
  --coral: #e85d4c;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #0a1f44 rgb(255 255 255 / 42%);
  overflow-x: hidden;
}

/* Webkit scrollbar (Chrome, Safari, Edge) */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: rgb(255 255 255 / 42%);
}

::-webkit-scrollbar-thumb {
  background: #0a1f44;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #0d2a5c;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

body.popup-open {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

.page-id-1915 a:hover,
.page-id-1913 a:hover,
.page-id-1917 a:hover {
  color: inherit;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 16px;
}

.page-id-1915 #header,
.page-id-1915 .footer-full,
.page-id-1915 .float-container-btns,
.page-id-1915 #scroll-top,
.page-id-1915 #myservice,
.page-id-1915 #mymenu,
.page-id-1913 #header,
.page-id-1913 .footer-full,
.page-id-1913 .float-container-btns,
.page-id-1913 #scroll-top,
.page-id-1913 #myservice,
.page-id-1913 #mymenu,
.page-id-1917 #header,
.page-id-1917 .footer-full,
.page-id-1917 .float-container-btns,
.page-id-1917 #scroll-top,
.page-id-1917 #myservice,
.page-id-1917 #mymenu {
  display: none !important;
}

/* Header */
.header {
  background: var(--bg);
  padding: 16px 0;
  position: relative;
  z-index: 1000;
  border-bottom: 1px solid #eee;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.header.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  animation: slideDown 0.3s ease;
}

.header-placeholder {
  display: none;
}

.header-placeholder.active {
  display: block;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

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

.logo img {
  height: 34px;
  width: auto;
  vertical-align: middle;
}

.header-right {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-self: flex-end;
}

.header-right .btn {
  padding: 12px 22px;
  font-size: 16px;
}

.header-right .btn:hover {
  transform: none !important;
}

/* Header Phone Styling */
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  text-decoration: none;
  color: var(--dark-blue);
  font-weight: 600;
  font-size: 15px;
  transition: color 0.3s ease;
}

.header-phone svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.login-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark-blue);
}

.login-link svg {
  width: 18px;
  height: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--orange);
  color: var(--dark-blue);
}

.btn-primary:hover {
  box-shadow: 0 4px 15px rgba(249, 186, 1, 0.4);
}

.btn-outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.btn-outline:hover {
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.btn-outline-dark {
  background: transparent;
  border: 2px solid var(--dark-blue);
  color: var(--dark-blue);
}

.btn-outline-dark:hover {
  box-shadow: 0 4px 15px rgba(10, 31, 68, 0.2);
}

/* Hero Section */
.hero {
  /* background: var(--dark-blue); */
  background-image: url("https://verax-firmenkredit.de/wp-content/uploads/2026/01/Telefon-Support-1.webp");
  /* background-image: url("https://cdn.prod.website-files.com/62e9302315b6e0c45f706ad7/687687d097a1f2edafc52aed_image%20(4)-min-p-2000.webp"); */
  background-size: 50%;
  background-position: bottom right;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  min-height: 520px;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--dark-blue) 60%, #0a1f44a2 100%);
  z-index: -1;
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
  z-index: 2;
  min-height: 520px;
}

.hero-content {
  flex: 1;
  max-width: 660px;
  color: #fff;
}

.hero-title {
  color: #ffffff;
  font-size: 46px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero-subtitle {
  color: #ffffff;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 28px;
  opacity: 0.9;
  max-width: 610px;
}

.highlight {
  color: var(--orange);
}

.hero-features {
  list-style: none;
  margin-bottom: 32px;
}

.hero-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 18px;
}

.hero-features li::before {
  content: "";
  width: 20px;
  height: 20px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230a1f44'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
}

/* Hero Button Modern Glow Animation */
.hero-buttons .btn {
  position: relative;
  z-index: 1;
  font-size: 18px;
  transition: all 0.3s ease-in-out;
  animation: buttonBreath 3s ease-in-out infinite;
  box-shadow:
    0 0 20px rgba(249, 186, 1, 0.4),
    0 0 40px rgba(249, 186, 1, 0.2),
    0 0 60px rgba(249, 186, 1, 0.1);
}

.hero-buttons .btn::before,
.hero-buttons .btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  transform: translate(-50%, -50%);
  z-index: -1;
  pointer-events: none;
}

/* Inner glow ring */
.hero-buttons .btn::before {
  background: linear-gradient(
    135deg,
    rgba(249, 186, 1, 0.8),
    rgba(255, 215, 0, 0.6)
  );
  filter: blur(8px);
  animation: glowPulse1 2s ease-in-out infinite;
}

/* Outer glow ring */
.hero-buttons .btn::after {
  background: linear-gradient(
    135deg,
    rgba(249, 186, 1, 0.5),
    rgba(255, 165, 0, 0.3)
  );
  filter: blur(20px);
  animation: glowPulse2 2s ease-in-out infinite 0.3s;
}

/* Subtle breathing scale effect */
@keyframes buttonBreath {
  0%,
  100% {
    transform: scale(1);
    box-shadow:
      0 0 20px rgba(249, 186, 1, 0.4),
      0 0 40px rgba(249, 186, 1, 0.2),
      0 0 60px rgba(249, 186, 1, 0.1);
  }

  50% {
    transform: scale(1.02);
    box-shadow:
      0 0 30px rgba(249, 186, 1, 0.6),
      0 0 60px rgba(249, 186, 1, 0.3),
      0 0 90px rgba(249, 186, 1, 0.15);
  }
}

/* Inner ring pulse */
@keyframes glowPulse1 {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.15);
    opacity: 0.4;
  }
}

/* Outer ring pulse - delayed for wave effect */
@keyframes glowPulse2 {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.5;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.4);
    opacity: 0.15;
  }
}

/* Hover enhancement */
.hero-buttons .btn:hover {
  animation: none;
  color: var(--dark-blue) !important;
  transition: all 0.3s ease-in-out;
  transform: scale(1.02);
  box-shadow:
    0 0 40px rgba(249, 186, 1, 0.7),
    0 0 80px rgba(249, 186, 1, 0.4),
    0 0 120px rgba(249, 186, 1, 0.2);
}

.hero-buttons .btn:hover::before,
.hero-buttons .btn:hover::after {
  animation-play-state: paused;
  opacity: 0.8;
  transform: translate(-50%, -50%) scale(1.2);
}

/* Hero Badges - Right Side */
.hero-badges {
  position: absolute;
  right: 50%;
  bottom: 40px;
  transform: translateX(100%);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  z-index: 3;
}

.trustpilot-badge {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.trustpilot-stars {
  display: flex;
  gap: 2px;
}

.trustpilot-stars span {
  width: 18px;
  height: 18px;
  background: #00b67a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.trustpilot-stars span svg {
  width: 12px;
  height: 12px;
  fill: #fff;
}

.trust-logos {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 10px 12px;
  border-radius: 14px;
  background-color: #ffffff;
  border: 2px solid #08172b54;
  box-shadow: 0 4px 25px #00000075;
}

.trust-logos a {
  display: flex;
  align-items: center;
  cursor: auto;
  transition: all 0.3s ease-in-out;
}

#scufa-popup {
  cursor: pointer;
}

#scufa-popup:hover {
  transform: scale(1.05);
}

.trust-logos img {
  height: 75px;
  width: auto;
  object-fit: contain;
}

/* USP/Features Section */
.features-section {
  /* background: var(--bg-gray); */
  padding: 60px 0;
}

.features-box {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.features-header {
  padding: 30px 0 20px;
}

.features-header h2 {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  color: var(--dark-blue);
}

.features-content {
  padding: 40px 30px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.feature-card {
  text-align: center;
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 55px;
  height: 55px;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark-blue);
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 16px;
  color: #444444;
  line-height: 1.6;
}

.features-cta {
  text-align: center;
}

.contact-info .btn {
  margin: 0 0 0.9rem;
}

.features-cta .btn,
.contact-info .btn {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .features-cta .btn {
    width: 35%;
  }
  .contact-info .btn {
    width: 70%;
  }
}

/* How it Works Section */
.how-it-works {
  padding: 80px 0;
  background: var(--bg);
}

.how-it-works > .container > h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 50px;
}

.how-it-works > .container > h2 .highlight {
  color: var(--orange);
}

.how-it-works-content {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.how-it-works-image {
  flex: 1;
  max-width: 480px;
  height: 100%;
  border-radius: 16px;
  position: relative;
  min-height: 380px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.how-it-works-image img {
  width: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.how-it-works-image img.active {
  opacity: 1;
}

.how-it-works-steps {
  flex: 1;
  position: relative;
}

/* Vertical connecting line */
.steps-container {
  position: relative;
}

.steps-container::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 20px;
  bottom: 61px;
  width: 4px;
  background: var(--orange-faded);
  border-radius: 2px;
}

.step {
  display: flex;
  gap: 20px;
  margin-bottom: 32px;
  position: relative;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.step:hover .step-content h3 {
  color: var(--dark-blue);
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--orange-faded);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-blue);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  transition:
    background 0.3s ease,
    color 0.3s ease;
}

.step.active .step-number {
  background: var(--orange);
  color: var(--dark-blue);
}

.step.active .step-content h3 {
  color: var(--dark-blue);
}

.step-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: #0a1f44a8;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.step-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.how-it-works-cta {
  margin-top: 20px;
  margin-left: 60px;
}

/* trust section  */

.trust-section {
  padding: 60px 0px;
  background: var(--bg-gray);
}

.trust-section .container > h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 40px;
}

.trust-stats-list {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  list-style: none;
  gap: 60px;
}

.trust-stats-list li {
  display: flex;
  align-items: center;
  flex-direction: column;
  font-size: 16px;
  color: var(--text);
  position: relative;
  padding-right: 60px;
  gap: 0px;
}

.trust-stats-list .stat-number {
  font-size: 26px;
  font-weight: 700;
  color: var(--dark-blue);
}

.trust-rating-text {
  font-size: 12px;
}

.trust-stats-list li .trustpilot-badge {
  margin-bottom: 4px;
}

.trust-stats-list li::after {
  content: "";
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 85px;
  background-color: var(--orange-faded);
}

.trust-stats-list li:last-child::after {
  display: none !important;
}

.trust-logos-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.trust-logos-row img {
  height: 45px;
  width: auto;
}

@media (max-width: 767px) {
  .trust-stats-list .stat-number {
    font-size: 24px;
  }
  .trust-stats-list {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 14px;
    gap: 20px;
  }
  .trust-stats-list li {
    width: 100%;
    font-size: 14px;
    padding-right: 0px !important;
    padding-bottom: 24px;
    align-items: center;
  }
  .trust-logos-row img {
    height: 40px;
  }
  .trust-stats-list li::after {
    content: "";
    position: absolute;
    top: 100%;
    left: auto;
    right: auto;
    width: 32%;
    height: 2px;
    background-color: var(--orange-faded);
  }
}

@media (max-width: 1024px) {
  .trust-section {
    padding: 40px 0px;
  }
  .trust-section .container > h2 {
    font-size: 26px;
  }
  .trust-stats-list {
    align-items: center;
    margin-bottom: 20px;
    gap: 20px;
  }
  .trust-stats-list li {
    padding-right: 30px;
  }
}

/* Comparison Table Section */
.comparison-section {
  padding: 60px 0 70px;
  background: var(--bg-gray);
  border-bottom: 1px solid #00000017;
}

.comparison-section .container > h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 40px;
}

.comparison-table {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.comparison-header,
.comparison-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1.2fr;
  gap: 0;
}

.comparison-header {
  background: var(--dark-blue);
}

.comparison-header .comparison-col {
  padding: 20px 16px;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
}

.comparison-header .comparison-col.verax {
  background: var(--orange);
  color: var(--dark-blue);
}

.comparison-row {
  border-bottom: 1px solid #eee;
}

.comparison-row:last-child {
  border-bottom: none;
}

.comparison-row .comparison-col {
  padding: 18px 16px;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.comparison-row .comparison-col.feature {
  background: #f8f9fa;
  font-weight: 600;
  color: var(--dark-blue);
  justify-content: flex-start;
  text-align: left;
}

.comparison-row .comparison-col.traditional {
  color: #666;
}

.comparison-row .comparison-col.verax {
  color: var(--dark-blue);
  font-weight: 500;
}

.comparison-row .comparison-col.highlight-cell {
  background: rgba(249, 186, 1, 0.1);
  color: var(--dark-blue);
  font-weight: 600;
}

@media (max-width: 768px) {
  .comparison-section {
    padding: 40px 0 55px;
  }

  .comparison-section .container > h2 {
    font-size: 26px;
    margin-bottom: 30px;
  }

  .comparison-header {
    display: none;
  }

  .comparison-row {
    grid-template-columns: 1fr;
    margin-bottom: 16px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #eee;
  }

  .comparison-row:last-child {
    margin-bottom: 0;
  }

  .comparison-row .comparison-col.feature {
    justify-content: center;
    text-align: center;
    background: var(--dark-blue);
    color: #fff;
    padding: 12px 16px;
    font-size: 14px;
  }

  .comparison-row .comparison-col.traditional,
  .comparison-row .comparison-col.verax {
    padding: 14px 16px;
    flex-direction: column;
    gap: 4px;
  }

  .comparison-row .comparison-col.traditional::before {
    content: "Traditioneller Bankkredit:";
    font-weight: 600;
    color: #999;
    font-size: 12px;
    display: block;
  }

  .comparison-row .comparison-col.verax::before {
    content: "VERAX Online-Kredit:";
    font-weight: 600;
    font-size: 12px;
    display: block;
    color: var(--orange);
  }
}

/* Finanzierungsmodelle Section */
.finanzierungsmodelle-section {
  padding: 80px 0 10px;
  background: var(--bg-gray);
}

.finanzierungsmodelle-box {
  background: #fff;
  border-radius: 20px;
  padding: 50px;
  /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); */
}

.finanzierungsmodelle-header {
  text-align: center;
  margin-bottom: 40px;
}

.finanzierungsmodelle-header h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--dark-blue);
  line-height: 1.3;
}

.finanzierungsmodelle-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.finanzierungsmodell-card {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: var(--bg-gray);
  border-radius: 16px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.finanzierungsmodell-card:hover {
  border-color: var(--orange);
  background: rgba(249, 186, 1, 0.05);
}

.finanzierungsmodell-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--dark-blue);
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
}

.finanzierungsmodell-card:hover .finanzierungsmodell-number {
  background: var(--orange);
}

.finanzierungsmodell-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 8px;
}

.finanzierungsmodell-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.finanzierungsmodelle-cta {
  text-align: center;
  margin-top: 40px;
}

@media (max-width: 1024px) {
  .finanzierungsmodelle-box {
    padding: 40px 30px;
  }
}

@media (max-width: 768px) {
  .finanzierungsmodelle-section {
    padding: 60px 0 0;
  }

  .finanzierungsmodelle-box {
    padding: 30px 20px;
  }

  .finanzierungsmodelle-header h2 {
    font-size: 26px;
  }

  .finanzierungsmodelle-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .finanzierungsmodell-card {
    padding: 20px;
    gap: 16px;
  }

  .finanzierungsmodell-number {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .finanzierungsmodell-content h3 {
    font-size: 16px;
  }

  .finanzierungsmodell-content p {
    font-size: 13px;
  }
}

/* FAQ Section */
.faq-section-jetzt {
  padding: 80px 0;
  background: var(--bg);
}

.faq-section-jetzt h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 50px;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 16px;
  border: 1px solid #f9ba014f;
  /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); */
  overflow: hidden;
}

.faq-item.active {
  border: 1px solid var(--orange);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark-blue);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: inherit;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: rgba(249, 186, 1, 0.1);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}

/* Contact Section */
.contact-section {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.contact-content {
  display: flex;
  gap: 0px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.contact-image {
  flex: 1;
  max-width: 46%;
  text-align: right;
}

.contact-image img {
  width: 90%;
}

.contact-section .circle {
  position: absolute;
  top: 25%;
  right: -9rem;
  transform: translateY(-50%);
}

.contact-info {
  flex: 1;
  text-align: center;
}

.contact-info h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 24px;
  line-height: 1.3;
}

.contact-methods {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 25px;
  margin: 30px 0 20px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-method svg {
  width: 20px;
  height: 20px;
  fill: var(--orange);
}

.contact-method a,
.contact-method span {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-blue);
}

.contact-text {
  font-size: 16px;
  margin-bottom: 8px;
  line-height: 1.6;
}

.contact-text.contact-hours {
  margin-bottom: 22px;
}

.contact-small-text {
  font-size: 12px;
  margin: 0;
}

/* Schufa Popup Modal */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.popup-overlay.active {
  display: flex;
}

.popup-modal {
  background: #fff;
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: popupSlideIn 0.3s ease;
}

@keyframes popupSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  border-bottom: 1px solid #eee;
}

.popup-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark-blue);
  margin: 0;
}

.popup-close {
  background: none;
  border: none;
  font-size: 28px;
  color: #666;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: color 0.3s ease;
}

.popup-close:hover {
  color: var(--dark-blue);
}

.popup-content {
  padding: 24px;
  display: flex;
  gap: 24px;
}

.popup-badge {
  flex-shrink: 0;
}

.popup-badge img {
  width: 100px;
  height: auto;
}

.popup-text {
  flex: 1;
}

.popup-text p {
  font-size: 14px;
  color: #333;
  line-height: 1.7;
  margin-bottom: 16px;
}

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

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

.popup-text strong {
  color: var(--dark-blue);
}

@media (max-width: 576px) {
  .popup-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .popup-badge img {
    width: 80px;
  }
}

/* Form Section */
.form-section {
  padding: 80px 0;
  background: var(--bg);
}

.form-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  background-color: var(--bg-gray);
  border-radius: 16px;
  padding: 50px 40px;
}

.form-content {
  text-align: center;
  margin-bottom: 40px;
}

.form-content h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 16px;
  line-height: 1.3;
}

.form-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 0;
}

.form-container {
  width: 100%;
}

.form-wrapper .footer-trust-elements {
  padding: 0;
  border-top: none;
}

.form-wrapper .footer-trust-item {
  color: var(--dark-blue);
}

.form-wrapper .footer-trust-item svg {
  fill: var(--orange);
}

.credit-form {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-blue);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e5e5e5;
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
  background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(249, 186, 1, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aaa;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23666'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px;
  padding-right: 40px;
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.form-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: var(--orange);
}

.form-checkbox label {
  font-size: 13px;
  font-weight: 400;
  color: #666;
  line-height: 1.5;
  cursor: pointer;
}

.form-checkbox label a {
  color: var(--dark-blue);
  text-decoration: underline;
}

.form-checkbox label a:hover {
  color: var(--orange);
}

.btn-full {
  width: 100%;
  margin-top: 10px;
}

/* Form Section Responsive */
@media (max-width: 1024px) {
  .form-section {
    padding: 60px 0;
  }
  .form-wrapper {
    gap: 30px;
    padding: 40px 30px;
  }
  .form-content h2 {
    font-size: 28px;
  }
  .form-container {
    max-width: 100%;
  }
  .credit-form {
    padding: 30px;
  }
}

@media (max-width: 576px) {
  .form-section {
    padding: 40px 0;
  }
  .form-wrapper {
    padding: 30px 20px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .credit-form {
    padding: 24px;
  }
  .form-content h2 {
    font-size: 26px;
  }
  .form-content p {
    font-size: 14px;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px 14px;
    font-size: 14px;
  }
  .form-wrapper .footer-trust-elements {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
  .footer-trust-item {
    width: 100%;
  }
}

/* Footer */
.footer {
  background: #304674;
  color: #fff;
}

.footer .container.footer-upper {
  padding: 4rem 16px;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.footer-logo img {
  height: 70px;
  width: auto;
}

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

.footer-nav a {
  color: #fff;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--orange);
}

.footer-badges {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 40px;
}

.footer-badge {
  display: flex;
  align-items: center;
  cursor: auto;
  transition: opacity 0.3s ease;
}

/* .footer-badge:hover {
  opacity: 0.8;
} */

.footer-badge img {
  height: 75px;
  width: auto;
}

.footer-badge:first-child img {
  height: 40px;
}

.footer-trust-elements {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 20px 0;
  flex-wrap: wrap;
}

.footer-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-trust-item svg {
  width: 16px;
  height: 16px;
  fill: var(--orange);
}

.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}

.footer-social a:hover {
  transform: translateY(-4px);
}

.footer-social img {
  width: auto;
  height: 45px;
}

.footer-legal {
  display: flex;
  gap: 32px;
}

.footer-legal a {
  color: #fff;
  transition: color 0.3s ease;
}

.footer-bottom {
  padding: 28px 0;
  text-align: center;
  border-top: 1px solid #fff;
}

.footer-bottom-content {
  display: flex;
  justify-content: center;
  gap: 30px;
  font-size: 15px;
  color: #fff;
}

.footer-bottom-content a {
  color: #fff;
  transition: color 0.3s ease;
}

.footer-bottom-content a:hover {
  color: var(--orange);
}

.footer-bottom-content .heart {
  color: #ffffff;
}

/* Footer Responsive */
@media (max-width: 1024px) {
  .footer-main {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }
  .footer-nav {
    flex-wrap: wrap;
    gap: 20px 30px;
    justify-content: center;
  }
  .footer-badges {
    justify-content: center;
    flex-wrap: nowrap;
  }
  .footer-bottom-row {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  .footer-legal {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  .footer .container.footer-upper {
    padding: 3rem 16px 1.8rem;
  }
  .footer-logo img {
    height: 50px;
  }
  .footer-social img {
    height: 32px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
  .footer-badges {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 14px;
  }
  .footer-badge img {
    height: 58px;
  }
  .footer-badge:first-child img {
    height: 32px;
  }
  .footer-legal {
    gap: 12px;
    align-items: center;
  }
  .footer-bottom-content {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 380px) {
  .footer-badges {
    gap: 16px;
  }
  .footer-badge img {
    height: 50px;
  }
  .footer-badge:first-child img {
    height: 28px;
  }
}

/* Responsive */
@media (max-width: 1200px) {
  .hero-badges {
    right: 20px;
    transform: none;
  }
  .trust-logos {
    gap: 1rem;
  }
  .trust-logos img {
    height: 65px;
  }
}
@media (min-width: 1025px) and (max-width: 1200px) {
  .hero {
    background-size: 64%;
    background-position: right bottom;
    min-height: auto;
  }
}

@media (max-width: 1024px) {
  .hero {
    background-image: none !important;
    min-height: auto;
  }
  .hero::before {
    width: 100%;
    background: linear-gradient(
      180deg,
      rgba(10, 31, 68, 0.92) 0%,
      rgba(10, 31, 68, 0.85) 100%
    );
  }
  .hero .container {
    flex-direction: column;
    text-align: center;
    min-height: auto;
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .hero-content {
    max-width: 100%;
    text-align: left;
  }
  .hero-title {
    font-size: 36px;
  }
  .hero-features li {
    font-size: 16px;
  }
  .hero-buttons {
    flex-wrap: wrap;
  }
  .hero-badges {
    position: relative;
    left: 0;
    bottom: auto;
    transform: none;
    align-items: flex-start;
    margin: 0 15px 2rem;
    width: 96%;
  }
  .trust-logos {
    background-color: #ffffff;
    /* background: transparent !important; */
    justify-content: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
    width: fit-content;
    border: 2px solid var(--orange);
  }
  .trust-logos img {
    height: 80px;
  }
  .features-section {
    padding: 40px 0;
  }
  .features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .features-header {
    padding: 20px;
  }
  .features-header h2 {
    font-size: 20px;
  }
  .features-content {
    padding: 30px 20px;
  }
  .how-it-works {
    padding: 50px 0;
  }
  .how-it-works-content {
    flex-direction: column;
    gap: 40px;
  }
  .how-it-works-image {
    max-width: 100%;
    min-height: 250px;
    order: 2;
  }
  .how-it-works-image img {
    position: relative;
    display: none;
  }
  .how-it-works-image img.active {
    display: block;
    opacity: 1;
  }
  .how-it-works-steps {
    order: 1;
  }
  .how-it-works-cta {
    margin-left: 0;
    text-align: center;
  }
  .step-content h3 {
    font-size: 18px;
  }
  .contact-section {
    padding: 40px 0;
  }
  .contact-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  .contact-image {
    max-width: 300px;
    margin: 0 auto;
  }
  .contact-section .circle {
    display: none;
  }
  .contact-methods {
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
  }
  .contact-method {
    flex: 0 0 auto;
  }
  .contact-info h2 {
    font-size: 26px;
  }
  .header-right {
    gap: 12px;
  }
  .btn {
    padding: 12px 20px;
    font-size: 15px;
  }
  .header-right .btn {
    padding: 10px 16px;
    font-size: 14px;
  }
  .faq-section-jetzt {
    padding: 50px 0;
  }
  .faq-section-jetzt h2 {
    font-size: 26px;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .logo img {
    height: 28px;
  }
  .hero-title {
    font-size: 30px;
  }
  .how-it-works > .container > h2,
  .faq-section-jetzt h2 {
    font-size: 26px;
    margin-bottom: 45px;
  }
  .steps-container::before {
    left: 16px;
    bottom: 90px;
  }
  .step {
    margin-bottom: 24px;
  }
  .step-number {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
  .trust-logos {
    gap: 1.2rem;
    padding: 8px 12px;
  }
  .trustpilot-badge {
    padding: 6px 10px;
  }
  .trust-section .trustpilot-badge {
    align-items: center;
  }
  .faq-question {
    font-size: 16px;
    padding: 18px 20px;
  }
  .contact-image {
    text-align: center;
  }

  .contact-image img {
    width: 100%;
  }
  .hero-features {
    margin-bottom: 40px;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 16px;
  }
  .hero-title {
    font-size: 26px;
  }
  .hero-subtitle {
    font-size: 15px;
  }
  .hero-features li {
    font-size: 14px;
  }
  .hero .container {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .header-right {
    gap: 8px;
  }
  .header-right .header-phone {
    display: none !important;
  }
  .login-link span {
    display: none;
  }
  .btn-outline-dark {
    display: none;
  }
  .header-right .btn {
    padding: 8px 14px;
    font-size: 14px;
  }
  .trust-logos img {
    height: 60px;
  }
  .features-header h2 {
    text-align: center;
  }
  .feature-card h3 {
    font-size: 16px;
  }
  .feature-card p {
    font-size: 14px;
  }
  .contact-text {
    font-size: 14px;
  }
  .contact-methods {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .contact-method {
    justify-content: center;
  }
  .faq-question {
    padding: 16px;
  }
  .faq-answer p {
    padding: 0 16px 16px;
    font-size: 14px;
  }
}

@media (max-width: 400px) {
  .hero-title {
    font-size: 22px;
  }
  .btn {
    padding: 10px 16px;
    font-size: 14px;
  }
  .trust-logos {
    gap: 0.8rem !important;
  }
  .trustpilot-stars svg {
    height: 20px !important;
  }
}

@media screen and (min-width: 1025px) {
  .feature-card p {
    width: 90%;
    margin: 0 auto;
  }
}

/* Go to Top Button */
.go-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--orange);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(249, 186, 1, 0.4);
}

.go-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.go-to-top:hover {
  box-shadow: 0 6px 20px rgba(249, 186, 1, 0.6);
  transform: translateY(-3px);
}

.go-to-top svg {
  width: 24px;
  height: 24px;
  color: var(--dark-blue);
}

@media (max-width: 768px) {
  .go-to-top {
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
  }
  .go-to-top svg {
    width: 20px;
    height: 20px;
  }
}

/* -------------------------form styling -----------------------------*/

/* Base Font & Background */
#wpforms-form-725 label {
  font-weight: 500;
  color: #374151;
  margin-bottom: 6px;
  display: block;
}
#wpforms-form-725 .wpforms-image-choices label {
  background-color: #ffffff;
}
#wpforms-form-725 {
  /* background-color: #f9fafb;*/
  padding: 0;
  /* border-radius: 16px;
   box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 
                0 10px 10px -5px rgba(0, 0, 0, 0.04); */
}

/* Headings */
#wpforms-form-725 h2,
#wpforms-form-725 h3 {
  color: #08355d;
  font-weight: 700;
  margin-bottom: 12px;
}

/* Labels */
#wpforms-form-725 label {
  font-weight: 500;
  color: #374151;
  margin-bottom: 6px;
  display: block;
}

/* Input Fields */
#wpforms-form-725 input[type="text"],
#wpforms-form-725 input[type="email"],
#wpforms-form-725 input[type="tel"],
#wpforms-form-725 input[type="number"],
#wpforms-form-725 select,
#wpforms-form-725 textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #d1d5db;
  border-radius: 20px;
  font-size: 16px;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}
.wpforms-uploader {
  border-radius: 20px !important;
  border: 0.8px solid #83807f !important;
}
#wpforms-form-725 input:focus,
#wpforms-form-725 select:focus,
#wpforms-form-725 textarea:focus {
  border-color: #08355d;
  box-shadow: 0 0 0 2px rgba(8, 53, 93, 0.1);
  outline: none;
}

/* Buttons */

#wpforms-form-725 .wpforms-page-next {
  background-color: #08355d;
  color: white;
  font-weight: 600;
  font-size: 18px;
  padding: 14px;
  border-radius: 20px;
  border: none;
  transition: background-color 0.3s ease;
  cursor: pointer;
  width: 48%;
  height: 60px !important;
}

#wpforms-form-725 .wpforms-page-next:hover {
  background-color: #f8bf32;
}

#wpforms-form-725 .wpforms-page-prev {
  background-color: transparent !important;
  color: #08355d !important;
  font-weight: 600;
  font-size: 18px;
  padding: 14px;
  border-radius: 20px;
  border: 2px solid #08355d;
  transition: background-color 0.3s ease;
  cursor: pointer;
  width: 48%;
  height: 60px !important;
}

#wpforms-form-725 .wpforms-page-prev:hover {
  background-color: #08355d !important;
  color: #fff !important;
}

@media only screen and (max-width: 576px) and (min-width: 0px) {
  #wpforms-form-725 .wpforms-page-prev {
    width: 100%;
  }
  #wpforms-form-725 .wpforms-page-next {
    width: 100%;
    margin-top: 15px;
  }
  #wpforms-form-725 .wpforms-submit {
    width: 100% !important;
    margin-top: 0px !important;
  }
  #wpforms-form-725 .wpforms-page-prev,
  #wpforms-form-725 .wpforms-page-next {
    font-size: 14px !important;
  }
}

#wpforms-form-725 .form-first-btn > div > .wpforms-page-next {
  width: 100% !important;
}
#wpforms-form-725 .wpforms-submit {
  background-color: #08355d;
  color: white;
  font-weight: 600;
  font-size: 18px;
  padding: 14px;
  border-radius: 20px;
  border: none;
  transition: background-color 0.3s ease;
  cursor: pointer;
  width: 48%;
  float: right;
  height: 60px !important;
  margin-top: -78px;
}

#wpforms-form-725 .wpforms-submit:hover {
  background-color: #0a4a7a;
}
#wpforms-725-field_44_1 {
  height: auto !important;
}
#wpforms-725-field_44_2 {
  height: auto !important;
}
/* File Upload Area */
#wpforms-form-725 .file-upload-area {
  border: 2px dashed #d1d5db;
  padding: 20px;
  text-align: center;
  border-radius: 20px;
  background-color: #fff;
  transition: all 0.3s ease;
}

#wpforms-form-725 .file-upload-area:hover {
  border-color: #08355d;
  background-color: #f8fafc;
}

/* Progress Steps (if using a page-break multi-step form) */
#wpforms-form-725 .wpforms-page-indicator {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

#wpforms-form-725 .wpforms-page-indicator-steps li {
  width: 40px;
  height: 40px;
  background-color: #d1d5db;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #fff;
  transition: all 0.3s ease;
}

#wpforms-form-725
  .wpforms-page-indicator-steps
  li.wpforms-page-indicator-active {
  background-color: #08355d;
}

#wpforms-form-725
  .wpforms-page-indicator-steps
  li.wpforms-page-indicator-completed {
  background-color: #10b981;
}

#wpforms-form-725 .wpforms-page-indicator {
  flex-direction: column !important;
}

.loan-form {
  margin: auto;
}

.loan-title {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #08345b;
}

.loan-slider input[type="range"] {
  width: 100% !important;
  height: 8px !important;
  border-radius: 5px;
  appearance: none;
  outline: none;
  margin-bottom: 10px;
}

.loan-display {
  font-weight: bold;
  text-align: center;
  color: #08345b;
  font-size: 28px !important;
}

.loan-range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: #666;
  margin-top: -17px !important;
}

input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 20px;
  height: 20px;
  background: #08345b;
  border-radius: 50%;
  cursor: pointer;
  border: none;
}

input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: #08345b;
  border-radius: 50%;
  cursor: pointer;
  border: none;
}
.kontakt-form-nw ul .wpforms-image-choices-item label {
  min-width: 150px;
  width: 100%;
  background-color: #fff !important;
  height: 100%;
  padding: 15px 10px !important;
  border-radius: 20px !important;
  border: 3px solid #e5e7eb !important;
}

.kontakt-form-nw span.wpforms-image-choices-label {
  line-height: 26px;
}

.kontakt-form-nw #wpforms-725-field_7 {
  width: 100% !important;
  justify-content: space-between;
}

.kontakt-form-nw #wpforms-725-field_7 li {
  width: 48% !important;
}

.kontakt-form-nw #wpforms-725-field_8 {
  width: 100% !important;
}

.kontakt-form-nw #wpforms-725-field_8 li {
  width: 23% !important;
}

.kontakt-form-nw
  #wpforms-725-field_8
  li
  .wpforms-image-choices-label:first-letter {
  font-size: 23px;
  line-height: 20px;
}
.kontakt-form-nw .wpforms-image-choices-image img {
  width: 65px !important;
  height: 65px !important;
}

.kontakt-form-nw
  #wpforms-725-field_8
  .choice-1
  .wpforms-image-choices-label:first-letter {
  color: #22c55e !important;
}
.kontakt-form-nw
  #wpforms-725-field_8
  .choice-2
  .wpforms-image-choices-label:first-letter {
  color: #2563eb !important;
}
.kontakt-form-nw
  #wpforms-725-field_8
  .choice-3
  .wpforms-image-choices-label:first-letter {
  color: #ca8a04 !important;
}
.kontakt-form-nw
  #wpforms-725-field_8
  .choice-4
  .wpforms-image-choices-label:first-letter {
  color: #dc2626 !important;
}
.kontakt-form-nw
  div.wpforms-container-full
  .wpforms-form
  .wpforms-image-choices-modern
  .wpforms-image-choices-item.wpforms-selected
  .wpforms-image-choices-image:after,
.kontakt-form-nw
  div.wpforms-container-full
  .wpforms-form
  .wpforms-image-choices-modern
  .wpforms-image-choices-item:has(input:checked)
  .wpforms-image-choices-image:after {
  background-color: #08345b;
}

@media screen and (max-width: 508px) {
  .kontakt-form-nw #wpforms-725-field_7 li {
    width: 100% !important;
  }
}
@media screen and (min-width: 509px) and (max-width: 925px) {
  .kontakt-form-nw #wpforms-725-field_7 li {
    width: 46% !important;
  }
}
