/* ===== Grundfarben ===== */
:root {
  --primary: #1f3a5f; /* Dunkelblau */
  --secondary: #2b2b2b; /* Anthrazit */
  --light: #f5f6f8; /* Hellgrau */
  --text: #1c1c1c;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background-color: #ffffff;
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
} /* ===== Layout ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
} /* ===== Header ===== */
.header {
  background: #0c111c;
  padding: 15px 20px;
}
.header .container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  height: 88px;
}
.phone {
  color: #ffffff;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: bold;
} /* ===== Hero ===== */
.hero {
  background: linear-gradient(rgba(17, 24, 39, 0.9), rgba(17, 24, 39, 0.9));
  color: #ffffff;
  padding: 120px 20px;
  text-align: center;
}
.hero-content {
  max-width: 700px;
  margin: auto;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 35px;
}
.cta {
  display: inline-block;
  background: #0b3c5d;
  color: #ffffff;
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 18px;
}
.cta:hover {
  background: #092f49;
} /* ===== Sections ===== */
section {
  padding: 60px 0;
}
section h3 {
  font-size: 28px;
  margin-bottom: 30px;
  color: var(--primary);
} /* ===== Leistungen ===== */
.services {
  background: #f3f4f6;
  padding: 80px 20px;
}
.services h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 50px;
  color: #111827;
}
.service-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}
.service-box {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border-left: 5px solid #0b3c5d;
}
.service-box h3 {
  margin-bottom: 15px;
  color: #0b3c5d;
}
.service-box p {
  color: #374151;
  line-height: 1.6;
} /* ===== Vorteile ===== */
.why-us {
  background: #ffffff;
  padding: 80px 20px;
}
.why-us h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 50px;
  color: #111827;
}
.why-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}
.why-box {
  padding: 25px;
  border-radius: 10px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
}
.why-box h3 {
  margin-bottom: 12px;
  color: #0b3c5d;
}
.why-box p {
  color: #374151;
  line-height: 1.6;
} /* ===== Preise ===== */
.prices {
  background-color: #f3f4f6;
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
  margin-bottom: 20px;
}
.price-box {
  background: #f3f4f6;
  padding: 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.price-box h4 {
  margin-bottom: 10px;
  color: var(--primary);
}
.price-box p {
  font-weight: bold;
  color: #111827;
} /* ===== Contact ===== */
.contact {
  background: #111827;
  padding: 80px 20px;
  color: #ffffff;
}
.contact h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 50px;
}
.contact-grid {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: none;
  font-size: 1rem;
}
.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}
.contact-dp {
  text-decoration: underline;
  margin:5px;
}
.checkbox {
  height: 45px;
  display: flex;
  font-size: 0.9rem;
  margin-bottom: 40px;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.checkbox-contact {
  width: 20px !important;
  margin-right: 10px;
  margin-bottom: 0px !important;
}
.contact-form button {
  background: #0b3c5d;
  color: #ffffff;
  border: none;
  padding: 15px;
  width: 100%;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
}
.contact-form button:hover {
  background: #092f49;
}
.contact-info h3 {
  margin-bottom: 20px;
  color: #9ca3af;
}
.contact-info a {
  color: #ffffff;
  text-decoration: none;
}
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
} /* ===== Footer ===== */
footer {
  background-color: #111111;
  color: #aaaaaa;
  padding: 20px 0;
  font-size: 14px;
}
footer p {
  text-align: center;
} /* ===== Responsive ===== */
@media (max-width: 600px) {
  .hero h2 {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  body {
    font-size: 16px;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.8rem;
  }
  p {
    font-size: 1rem;
  }
}
@media (max-width: 768px) {
  .header .container {
    flex-direction: column;
    gap: 15px;
  }
  .phone {
    font-size: 1.2rem;
  }
  .cta {
    width: 100%;
    padding: 18px;
  }
}
@media (max-width: 768px) {
  .service-box,
  .why-box {
    padding: 25px;
  }
}
@media (max-width: 768px) {
  .contact-form input,
  .contact-form textarea,
  .contact-form button {
    font-size: 1.05rem;
  }
  .contact-info {
    text-align: center;
  }
}
