:root {
    --primary: #013a6b;
    --secondary: #b51212;
    --light: #f4f7fb;
    --dark: #0e2441;
    --text: #2e2e2e;
    --muted: #666;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Top‑Info */
.top-info {
    background: var(--primary);
    color: #fff;
    font-size: 0.9rem;
    padding: 0.4rem 0;
}
.top-info .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-info .contact-links a {
    color: #fff;
    margin-left: 1rem;
    text-decoration: none;
    font-weight: 600;
}

/* Header & Navigation */
header {
    background: #fff;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);

    position: fixed;   /* bleibt oben */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;     /* bleibt über allem */
}
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
}
.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
}
.logo .highlight {
    color: var(--primary);
    font-weight: 700;
}
nav ul {
    list-style: none;
    display: flex;
}
nav ul li {
    margin-left: 1.5rem;
}
nav ul li a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
}
nav ul li a.active,
nav ul li a:hover {
    color: var(--primary);
}
nav ul li a.cta {
    padding: 0.4rem 0.8rem;
    background: var(--secondary);
    color: #fff;
    border-radius: 4px;
}
nav ul li a.cta:hover {
    opacity: 0.85;
}

/* Hero */
.hero {
    position: relative;
    background-size: cover;
    background-position: center top;
    height: 60vh;
    color: #fff;
    display: flex;
    align-items: center;
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero .overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.15);
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}
.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}
.hero p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 0.5rem;
}
.btn-primary {
    background: var(--secondary);
    color: #fff;
}
.btn-primary:hover { opacity: 0.9; }
.btn-secondary {
    background: #fff;
    color: var(--secondary);
}
.btn-secondary:hover { background: #f8f8f8; }

/* Feature‑Reihe */
.features {
    background: var(--light);
    padding: 3rem 0;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}
.feature i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}
.feature h3 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}
.feature p {
    font-size: 0.9rem;
    color: var(--muted);
}

/* Services */
.service {
    padding: 3rem 0;
    color: #fff;
}
.service-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
}
.service-text {
    flex: 1 1 400px;
}
.service-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}
.service-text ul {
    margin: 1rem 0;
}
.service-text ul li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.3rem;
}
.service-text ul {
    list-style: disc;
    padding-left: 20px;
}
.service-image {
    flex: 1 1 300px;
}
.service-image img {
    width: 100%;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* Testimonials */
.testimonials {
    background: var(--light);
    padding: 3rem 0;
    text-align: center;
}
.testimonials h2 { margin-bottom: 2rem; }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}
.testimonial {
    background: #fff;
    padding: 1.5rem;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.testimonial .stars {
    color: #f5a623;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

/* FAQ */
.faq {
    padding: 3rem 0;
}
.faq h2 { text-align: center; margin-bottom: 2rem; }
.faq-item {
    margin-bottom: 1rem;
    border-bottom: 1px solid #eee;
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    font-size: 1rem;
    text-align: left;
    padding: 1rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
}
.faq-question::after {
    content: '+';
    position: absolute;
    right: 1rem;
    font-size: 1.2rem;
}
.faq-question.active::after { content: '-'; }
.faq-answer {
    display: none;
    padding: 0 1rem 1rem 1rem;
    color: var(--muted);
    font-size: 0.9rem;
}

/* Kontakt */
.contact {
    background: var(--light);
    padding: 3rem 0;
}
.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}
.contact-info {
    flex: 1 1 300px;
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p { margin-bottom: 0.8rem; }
.contact-info i {
    color: var(--primary);
    margin-right: 0.5rem;
}
.contact-form {
    flex: 1 1 300px;
    background: #fff;
    padding: 2rem;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.form-group { margin-bottom: 1rem; }
.form-group label {
    display: block;
    margin-bottom: 0.3rem;
    font-weight: 600;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}
.checkbox-group {
    display: flex;
    align-items: center;
}
.checkbox-group input { margin-right: 0.5rem; }

/* Footer */
footer {
    background: var(--dark);
    color: #fff;
    padding: 1.5rem 0;
    font-size: 0.9rem;
}
.footer-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.footer-links a {
    color: #fff;
    margin-right: 1.2rem;
    text-decoration: none;
}
.footer-links a:hover { text-decoration: underline; }

/* HVZ‑Spezifisches */
.process {
    background: var(--light);
    padding: 3rem 0;
    text-align: center;
}
.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}
.step {
    flex: 1 1 200px;
    background: #fff;
    border-radius: 6px;
    padding: 1.5rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.step-icon {
    width: 40px; height: 40px;
    background: var(--primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    font-weight: 700;
}

/* Pakete */
.packages { padding: 3rem 0; }
.package-toggle {
    text-align: center;
    margin-bottom: 2rem;
}
.toggle-btn {
    border: none;
    background: #eee;
    color: var(--primary);
    padding: 0.5rem 1rem;
    margin: 0 0.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
}
.toggle-btn.active {
    background: var(--primary);
    color: #fff;
}
.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}
.package-card {
    background: #fff;
    padding: 2rem;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
}
.package-card .price {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 1rem 0;
    color: var(--secondary);
}
.package-card.hidden { display: none; }

/* HVZ Info */
.hvz-info { background: var(--light); padding: 3rem 0; }
.hvz-info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}
.hvz-info-text { flex: 1 1 300px; }
.hvz-info-images {
    flex: 1 1 300px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 1rem;
}
.hvz-info-images img {
    width: 220px;       /* gleiche Breite */
    height: 150px;      /* gleiche Höhe */
    object-fit: cover;  /* schneidet Bild sauber zu */
    border-radius: 10px; /* optional – sieht nicer aus */
}

.hvz-info-images {
    display: flex;
    gap: 20px; /* DAS ist der Abstand */
}

/* Responsive */
@media (max-width: 768px) {
    .service-grid,
    .contact-grid,
    .order-grid,
    .hvz-info-grid {
        flex-direction: column;
    }
    nav ul li { margin-left: 0.8rem; }
    .hero { height: 50vh; }
}

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
}

/* ===== 3 Schritte Abschnitt ===== */
.steps{
  padding: 60px 0;
  background: #fff;
  text-align: center;
}

.steps h2{
  color: var(--primary);
  font-size: 1.9rem;
  margin-bottom: 6px;
  font-weight: 700;
}

.steps h3{
  color: var(--primary);
  font-size: 1.7rem;
  margin-bottom: 14px;
  font-weight: 700;
}

.steps-intro{
  max-width: 820px;
  margin: 0 auto 40px auto;
  color: var(--muted);
  font-size: 1rem;
}

.steps-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  margin-top: 10px;
}

.step-card{
  padding: 10px 10px 0 10px;
}

.step-icon{
  width: 72px;
  height: 72px;
  margin: 0 auto 18px auto;
  border-radius: 6px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff; /* SVG übernimmt currentColor */
}

.step-card h4{
  color: var(--primary);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-card p{
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
  max-width: 330px;
  margin: 0 auto;
}

.steps-buttons{
  margin-top: 45px;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.btn-outline{
  display: inline-block;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn-outline:hover{
  background: rgba(1, 58, 107, 0.08);
}

/* Mobile */
@media (max-width: 900px){
  .steps-grid{
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .step-card p{
    max-width: 520px;
  }
}
/* Über Uns-Seite */
.about-section {
  padding: 60px 0;
  color: var(--text);
  text-align: center;
}

.team-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-top: 30px;
}

.team-member img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}

.about-section.values ul {
  list-style: disc;
  padding-left: 20px;
  display: inline-block;
  text-align: left;
}
/* About Hero extra anpassen */
.about-hero {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-position: center center;
  height: 400px;
}

/* Falls der Hero zu dunkel ist */
.about-hero .overlay {
  background: rgba(0, 0, 0, 0.05);
}
/* ===== Textbereich stärker absetzen ===== */

.content-section {
  background: #ffffff;
  margin-top: 80px;              /* Mehr Abstand vom Hero */
  padding: 80px 0;               /* Mehr Luft oben/unten */
  border-radius: 30px 30px 0 0;  /* Weiche obere Kante */
  box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.08);
  position: relative;
}

/* Überschrift größer und klarer */
.content-section h2 {
  font-size: 2rem;
  margin-bottom: 25px;
}

/* Text etwas heller für besseren Kontrast */
.content-section p {
  color: #444;
  font-size: 1.05rem;
}

/* Bullet Points klarer */
.content-section ul {
  margin-top: 20px;
}

.content-section li {
  margin-bottom: 10px;
  font-size: 1.05rem;
}
/* Paket-Karten gleich hoch machen */
.package-grid {
  display: flex;
  gap: 30px;
}

.package-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

/* Button nach unten drücken */
.package-card .btn-primary {
  margin-top: auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 65px;
  width: auto;
}

.logo span {
  font-weight: bold;
  font-size: 1.4rem;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}