/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Body Styling */
body {
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
    margin: 0;
}

/* Navigation Styling */
nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    background-color: #004080;
    padding: 15px;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    padding: 5px 10px;
}

nav ul li a:hover {
    background-color: #0059b3;
    border-radius: 5px;
}

/* Header Styling */
header {
    text-align: center;
    padding: 60px 20px;
    background-color: #004080;
    color: white;
}

header .hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

header .hero p {
    font-size: 22px;
    margin-bottom: 30px;
}

.cta-button {
    background-color: #0077b5;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
}

.cta-button:hover {
    background-color: #005a8d;
    transform: translateY(-3px);
    transition: all 0.3s ease;
}

/* Dienstleistungen Section */
.services {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
}

.services h2 {
    font-size: 28px;
    margin-bottom: 40px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-item {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.service-item i {
    font-size: 48px;
    color: #0077b5;
    margin-bottom: 20px;
}

.service-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.service-item p {
    font-size: 16px;
}

/* Vorgehen Section */
.approach {
    padding: 60px 20px;
    background-color: #f4f4f4;
    text-align: center;
}

.approach h2 {
    font-size: 28px;
    margin-bottom: 40px;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.approach-item {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.approach-item i {
    font-size: 48px;
    color: #0077b5;
    margin-bottom: 20px;
}

.approach-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.approach-item p {
    font-size: 16px;
}

/* Unternehmen helfen Section */
.help {
    padding: 60px 20px;
    background-color: #e9f2f5;
    text-align: center;
}

.help h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.help p {
    font-size: 18px;
    margin-bottom: 40px;
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.help-item {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.help-item i {
    font-size: 48px;
    color: #0077b5;
    margin-bottom: 20px;
}

.help-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.help-item p {
    font-size: 16px;
}

/* Schulungen Section */
.trainings {
    padding: 60px 20px;
    background-color: #f4f4f4;
    text-align: center;
}

.trainings h2 {
    font-size: 28px;
    margin-bottom: 40px;
}

.training-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.training-item {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.training-item i {
    font-size: 48px;
    color: #0077b5;
    margin-bottom: 20px;
}

.training-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.training-item p {
    font-size: 16px;
}

/* Kontakt Section */
.contact {
    padding: 60px 20px;
    background-color: #004080;
    text-align: center;
    color: white;
}

.contact h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.contact p {
    font-size: 18px;
    margin-bottom: 40px;
}

.contact-button {
    background-color: #0077b5;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    margin: 10px;
    display: inline-block;
}

.contact-button:hover {
    background-color: #005a8d;
    transform: translateY(-3px);
    transition: all 0.3s ease;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
}

footer p {
    font-size: 14px;
}

footer a {
    color: white;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        padding: 20px;
    }

    nav ul li {
        margin-bottom: 10px;
    }

    header .hero h1 {
        font-size: 36px;
    }

    .cta-button {
        font-size: 16px;
    }

    .services h2,
    .approach h2,
    .help h2,
    .trainings h2,
    .contact h2 {
        font-size: 24px;
    }

    .service-item h3,
    .approach-item h3,
    .help-item h3,
    .training-item h3 {
        font-size: 20px;
    }

    .service-item p,
    .approach-item p,
    .help-item p,
    .training-item p,
    .contact p {
        font-size: 14px;
    }
}

.impressum-container {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0 auto;
    padding: 20px;
    max-width: 900px;
    background-color: #f4f4f4;
    color: #333;
}

.impressum-container h1 {
    font-size: 28px;
    color: #333;
    text-align: center;
    margin: 20px 0;
}

.impressum-container h2 {
    font-size: 22px;
    color: #0077b5;
    margin-bottom: 15px;
}

.impressum-container p {
    font-size: 16px;
    line-height: 1.8;
    margin: 10px 0;
}

.impressum-container a {
    color: #0077b5;
    text-decoration: none;
}

.impressum-container a:hover {
    text-decoration: underline;
}

.ueberschrift-willkommensgruss {
    background-color: #0077b5;
    color: white;
    padding: 30px 0;
    text-align: center;
}

.ueberschrift-willkommensgruss h1 {
    font-size: 26px;
}

.ueberschrift-willkommensgruss a {
    color: white;
    margin-top: 10px;
    display: block;
}

img {
    display: block;
    margin: 20px auto;
    max-width: 200px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.fusszeile {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 30px;
}

.fusszeile a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}

.fusszeile a:hover {
    text-decoration: underline;
}

#backLink {
    display: block;
    margin: 20px auto;
    color: #0077b5;
    font-size: 16px;
    text-align: center;
}

#backLink:hover {
    text-decoration: underline;
}

.profile-pic {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 20px;
    object-fit: cover;
    border: 3px solid white;
}

.hero {
    text-align: center;
    padding: 50px 20px;
    background-color: #004080;
    color: white;
}

.name-title {
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
    color: #e0e0e0; /* Optional: leicht kontrastierend für den Namen */
}

.training-item {
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Fügt Abstand zwischen dem Text und dem Button hinzu */
    align-items: center; /* Zentriert alle Inhalte */
}

.training-item i {
    font-size: 48px;
    color: #0077b5;
    margin-bottom: 20px;
}

.training-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.training-item p {
    font-size: 16px;
    margin-bottom: 20px; /* Fügt Platz zwischen Text und Button hinzu */
}

.training-item .cta-button {
    background-color: #0077b5;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    margin-top: 20px; /* Abstand zwischen Text und Button */
}

.training-item .cta-button:hover {
    background-color: #005a8d;
    transform: translateY(-3px);
    transition: all 0.3s ease;
}

body {
  font-family: 'Open Sans', Arial, sans-serif;
}
.service-item, .approach-item {
  border: 1px solid #d0d7e2;
}

body {
  margin: 0;
  font-family: "Open Sans", Arial, sans-serif;
  color: #222;
  background-color: #f8f9fa;
  line-height: 1.6;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(145deg, #0a2342 0%, #004080 100%);
  color: white;
  text-align: center;
  padding: 120px 20px 100px;
}

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

.hero-image {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 3px solid #fff;
  margin-bottom: 25px;
  object-fit: cover;
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

.hero-section h1 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.hero-section p {
  font-size: 1.1rem;
  color: #e4e8ef;
  margin-bottom: 30px;
}

.cta-button {
  background-color: #0077b5;
  color: white;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.cta-button:hover {
  background-color: #0091e6;
  box-shadow: 0 6px 20px rgba(0, 119, 181, 0.3);
}

/* Sections */
.section {
  padding: 80px 20px;
}

.bg-light {
  background-color: #f0f4f8;
}

/* Grids */
.service-grid, .approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-item, .approach-item {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover, .approach-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.service-item img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 20px;
}

.service-item h3, .approach-item h3 {
  color: #004080;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

/* Contact */
.contact-section {
  background: #004080;
  color: white;
  text-align: center;
}

.contact-section a.contact-button {
  display: inline-block;
  background-color: #0077b5;
  color: white;
  padding: 12px 24px;
  margin: 10px;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.contact-section a.contact-button:hover {
  background-color: #0091e6;
}

/* Footer */
footer {
  background-color: #222;
  color: #ccc;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}
footer a {
  color: #ccc;
  text-decoration: none;
}
footer a:hover {
  color: #fff;
}

html {
  scroll-behavior: smooth;
}

.service-button {
  display: inline-block;
  margin-top: 15px;
  background-color: #0077b5;
  color: white;
  padding: 10px 22px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.service-button:hover {
  background-color: #005a8d;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transform: translateY(-3px);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  align-items: stretch; /* sorgt für gleiche Höhe */
}

.service-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Button bleibt unten */
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.service-item h3 {
  font-size: 20px;
  color: #004080;
  margin-bottom: 10px;
  text-align: center;
}

.service-item p {
  flex-grow: 1;
  text-align: center;
  font-size: 15px;
  line-height: 1.5;
  color: #333;
  margin-bottom: 20px;
}

.service-button {
  align-self: center;
  background-color: #0077b5;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.service-button:hover {
  background-color: #005a8d;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  align-items: stretch;
  margin-top: 40px;
}

.approach-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.approach-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.approach-item i {
  font-size: 48px;
  color: #0077b5;
  margin-bottom: 20px;
}

.approach-item h3 {
  color: #004080;
  font-size: 20px;
  margin-bottom: 10px;
}

.approach-item p {
  flex-grow: 1;
  font-size: 15px;
  line-height: 1.5;
  color: #333;
  margin-bottom: 20px;
}

.approach-button {
  align-self: center;
  background-color: #0077b5;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.approach-button:hover {
  background-color: #005a8d;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transform: translateY(-3px);
}

.subpage-hero {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  text-align: center;
  padding: 120px 20px;
}

.subpage-hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.subpage-hero p {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto;
}

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

.styled-list {
  list-style: none;
  padding-left: 0;
}

.styled-list li {
  position: relative;
  margin: 10px 0;
  padding-left: 28px;
}

.styled-list li::before {
  content: "•";
  color: #0077b5;
  position: absolute;
  left: 10px;
  font-size: 22px;
  line-height: 1;
}

.info-box {
  display: flex;
  align-items: flex-start;
  background: #f1f8ff;
  border-left: 5px solid #0077b5;
  padding: 20px;
  border-radius: 8px;
  margin: 30px 0;
}

.info-box i {
  font-size: 32px;
  color: #0077b5;
  margin-right: 15px;
}

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

.back-link {
  display: inline-block;
  margin-top: 15px;
  color: #0077b5;
  text-decoration: none;
}

.back-link:hover {
  text-decoration: underline;
}

.faq-section {
  margin-top: 50px;
}
.faq-item {
  margin-bottom: 25px;
  padding: 15px 20px;
  background-color: #f9f9f9;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}
.faq-item h4 {
  color: #004080;
  margin-bottom: 8px;
}
.faq-item p {
  margin: 0;
  color: #333;
}

.example-offer p + p {
  margin-top: 1rem;
}

/* Stilistische Aufwertung */
.shadow-box {
  background: #f8f9fb;
  border: 1px solid #e0e6ed;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  border-radius: 12px;
  padding: 2.2rem;
}

.shadow-box h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #002850;
}

.shadow-box ul {
  margin: 1rem 0 1.5rem 1.5rem;
  line-height: 1.6;
}

.price-box {
  background: #eaf2fb;
  border-left: 4px solid #004080;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.price-box .price-range {
  font-size: 1.1rem;
  font-weight: 600;
  color: #004080;
}

.note {
  font-size: 0.9rem;
  color: #555;
  margin-top: 1rem;
}

..hero-section {
  text-align: center;
  background: #00264d;
  color: #ffffff;
  padding: 5rem 1rem 4rem;
}

.hero-section .hero-image {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 3px solid #ffffff;
  margin-bottom: 1.5rem;
}

.hero-section .name-title {
  font-size: 1rem;
  font-weight: 500;
  color: #dce3ec;
  margin-bottom: 0.6rem;
  letter-spacing: 0.3px;
}

.hero-section h1 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  line-height: 1.4;
}

.hero-section .subtitle {
  font-size: 1rem;
  max-width: 720px;
  margin: 0 auto 2rem;
  color: #e3e8f0;
}

.hero-section .cta-button {
  background-color: #0078c7;
  color: #fff;
  padding: 0.9rem 1.8rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.hero-section .cta-button:hover {
  background-color: #005f99;
}

.case-study ul {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  padding-left: 1.2rem;
}

.case-study li {
  margin-bottom: 0.35rem;
  line-height: 1.55;
}
.faq-subpage {
  padding-top: 40px !important;
}
/* ---------------------------------
   Feinabstimmung für FAQ-Sektion auf Unterseiten
---------------------------------- */
.section.bg-light.faq-subpage {
  padding-top: 10px !important;    /* geringer oberer Abstand */
  padding-bottom: 50px;            /* dezenter Abschluss */
    padding: 20px 20px;
}

.bg-light
{
        padding: 20px 20px;
}

.section.bg-light.faq-subpage h2 {
  margin-top: 10px;                /* Überschrift näher an den oberen Rand */
  margin-bottom: 30px;             /* harmonischer Abstand zu den Fragen */
}

.faq-section {
  margin-top: 0 !important;        /* verhindert zusätzliches Margin von faqs.php */
}

.section.bg-light.faq-subpage {
  background-color: #f6f8fb; /* sanfteres, professionelleres Hellblau */
  border-radius: 12px;       /* leicht abgerundet */
  box-shadow: 0 2px 8px rgba(0,0,0,0.05); /* dezente Tiefe */
}

/* ---------------------------------
   CTA-Bereich (einheitliches Design)
---------------------------------- */
.cta-final {
  background: #f8f9fb;
  padding: 60px 20px;
  border-top: 1px solid #e0e6ed;
  text-align: center;
  margin-top: 4rem;
}

.cta-final .cta-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.cta-final .cta-image {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border: 3px solid #fff;
}

.cta-final .cta-text {
  max-width: 520px;
  text-align: left;
}

.cta-final .cta-text h3 {
  font-size: 1.5rem;
  color: #002850;
  margin-bottom: 0.75rem;
}

.cta-final .cta-text p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

.cta-final .cta-button {
  display: inline-block;
  background-color: #0077b5;
  color: #fff;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-final .cta-button:hover {
  background-color: #005a8d;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 768px) {
  .cta-final .cta-text {
    text-align: center;
  }
}