        body {
            font-family: 'Montserrat', Arial, sans-serif;
            background: #f7f8fa;
            color: #222;
            margin: 0;
            padding: 0;
        }
header {
    background: #003F6B;
    color: #fff;
    padding: 32px 0 24px 0;
    text-align: center;
    letter-spacing: 2px;
}

.header-row {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.logo-link {
    display: inline-block;
}

.logo-img {
    height: 80px; /* Hier die Größe anpassen */
    width: auto;
    display: block;
}

.logo-text {
    font-weight: 700;
    font-size: 2.2rem;
    letter-spacing: 1px;
    margin-left: 18px; /* Abstand zwischen Logo und Text */
    vertical-align: middle;
    font-family: 'Montserrat', Arial, sans-serif;
    color: #fff;
}

        .logo {
            font-weight: 700;
            font-size: 2.2rem;
            letter-spacing: 1px;
        }
        .subtitle {
            font-size: 1.25rem;
            margin-top: 8px;
            font-weight: 400;
            letter-spacing: 0.5px;
        }
        nav {
            margin-top: 16px;
        }
        nav a {
            color: #fff;
            margin: 0 18px;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.2s;
        }
        nav a:hover {
            color: #A3D3F7;
        }
        .container {
            max-width: 1140px;
            margin: 40px auto;
            padding: 24px;
            background: #fff;
            border-radius: 16px;
            box-shadow: 0 2px 16px rgba(30, 60, 90, 0.05);
        }


#kostenrechner .section-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  padding: 20px;
}

.calculator-box {
  flex: 1 1 380px;
  border: 2px solid #003F6B;
  border-radius: 12px;
  background: #f0f4f8;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  padding: 24px;
  max-width: 420px;
  font-family: 'Montserrat', Arial, sans-serif;
  text-align: center;
}
.calculator-box .result {
  margin-top: 16px;
  font-size: 16px;
  font-weight: bold;
  color: #C62828; /* kräftiges, professionelles Rot */
}


.text-box {
  flex: 1 1 460px;
  max-width: 600px;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #222;
}

.text-box h2 {
  font-size: 1.4rem;
  color: #003F6B;
  margin-bottom: 12px;
}

.text-box p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 14px;
}

        .features {
            display: flex;
            flex-wrap: wrap;
            gap: 28px;
            justify-content: space-between;
            margin-top: 24px;
        }
        .feature {
            flex: 1 1 260px;
            background: #f0f4f8;
            padding: 24px;
            border-radius: 10px;
            min-width: 220px;
            box-shadow: 0 1px 4px rgba(0,0,0,0.03);
            margin-bottom: 12px;
        }
        .feature h3 {
            margin-top: 0;
            font-size: 1.1rem;
            color: #003F6B;
            margin-bottom: 10px;
        }
        .cta {
            text-align: center;
            margin-top: 36px;
        }
        .cta-btn {
            background: #003F6B;
            color: #fff;
            border: none;
            padding: 14px 42px;
            font-size: 1.1rem;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.2s;
        }
        .cta-btn:hover {
            background: #005399;
        }
        footer {
            background: #003F6B;
            color: #fff;
            text-align: center;
            padding: 18px 0 6px 0;
            margin-top: 48px;
            font-size: 0.95rem;
        }
        @media (max-width: 720px) {
            .features {
                flex-direction: column;
            }
            .container {
                padding: 12px;
            }
        }


  #kostenrechner h2 {
    color: #003F6B;
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 16px;
  }

  .section-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    padding: 20px;
  }

  .calculator-box {
    flex: 1 1 380px;
    border: 2px solid #003F6B;
    border-radius: 12px;
    background: #f0f4f8;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    padding: 24px;
    max-width: 420px;
    font-family: 'Montserrat', Arial, sans-serif;
    text-align: center;
  }
.calculator-headline {
  font-size: 1.1rem;
  margin-bottom: 16px;
  color: #003F6B;
  font-weight: 600;
}


  .calculator-box h2 {
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: #003F6B;
  }

  .calculator-box label {
    display: block;
    font-size: 14px;
    margin-bottom: 4px;
    margin-top: 12px;
    color: #222;
  }

  .calculator-box input[type="number"] {
    width: 90px;
    padding: 6px;
    font-size: 13px;
    text-align: center;
    margin-bottom: 10px;
    border: 1px solid #bbb;
    border-radius: 6px;
  }

  .result {
    margin-top: 16px;
    font-size: 16px;
    font-weight: bold;
    color: #003F6B;
  }
.kontakt-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 20px;
}

.callback-form {
  flex: 1 1 380px;
  background: #E6F0FA;
  border: 2px solid #0D629A;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  max-width: 420px;
}
.callback-form input[type="text"],
.callback-form input[type="tel"],
.callback-form input[type="date"],
.callback-form input[type="time"] {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-bottom: 12px;
  box-sizing: border-box;
  background: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
}

.callback-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 14px;
  color: #003F6B;
}

.callback-form button[type="submit"] {
  margin-top: 12px;
  width: 100%;
  padding: 12px;
  background-color: #003F6B;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
}

.callback-form button[type="submit"]:hover {
  background-color: #005399;
}


.kontakt-text {
  flex: 1 1 400px;
  max-width: 560px;
  color: #222;
  font-family: 'Montserrat', Arial, sans-serif;
}

.kontakt-text h3 {
  font-size: 1.3rem;
  color: #003F6B;
  margin-bottom: 12px;
}

.kontakt-text p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 14px;
  
}

.row-highlight {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 20px;
}

.feature-text {
  flex: 1 1 500px;
  min-width: 280px;
}

.feature-image {
  flex: 1 1 300px;
  min-width: 260px;
  text-align: center;
}

.feature-image img {
  max-width: 100%;
  height: auto;
  display: block;
  background-color: transparent;
}



.test-row {
  display: flex;
  flex-direction: row-reverse;
  gap: 40px;
  background: #f0f0f0;
  padding: 20px;
  margin: 40px auto;
  max-width: 900px;
  align-items: center;
}

.test-row .test-text {
  flex: 1;
}

.test-row .test-image {
  flex: 1;
  text-align: center;
}

.test-row img {
  max-width: 100%;
  height: auto;
}




  @media (max-width: 720px) {
    .calculator-box {
      max-width: 100%;
    }
  }


