/*****************************************************************
    Website: Dott. Peter Wieland - Wirtschaftsjurist & IT-Experte
    Description: Custom CSS für professionelle Business-Website
    Version: 1.0
    Year: 2024
*****************************************************************/

/*****************************************************************
** - 01 - Variables & Default CSS
** - 02 - Preloader Section CSS
** - 03 - Navbar Section CSS
** - 04 - Hero Section CSS
** - 05 - About Section CSS
** - 06 - Services Section CSS
** - 07 - Specialties Section CSS
** - 08 - CTA Section CSS
** - 09 - Contact Section CSS
** - 10 - Footer Section CSS
** - 11 - Utilities & Animations
*****************************************************************/

/**************************************
 ** - 01 - Variables & Default CSS
 **************************************/
:root {
  --primary-color: #2563a8;
  --secondary-color: #1a4d7a;
  --text-color: #404040;
  --text-light: #5f5f5f;
  --light-gray: #f8f9fa;
  --border-color: #e0e0e0;
  --shadow: rgba(0, 0, 0, 0.1);
  --white: #ffffff;
  --black: #000000;
  --nav-accent: 37, 99, 168;
}

*, *:before, *:after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Catamaran', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-color);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Dosis', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 15px 0;
  color: var(--text-color);
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }

p {
  margin: 0 0 15px 0;
  color: var(--text-light);
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

a:hover {
  color: var(--secondary-color);
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  max-width: 1200px;
}

/* Utility Classes */
.ptb-100 {
  padding: 100px 0;
}

.ptb-50 {
  padding: 50px 0;
}

.ptb-25 {
  padding: 25px 0;
}

.pt-50 {
  padding-top: 50px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-50 {
    padding-bottom: 30px;
}

.bg-grey {
  background-color: var(--light-gray);
}

/* Section Title */
.section-title {
  margin-bottom: 50px;
}

.section-title .subtitle {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 10px;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.section-title .title-border {
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  margin: 20px auto;
  border-radius: 2px;
}

.section-title p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 18px;
}

/* Buttons */
.btn {
  padding: 14px 35px;
  font-weight: 600;
  border-radius: 15px;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-block;
  border: 2px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  box-shadow: 0 10px 25px rgba(37, 99, 168, 0.3);
  color: var(--white);
}

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

.btn-outline:hover {
  background: var(--primary-color);
  color: var(--white);
}

.btn-light {
  background: var(--white);
  color: var(--primary-color);
  border: 2px solid var(--white);
}

.btn-light:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

/**************************************
 ** - 02 - Preloader Section CSS
 **************************************/
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader {
  position: relative;
  width: 60px;
  height: 60px;
}

.loader .shadow {
  position: absolute;
  width: 100%;
  height: 10px;
  background: rgba(0, 0, 0, 0.1);
  bottom: -10px;
  border-radius: 50%;
  animation: shadow 0.5s ease-in-out infinite;
}

.loader .box {
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  animation: bounce 0.5s ease-in-out infinite;
  border-radius: 10px;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-50px); }
}

@keyframes shadow {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(0.8); opacity: 0.3; }
}

/**************************************
 ** - 03 - Navbar Section CSS
 **************************************/
.navbar {
  padding: 15px 0;
  transition: all 0.3s ease;
  background: var(--white);
  box-shadow: 0 2px 20px var(--shadow);
}

.navbar.scrolled {
  background: var(--white);
  box-shadow: 0 2px 20px var(--shadow);
  padding: 15px 0;
}

.navbar-brand {
  display: flex;
  align-items: center;
  padding: 0;
}

.navbar-logo {
  height: 50px;
  width: auto;
  transition: all 0.3s ease;
}

.navbar-logo:hover {
  opacity: 0.8;
}

.navbar .nav-link {
  color: var(--text-color);
  font-weight: 600;
  margin: 0 3px;
  border-radius: 10px;
  transition: all 0.3s ease;
  padding: 10px 15px !important;
  font-size: 14px;
}

.navbar .nav-link:hover {
  background-color: rgba(var(--nav-accent), 0.09);
}

.navbar .nav-link.active {
  color: var(--primary-color);
  background: rgba(37, 99, 168, 0.20);
  border-radius: 12px;
}

.navbar .dropdown-toggle::after {
  margin-left: 8px;
  font-size: 11px;
  vertical-align: middle;
}

.dropdown-menu li:first-child > .dropdown-item {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.dropdown-menu li:last-child > .dropdown-item {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.navbar .dropdown-menu {
  border: none;
  box-shadow: 0 5px 20px var(--shadow);
  border-radius: 10px;
  padding: 0px 0;
  margin-top: 0;
  display: none;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  pointer-events: none;
}

/* Desktop: Hover aktiviert Dropdown */
@media (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}

/* Mobile: Click aktiviert Dropdown */
.navbar .dropdown-menu.show {
  display: block;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.navbar .dropdown-item {
  padding: 10px 25px;
  color: var(--text-color);
  font-weight: 500;
  transition: all 0.3s ease;
  font-size: 14px;
}

.navbar .dropdown-item:hover {
  background-color: rgba(var(--nav-accent), 0.09);
}

.navbar .dropdown-item.active {
  background: rgba(37, 99, 168, 0.20);
  color: var(--primary-color);
  padding-left: 30px;
}

.navbar-toggler {
  border: none;
  padding: 0;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/**************************************
 ** - 04 - Hero Section CSS
 **************************************/
.home-section {
  position: relative;
  z-index: 1;
}

.home-section .d-table {
  width: 100%;
  height: auto;
  min-height: 600px;
}

.home-section .d-table-cell {
  vertical-align: middle;
  position: relative;
}

.home-section .row {
  position: relative;
  height: 100%;
}

.hero-background {
  background-image: url('/images/hero.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}

.hero-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(37, 99, 168, 0.85) 0%, rgba(26, 77, 122, 0.85) 100%);
  z-index: -1;
}

.main-banner-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  color: var(--white);
  padding: 100px 0 20px;
}

.hero-content-box {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  min-width: 650px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  gap: 0;
}

.hero-content-block {
  padding: 1.0rem 2.3rem 0;
}

.hero-content-top {
  padding-bottom: 1.0rem;
}

.hero-content-bottom {
  padding: 1.5rem 2.3rem 2.3rem;
}

.social-icon-list {
  position: absolute;
  left: -80px;
  top: 50%;
  transform: translateY(-50%);
  list-style: none;
  padding: 0;
  margin: 0;
  z-index: 10;
}

.social-icon-list li {
  margin-bottom: 15px;
}

.social-icon-list li a {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-radius: 50%;
  font-size: 18px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.social-icon-list li a:hover {
  background: var(--white);
  color: var(--primary-color);
}

/* Mediator Link - Rötlicher Hintergrund */
.social-icon-list li a.mediator-link {
  background: rgba(200, 50, 50, 0.8);
  backdrop-filter: blur(10px);
}

.social-icon-list li a.mediator-link:hover {
  background: rgba(220, 70, 70, 1);
  color: var(--white);
  transform: scale(1.1);
}

.social-icon-list li a.social-icon-x {
  background: #000;
  color: var(--white);
}

.social-icon-list li a.social-icon-x:hover {
  background: #111;
  color: var(--white);
}

.social-icon-list li a.social-icon-linkedin {
  background: #0a66c2;
  color: #ffffff;
}

.social-icon-list li a.social-icon-linkedin:hover {
  background: #0c7bd7;
  color: #ffffff;
}

.social-icon-list li a.social-icon-xing {
  background: #026466;
  color: #ffffff;
}

.social-icon-list li a.social-icon-xing:hover {
  background: #038b8d;
  color: #ffffff;
}

.social-icon-list li a.social-icon-sourceweb {
  background: #111;
  color: #ffffff;
}

.social-icon-list li a.social-icon-sourceweb:hover {
  background: #1f1f1f;
  color: #ffffff;
  transform: scale(1.05);
}

.mediator-icon-img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.social-icon-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.mediator-icon-img {
  filter: brightness(0) invert(1);
}

.hero-title-wrapper {
  margin-bottom: 10px;
  animation: fadeInUp 0.8s ease;
}

.hero-prefix {
  display: block;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--white);
  opacity: 0.85;
  margin-bottom: 0;
  font-family: 'Dosis', sans-serif;
}

.main-banner-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0;
  line-height: 1;
}

.hero-suffix {
  display: block;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--white);
  opacity: 0.8;
  margin-top: 0;
  font-family: 'Catamaran', sans-serif;
}

.hero-roles {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--white);
  opacity: 0.85;
  margin-top: 10px;
  margin-bottom: 5px;
  font-family: 'Catamaran', sans-serif;
  letter-spacing: 0.5px;
  animation: fadeInUp 0.8s ease 0.1s backwards;
}

.hero-tagline {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 9px;
  line-height: 1.3;
  font-family: 'Dosis', sans-serif;
  animation: fadeInUp 0.8s ease 0.15s backwards;
}

.hero-bridge-box {
  width: 100%;
  margin: 0;
  border-radius: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.32);
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
  padding: 18px 2.3rem;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  animation: fadeInUp 0.8s ease 0.22s backwards;
}

.hero-bridge-box .bridge-line {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.02rem;
  line-height: 1.6;
}

.hero-bridge-box .bridge-top {
  font-weight: 500;
  margin-bottom: 6px;
}

.hero-bridge-box .bridge-bottom {
  font-weight: 600;
  color: #ffffff;
}

.bridge-highlight {
  display: inline-block;
  white-space: nowrap;
  margin: 4px 0;
}

.hero-bridge-box .bridge-bottom strong,
.hero-bridge-box .bridge-bottom .bridge-highlight {
  color: #ffffff;
}

.hero-bridge-box .chip-label {
  font-weight: 700;
  letter-spacing: 0.3px;
}

.hero-bridge-box .chip-divider {
  opacity: 0.6;
}

@media (max-width: 767px) {
  .hero-bridge-box {
    padding: 16px 1.8rem;
    border-radius: 0;
  }
  .hero-bridge-box .bridge-line {
    font-size: 0.95rem;
    line-height: 1.5;
  }
  .bridge-highlight {
    font-size: 0.95rem;
  }
}

.hero-intro {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--white);
  margin-bottom: 15px;
  opacity: 0.95;
  font-weight: 500;
  animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-credentials {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--white);
  margin-bottom: 35px;
  opacity: 0.9;
  animation: fadeInUp 0.8s ease 0.25s backwards;
}

.main-banner-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--white);
  margin-bottom: 15px;
  opacity: 0.95;
  animation: fadeInUp 0.8s ease 0.2s backwards;
}

.banner-btn {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.4s backwards;
  padding-bottom: 0;
}

.default-btn-one,
.default-btn-two {
  position: relative;
  display: inline-block;
  padding: 5px 20px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 10px;
  text-align: center;
  overflow: hidden;
  z-index: 1;
  transition: all 0.4s ease;
}

.default-btn-one {
  background: var(--white);
  color: var(--primary-color);
  border: 2px solid var(--white);
}

.default-btn-one:hover {
  background: transparent;
  color: var(--white);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.default-btn-two {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.default-btn-two:hover {
  background: var(--white);
  color: var(--primary-color);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.banner-image {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
  animation: fadeInRight 1s ease;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.banner-image .profile-image {
  max-height: 500px;
  max-width: 600px;
  height: auto;
  width: auto;
  object-fit: contain;
  object-position: bottom right;
  display: block;
  align-self: flex-end;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/**************************************
 ** - 04b - Page Header CSS (for subpages)
 **************************************/
.page-header {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
  margin-top: 10px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgb(23 23 23 / 85%) 0%, rgba(26, 77, 122, 0.1) 100%);
  z-index: 0;
}

.page-header::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.3;
  z-index: 1;
}

.page-header-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
}

.page-header-content h1 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 15px;
  text-transform: none;
}

.page-header-content p {
  font-size: 1.2rem;
  color: var(--white);
  opacity: 0.9;
  margin-bottom: 0;
}

/**************************************
 ** - 05 - About Section CSS
 **************************************/
.about-section {
  background: var(--white);
}

.about-intro {
  margin-bottom: 30px;
}

.about-intro .lead {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--text-color);
  font-weight: 500;
}

/* USP Highlight Box */
.usp-highlight-box {
  background: linear-gradient(135deg, rgba(37, 99, 168, 0.05), rgba(26, 77, 122, 0.05));
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(37, 99, 168, 0.15);
}

/* Expertise Cards (Fachliche Schwerpunkte) */
.expertise-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 20px;
  height: 100%;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
  text-align: center;
}

.expertise-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(37, 99, 168, 0.2);
  border-color: var(--primary-color);
}

.expertise-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  box-shadow: 0 8px 20px rgba(37, 99, 168, 0.3);
  transition: all 0.3s ease;
}

.expertise-card:hover .expertise-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 30px rgba(37, 99, 168, 0.4);
}

.expertise-icon i {
  font-size: 40px;
  color: var(--white);
}

.expertise-card h4 {
  font-size: 1.5rem;
  color: var(--text-color);
  margin-bottom: 20px;
  font-weight: 700;
}

.expertise-card p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-light);
  margin: 0;
}

.usp-content {
  padding: 20px 22px;
}

.usp-highlight-box h3 {
  font-size: 1.75rem;
  color: var(--primary-color);
  margin-bottom: 25px;
  font-weight: 700;
}

.usp-highlight-box h3 i {
  margin-right: 10px;
  color: var(--primary-color);
}

.usp-highlight-box p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--text-color);
}

.usp-highlight-box em {
  font-style: italic;
  color: var(--primary-color);
  font-weight: 600;
}

/* USP Image */
.usp-image {
  position: relative;
}

.usp-image img {
  width: 100%;
  height: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.usp-image img:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Why Important Box */
.why-important-box {
  background: linear-gradient(135deg, rgba(37, 99, 168, 0.1), rgba(26, 77, 122, 0.05));
  padding: 40px;
  border-radius: 15px;
  border: 2px solid rgba(37, 99, 168, 0.2);
  text-align: center;
}

.why-important-box h3 {
  font-size: 1.75rem;
  color: var(--text-color);
  margin-bottom: 20px;
}

.why-important-box h3 i {
  color: var(--primary-color);
  margin-right: 10px;
}

.why-important-box .lead {
  font-size: 1.2rem;
  color: var(--text-color);
  margin-bottom: 0;
  font-weight: 500;
}

/* Team Work Section (Mit mir arbeiten) */
.team-work-box {
  background: var(--white);
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-color);
}

.work-step {
  display: flex;
  gap: 25px;
  margin-bottom: 40px;
  padding: 30px;
  border-radius: 15px;
  background: var(--light-gray);
  transition: all 0.3s ease;
}

.work-step:last-child {
  margin-bottom: 0;
}

.work-step:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.work-step.highlight {
  background: linear-gradient(135deg, rgba(37, 99, 168, 0.08), rgba(26, 77, 122, 0.05));
  border: 2px solid rgba(37, 99, 168, 0.2);
}

.step-icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px rgba(37, 99, 168, 0.3);
}

.step-icon i {
  font-size: 32px;
  color: var(--white);
}

.step-content {
  flex: 1;
}

.step-content h4 {
  font-size: 1.4rem;
  color: var(--text-color);
  margin-bottom: 15px;
  font-weight: 700;
}

.step-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-light);
  margin: 0;
}

/* About Section (Über mich) */
.about-image {
  position: relative;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.about-image img:hover {
  transform: scale(1.02);
}

.about-text-content {
  padding-left: 30px;
}

.about-text-content p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--text-light);
  margin-bottom: 20px;
}

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

/* Qualifications Header */
.qualifications-header {
  text-align: center;
  margin-bottom: 30px;
}

.qualifications-header h3 {
  font-size: 2rem;
  color: var(--text-color);
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.qualifications-header h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}

/* Qualification Cards */
.qualification-card {
  background: var(--white);
  padding: 35px 30px;
  border-radius: 15px;
  border: 2px solid var(--border-color);
  height: 100%;
  transition: all 0.3s ease;
}

.qualification-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 10px 30px rgba(37, 99, 168, 0.15);
  transform: translateY(-5px);
}

.qualification-card .qual-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(37, 99, 168, 0.1), rgba(26, 77, 122, 0.1));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.qualification-card .qual-icon i {
  font-size: 28px;
  color: var(--primary-color);
}

.qualification-card:hover .qual-icon {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.qualification-card:hover .qual-icon i {
  color: var(--white);
}

.qualification-card h4 {
  font-size: 1.3rem;
  color: var(--text-color);
  margin-bottom: 15px;
}

.qualification-card p {
  margin-bottom: 0;
  line-height: 1.8;
}

.qualification-card strong {
  color: var(--primary-color);
  font-weight: 600;
}

/* Approach Box */
.approach-box {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  padding: 40px;
  border-radius: 15px;
  color: var(--white);
  text-align: center;
}

.approach-box h3 {
  font-size: 1.75rem;
  color: var(--white);
  margin-bottom: 20px;
}

.approach-box h3 i {
  margin-right: 10px;
}

.approach-box .lead {
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 0;
  opacity: 0.95;
  font-weight: 500;
}

/**************************************
 ** - 06 - Services Section CSS
 **************************************/
.service-card {
  background: var(--white);
  padding: 30px 20px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border-color);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(37, 99, 168, 0.15);
  border-color: var(--primary-color);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(37, 99, 168, 0.1), rgba(26, 77, 122, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.service-icon i {
  font-size: 36px;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.service-card:hover .service-icon i {
  color: var(--white);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--text-color);
}

.service-card p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.service-link {
  color: var(--primary-color);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.service-link:hover {
  gap: 12px;
  color: var(--secondary-color);
}

.core-focus-section .core-service-card {
  text-align: left;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 40px 20px;
}

.core-focus-section .service-icon {
  margin: 0 0 20px;
}

.core-focus-section .service-icon i {
  font-size: 34px;
}

.core-service-card p {
  margin-bottom: 18px;
  font-size: 15px;
}

.core-service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  text-align: left;
}

.core-service-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  line-height: 1.6;
  color: var(--text-color);
}

.core-service-list li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--primary-color);
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.95rem;
}

.core-service-card .service-link {
  margin-top: auto;
}

@media (max-width: 767.98px) {
  .core-focus-section .core-service-card {
    padding: 32px 24px;
  }
}

/**************************************
 ** - 07 - Specialties Section CSS
 **************************************/
.specialty-content {
  padding: 20px 0;
}

.specialty-icon-large {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.specialty-icon-large i {
  font-size: 48px;
  color: var(--white);
}

.specialty-content h3 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: var(--text-color);
}

.specialty-content .lead {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}

.feature-list li {
  padding: 12px 0;
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 16px;
  color: var(--text-light);
}

.feature-list i {
  color: var(--primary-color);
  font-size: 18px;
  flex-shrink: 0;
}

.specialty-image {
  height: 400px;
  background: linear-gradient(135deg, rgba(37, 99, 168, 0.05), rgba(26, 77, 122, 0.05));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.specialty-bg-icon {
  font-size: 200px;
  color: rgba(37, 99, 168, 0.1);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/**************************************
 ** - 08 - CTA Section CSS
 **************************************/
.cta-section {
  background: url('/images/cta.jpg') center center / cover no-repeat;
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 77, 122, 0.2), rgba(37, 99, 168, 0.2));
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-content h2 {
  color: var(--white);
  font-size: 2.6rem;
  margin-bottom: 18px;
}

.cta-content p {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 32px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.95;
}

/**************************************
 ** - 09 - Contact Section CSS
 **************************************/
.contact-info-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  height: 100%;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(37, 99, 168, 0.15);
}

.contact-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.contact-icon i {
  font-size: 28px;
  color: var(--white);
}

.contact-info-card h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--text-color);
}

.contact-info-card p,
.contact-info-card a {
  color: var(--text-light);
  margin: 0;
}

.contact-form {
  background: var(--light-gray);
  padding: 40px;
  border-radius: 15px;
}

.contact-form .form-control {
  padding: 15px 20px;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  font-size: 16px;
  transition: all 0.3s ease;
  line-height: 1.2rem;
  max-height: 50px;
}

.contact-form .form-label {
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 6px;
}

.contact-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(37, 99, 168, 0.1);
}

.contact-form textarea.form-control {
  resize: vertical;
  min-height: 150px;
}

@media (max-width: 767.98px) {
  .contact-form {
    padding: 28px 22px;
  }

  .contact-form form .row {
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 1.5rem;
  }
}

.contact-details-panel {
  background: linear-gradient(135deg, rgba(37, 99, 168, 0.95), rgba(26, 77, 122, 0.95));
  color: var(--white);
  padding: 45px 40px;
  border-radius: 18px;
  height: 100%;
  box-shadow: 0 15px 40px rgba(37, 99, 168, 0.25);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-details-panel h3 {
  font-size: 1.75rem;
  margin-bottom: 5px;
  color: var(--white);
}

.contact-details-panel p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0;
}

.contact-person h4 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--white);
}

.contact-role-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
}

.contact-role-list li {
  position: relative;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.contact-role-list li::before {
  content: "\2022";
  position: absolute;
  left: 0;
  color: rgba(255, 255, 255, 0.6);
}

.contact-meta {
  display: grid;
  gap: 10px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
}

.contact-item i {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
}

.contact-item a {
  color: var(--white);
  font-weight: 600;
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

.contact-hint {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 991.98px) {
  .contact-details-panel {
    padding: 35px 28px;
  }
}

@media (max-width: 767.98px) {
  .contact-details-panel {
    padding: 30px 24px;
  }
}

/**************************************
 ** - 06.45 - Micro Offers Section CSS
 **************************************/
.micro-offers-section {
  background: #ffffff;
}

.micro-offers-section .section-title p {
  max-width: 850px;
  margin: 0 auto;
}

.micro-offer-card {
  background: var(--white);
  border-radius: 16px;
  padding: 24px 26px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(37, 99, 168, 0.15);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.micro-offer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(37, 99, 168, 0.4); /*5px 10px 10px rgba(37, 99, 168, 0.4);*/
}

.micro-offer-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 12px;
}

.micro-offer-card p {
  flex: 1;
  color: var(--text-light);
  margin-bottom: 18px;
  line-height: 1.6;
}

.micro-offer-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--primary-color);
  text-decoration: none;
  transition: gap 0.3s ease, color 0.3s ease;
}

.micro-offer-link::after {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.85rem;
}

.micro-offer-link:hover {
  gap: 12px;
  color: var(--secondary-color);
}

@media (max-width: 767px) {
  .micro-offer-card {
    padding: 22px;
  }

  .micro-offer-card h4 {
    font-size: 1.05rem;
  }
}

/**************************************
 ** - 10 - Mediation Page CSS
 **************************************/
.mediation-section {
  background: var(--light-gray);
}

.mediation-intro-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 38px;
  border: 1px solid rgba(37, 99, 168, 0.12);
  box-shadow: 0 20px 48px rgba(37, 99, 168, 0.12);
}

.mediation-badge-link {
  text-decoration: none;
}

.mediation-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(37, 99, 168, 0.12);
  color: var(--secondary-color);
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.mediation-badge i {
  color: var(--primary-color);
}

.mediation-badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.mediation-badge-sub {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.4px;
  color: var(--primary-color);
  margin-top: 2px;
}

.mediation-badge:hover {
  background: rgba(37, 99, 168, 0.2);
  color: var(--primary-color);
}

.mediation-badge-icon {
  width: 26px;
  height: 26px;
}

.mediation-intro-card h2,
.mediation-approach-text h2 {
  font-size: 1.8rem;
  line-height: 1.25;
  margin-bottom: 18px;
}

.mediation-intro-card p,
.mediation-approach-text p {
  font-size: 1.05rem;
  color: var(--text-light);
}

.mediation-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 10px;
}

.mediation-list li {
  position: relative;
  padding-left: 26px;
  line-height: 1.6;
  color: var(--text-color);
}

.mediation-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--primary-color);
  position: absolute;
  left: 0;
  top: 2px;
}

.mediation-profile-card {
  background: var(--white);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid rgba(37, 99, 168, 0.12);
  box-shadow: 0 16px 45px rgba(37, 99, 168, 0.1);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.mediation-profile-image img {
  border-radius: 16px;
  width: 100%;
  display: block;
}

.mediation-profile-content h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.mediation-profile-meta {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}

.mediation-profile-meta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
}

.mediation-profile-meta a:hover {
  color: var(--secondary-color);
}

.mediation-profile-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
}

.mediation-profile-list li {
  position: relative;
  padding-left: 18px;
  color: var(--text-color);
  font-weight: 500;
}

.mediation-profile-list li::before {
  content: "\2022";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--secondary-color);
  font-size: 1.1rem;
  line-height: 1;
}

.mediation-duo-card {
  background: var(--white);
  border-radius: 24px;
  padding: 36px 40px;
  border: 1px solid rgba(37, 99, 168, 0.1);
  box-shadow: 0 18px 40px rgba(37, 99, 168, 0.12);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 420px);
  gap: 32px;
  align-items: start;
}

.mediation-highlight-card {
  background: var(--white);
  border-radius: 18px;
  padding: 28px 26px;
  border: 1px solid rgba(37, 99, 168, 0.12);
  box-shadow: 0 12px 32px rgba(37, 99, 168, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mediation-highlight-card h3 {
  font-size: 1.35rem;
  color: var(--text-color);
}

.mediation-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--primary-color);
  text-decoration: none;
  transition: gap 0.3s ease, color 0.3s ease;
}

.mediation-card-link::after {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.85rem;
}

.mediation-card-link:hover {
  gap: 12px;
  color: var(--secondary-color);
}

.mediation-process-card {
  background: var(--white);
  padding: 26px 24px;
  border-radius: 18px;
  border: 1px solid var(--border-color);
  box-shadow: 0 12px 30px rgba(37, 99, 168, 0.08);
  height: 100%;
}

.process-number {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1rem;
}

.mediation-process-card h4 {
  font-size: 1.18rem;
  margin-bottom: 10px;
}

.mediation-pillars {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.pillar-item {
  background: var(--white);
  border-radius: 20px;
  padding: 12px 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--secondary-color);
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 99, 168, 0.12);
}

.pillar-item i {
  color: var(--primary-color);
}

.mediation-field-card {
  background: var(--white);
  border-radius: 16px;
  padding: 26px 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  box-shadow: 0 12px 30px rgba(37, 99, 168, 0.08);
  border: 1px solid var(--border-color);
  height: 100%;
}

.field-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(37, 99, 168, 0.12);
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}

.mediation-benefit-card {
  background: var(--white);
  border-radius: 18px;
  padding: 30px 24px;
  text-align: center;
  border: 1px solid var(--border-color);
  box-shadow: 0 12px 30px rgba(37, 99, 168, 0.08);
  height: 100%;
}

.mediation-benefit-card h4 {
  font-size: 1.1rem;
}

.benefit-icon {
  width: 62px;
  height: 62px;
  border-radius: 20px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, rgba(37, 99, 168, 0.15), rgba(26, 77, 122, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  color: var(--secondary-color);
}

.mediation-quote-box {
  background: linear-gradient(135deg, rgba(37, 99, 168, 0.08), rgba(26, 77, 122, 0.12));
  color: var(--text-color);
  border-radius: 20px;
  padding: 28px 30px;
  position: relative;
  box-shadow: 0 16px 36px rgba(37, 99, 168, 0.12);
  display: flex;
  flex-direction: column;
  align-self: start;
  height: auto;
}

.mediation-quote-box.light {
  background: var(--white);
  border: 1px solid rgba(37, 99, 168, 0.12);
  box-shadow: 0 14px 38px rgba(37, 99, 168, 0.14);
}

.mediation-quote-box i {
  font-size: 2.1rem;
  opacity: 0.25;
  position: absolute;
  top: 18px;
  left: 20px;
  color: var(--primary-color);
}

.mediation-quote-box.light i {
  opacity: 0.35;
  color: rgba(37, 99, 168, 0.4);
}

.mediation-quote-box p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 18px;
  margin-left: 36px;
}

.mediation-quote-box.light p {
  color: var(--text-light);
}

.mediation-quote-author {
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  margin-left: 36px;
  color: var(--secondary-color);
}

.training-info-box {
  background: var(--white);
  border-radius: 18px;
  padding: 32px 30px;
  border: 1px solid rgba(37, 99, 168, 0.12);
  box-shadow: 0 14px 32px rgba(37, 99, 168, 0.1);
}

.training-info-box h3 {
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.training-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: none;
  border: none;
}

.training-table thead {
  background: linear-gradient(135deg, rgba(37, 99, 168, 0.12), rgba(26, 77, 122, 0.18));
}

.training-table th,
.training-table td {
  padding: 16px 20px;
  font-size: 0.95rem;
  line-height: 1.6;
  border-bottom: 1px solid rgba(37, 99, 168, 0.08);
}

.training-table th {
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-weight: 700;
  color: var(--secondary-color);
}

.training-table tbody tr:last-child td {
  border-bottom: none;
}

.training-table tbody tr:hover {
  background: rgba(37, 99, 168, 0.05);
}

.table-hint {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 14px;
}

.cta-card {
  background: linear-gradient(135deg, rgba(37, 99, 168, 0.12), rgba(26, 77, 122, 0.18));
  border-radius: 24px;
  padding: 34px 40px;
  border: 1px solid rgba(37, 99, 168, 0.18);
  box-shadow: 0 18px 42px rgba(37, 99, 168, 0.14);
}


.pricing-card {
  background: var(--white);
  border-radius: 24px;
  padding: 32px 30px;
  border: 1px solid rgba(37, 99, 168, 0.12);
  box-shadow: 0 20px 48px rgba(37, 99, 168, 0.12);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 56px rgba(37, 99, 168, 0.18);
}

.pricing-card.featured {
  border: 2px solid var(--primary-color);
  box-shadow: 0 28px 60px rgba(37, 99, 168, 0.2);
}

.pricing-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(37, 99, 168, 0.12);
  color: var(--secondary-color);
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 18px;
}

.pricing-card.featured .pricing-badge {
  background: var(--primary-color);
  color: var(--white);
}

.pricing-card h3 {
  font-size: 1.65rem;
  margin-bottom: 12px;
}

.pricing-lead {
  font-size: 1.02rem;
  color: var(--text-light);
  margin-bottom: 18px;
}

.pricing-stack-section .section-intro {
  max-width: 760px;
  margin: 0 auto 32px;
  text-align: center;
}

.pricing-stack-section .section-intro p {
  margin-bottom: 0;
  color: var(--text-light);
}

.pricing-stack-card {
  background: var(--white);
  border-radius: 22px;
  padding: 20px 10px 20px 30px;
  border: 1px solid rgba(37, 99, 168, 0.12);
  box-shadow: 0 18px 44px rgba(37, 99, 168, 0.1);
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 24px;
}

.pricing-stack-card h3 {
  font-size: 1.6rem;
  margin-bottom: 0;
}

.pricing-stack-card .pricing-lead {
  margin-bottom: 10px;
}

.pricing-stack-card .stack-card-meta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pricing-stack-card .stack-card-body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.pricing-stack-card .stack-card-meta h3 {
  margin-bottom: 0;
}

.pricing-stack-card .stack-card-meta .pricing-lead {
  margin-bottom: 0;
}

.pricing-stack-card .stack-card-meta .pricing-price-meta {
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--secondary-color);
}

@media (min-width: 992px) {
  .pricing-stack-card .stack-card-meta {
    border-right: 1px solid rgba(0, 0, 0, 0.08);
    padding-right: 1.75rem;
  }

  .pricing-stack-card .stack-card-body {
    padding-left: 1.75rem;
  }
}

.pricing-stack-card .pricing-footer {
  margin-top: 10px;
}

.pricing-stack-card .pricing-price {
  font-size: 1.35rem;
}

.pricing-stack-label {
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.78rem;
}

.pricing-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  line-height: 1.6;
}

.pricing-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--primary-color);
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 0.9rem;
}

.pricing-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.pricing-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--secondary-color);
}


.calendly-wrapper {
  background: var(--white);
  border-radius: 24px;
  padding: 24px;
  border: 1px solid rgba(37, 99, 168, 0.14);
  box-shadow: 0 18px 42px rgba(37, 99, 168, 0.12);
}

.calendly-wrapper iframe {
  border: none;
  width: 100%;
  min-height: 640px;
}

.cta-card h2 {
  font-size: 1.9rem;
  color: var(--secondary-color);
}

.cta-card h3 {
  font-size: 1.65rem;
  color: var(--secondary-color);
  margin-bottom: 0.85rem;
}

.cta-card p {
  color: var(--text-color);
  margin-bottom: 0;
}

.category-cta-card {
  margin-top: 20px;
}

@media (max-width: 991.98px) {
  .category-cta-card {
    text-align: center;
  }
}

.cta-card .btn-light {
  background: var(--white);
  color: var(--secondary-color);
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(37, 99, 168, 0.15);
}

.cta-card .btn-light:hover {
  background: var(--secondary-color);
  color: var(--white);
}

@media (max-width: 991.98px) {
  .mediation-intro-card,
  .mediation-duo-card {
    padding: 30px;
  }

  .mediation-duo-card {
    grid-template-columns: 1fr;
  }

  .mediation-intro-card h2,
  .mediation-approach-text h2 {
    font-size: 2rem;
  }

  .training-info-box {
    padding: 26px 24px;
  }

  .calendly-wrapper {
    padding: 24px 20px;
  }

  .training-table th,
  .training-table td {
    padding: 14px 16px;
    font-size: 0.9rem;
  }

  .pricing-stack-card {
    padding: 28px 24px;
  }

  .cta-card {
    padding: 28px 24px;
    text-align: center;
  }

  .cta-card h2 {
    font-size: 1.6rem;
  }

  .mediation-profile-card {
    padding: 22px;
  }

  .mediation-pillars {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .mediation-intro-card,
  .mediation-duo-card {
    padding: 24px 20px;
  }

  .calendly-wrapper {
    padding: 20px 16px;
  }

  .pricing-stack-card {
    padding: 24px 20px;
  }

  .mediation-intro-card h2,
  .mediation-approach-text h2 {
    font-size: 1.75rem;
  }

  .training-table th,
  .training-table td {
    padding: 12px 14px;
    font-size: 0.88rem;
  }

  .cta-card {
    padding: 24px;
  }

  .cta-card h2 {
    font-size: 1.45rem;
  }

  .mediation-profile-card {
    padding: 20px;
  }

  .mediation-profile-list li {
    font-size: 0.92rem;
  }

  .mediation-highlight-card,
  .mediation-field-card,
  .mediation-benefit-card,
  .mediation-process-card,
  .mediation-cta-box {
    padding: 24px 18px;
  }

  .mediation-pillars {
    grid-template-columns: 1fr;
  }

  .mediation-quote-box {
    padding: 22px 20px;
  }

  .mediation-quote-box p,
  .mediation-quote-author {
    margin-left: 28px;
  }
}

/**************************************
 ** - 06.5 - Packages Section CSS
 **************************************/
.packages-section {
  position: relative;
  padding: 60px 0 !important;
}

/* Package Tabs Navigation */
.package-tabs {
  display: flex;
  gap: 15px;
  border: none;
  margin-bottom: 0;
}

.package-tabs .nav-item {
  flex: 1;
  max-width: 300px;
}

.package-tab-btn {
  width: 100%;
  background: var(--white);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 20px 15px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.package-tab-btn:hover {
  border-color: var(--primary-color);
  background: #f8f9fa;
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(37, 99, 168, 0.15);
}

.package-tab-btn.active {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border-color: var(--primary-color);
  color: var(--white);
  box-shadow: 0 5px 25px rgba(37, 99, 168, 0.3);
}

.package-tab-btn i {
  font-size: 1.8rem;
  color: var(--primary-color);
}

.package-tab-btn.active i {
  color: var(--white);
}

.tab-name {
  display: block;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-color);
}

.package-tab-btn.active .tab-name {
  color: var(--white);
}

.tab-price {
  display: block;
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 600;
}

.package-tab-btn.active .tab-price {
  color: rgba(255, 255, 255, 0.9);
}

.popular-tag {
  position: absolute;
  top: -10px;
  right: 10px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #333;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
}

.popular-tag i {
  font-size: 0.65rem;
  color: #333;
  margin-right: 3px;
}

/* Tab Content Cards */
.pricing-card-tab {
  background: var(--white);
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--border-color);
}

.pricing-card-tab.featured {
  border-color: var(--primary-color);
  background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
}

.package-info {
  text-align: center;
  padding: 20px;
}

.package-icon-large {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 3rem;
  box-shadow: 0 8px 25px rgba(37, 99, 168, 0.3);
}

.package-info h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 10px;
}

.popular-inline {
  display: inline-block;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #333;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  margin-left: 10px;
  vertical-align: middle;
}

.popular-inline i {
  font-size: 0.65rem;
}

.package-info .package-subtitle {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 25px;
}

.pricing-price-large {
  margin: 25px 0;
  padding: 20px 0;
}

.pricing-price-large .price-amount {
  display: block;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 8px;
}

.pricing-price-large .price-period {
  display: block;
  color: var(--text-light);
  font-size: 0.95rem;
}

.package-footer-info {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 2px solid var(--border-color);
}

.package-target-text {
  color: var(--text-light);
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.package-target-text i {
  color: var(--primary-color);
  margin-right: 8px;
}

.package-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-package-compact {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--white);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 3px 15px rgba(37, 99, 168, 0.3);
  flex: 1;
  min-width: 150px;
  text-align: center;
}

.btn-package-compact:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 168, 0.4);
  color: var(--white);
}

.btn-info-compact {
  display: inline-block;
  padding: 10px 20px;
  background: var(--white);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-color);
  flex: 1;
  min-width: 150px;
  text-align: center;
}

.btn-info-compact:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 168, 0.3);
}

.package-features-list {
  padding: 30px;
  background: #f8f9fa;
  border-radius: 12px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.package-features-list h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 20px;
}

.package-features-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.package-features-list ul li {
  padding: 10px 0;
  color: var(--text-color);
  font-size: 0.95rem;
}

.package-features-list ul li i {
  color: #28a745;
  margin-right: 10px;
  font-size: 1rem;
}

/* Responsive for Tabs */
@media (max-width: 991px) {
  .package-tabs {
    flex-direction: column;
    gap: 10px;
  }
  
  .package-tabs .nav-item {
    max-width: 100%;
  }
  
  .package-tab-btn {
    flex-direction: row;
    justify-content: space-between;
    padding: 15px 20px;
  }
  
  .package-tab-btn i {
    font-size: 1.5rem;
  }
  
  .tab-name {
    font-size: 1rem;
  }
  
  .pricing-card-tab {
    padding: 30px 20px;
  }
  
  .package-icon-large {
    width: 80px;
    height: 80px;
    font-size: 2.5rem;
  }
  
  .package-info h3 {
    font-size: 1.7rem;
  }
}

@media (max-width: 767px) {
  .package-features-list {
    padding: 20px;
    margin-top: 30px;
  }
  
  .package-features-list .row {
    display: block;
  }
  
  .package-features-list .col-md-6 {
    width: 100%;
  }
  
  .package-buttons {
    flex-direction: column;
  }
  
  .btn-package-compact,
  .btn-info-compact {
    width: 100%;
    min-width: 100%;
  }
}

/* Old Card Styles (keeping for backward compatibility if needed) */
.pricing-card {
  background: var(--white);
  border-radius: 12px;
  padding: 25px 20px;
  height: 100%;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-color);
}

.pricing-card.featured {
  border: 2px solid var(--primary-color);
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: scale(1.08) translateY(-10px);
}

.popular-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
  color: #333;
  padding: 5px 12px;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
}

.popular-badge i {
  margin-right: 4px;
  font-size: 0.7rem;
}

.pricing-header {
  text-align: center;
  margin-bottom: 20px;
}

.package-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  box-shadow: 0 3px 15px rgba(37, 99, 168, 0.3);
}

.pricing-card.featured .package-icon {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 5px 20px rgba(37, 99, 168, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(37, 99, 168, 0.5);
  }
}

.pricing-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 5px;
}

.package-subtitle {
  color: var(--text-light);
  font-size: 0.85rem;
  margin: 0;
}

.pricing-price {
  text-align: center;
  padding-top: 15px;
  margin-bottom: 0px;
}

.price-amount {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 5px;
}

.price-period {
  display: block;
  color: var(--text-light);
  font-size: 0.8rem;
}

.pricing-features {
  margin-bottom: 20px;
}

.pricing-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-features ul li {
  padding: 8px 0;
  color: var(--text-color);
  font-size: 0.875rem;
  border-bottom: 1px solid #f5f5f5;
  line-height: 1.4;
}

.pricing-features ul li:last-child {
  border-bottom: none;
}

.pricing-features ul li i {
  color: #28a745;
  margin-right: 8px;
  font-size: 0.9rem;
}

.pricing-footer {
  text-align: center;
  margin-bottom: 15px;
}

.btn-package {
  display: inline-block;
  padding: 10px 28px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--white);
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 3px 12px rgba(37, 99, 168, 0.3);
}

.btn-package:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 99, 168, 0.4);
  color: var(--white);
}

.package-target {
  text-align: center;
  padding-top: 12px;
  border-top: 1px solid #f0f0f0;
}

.package-target small {
  color: var(--text-light);
  font-size: 0.8rem;
}

.package-target i {
  color: var(--primary-color);
  margin-right: 5px;
}

.individual-solution-box {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 12px;
  padding: 25px 30px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid #b3beca;
}

.individual-solution-box h3 {
  color: var(--text-color);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.individual-solution-box h3 i {
  color: var(--primary-color);
  margin-right: 8px;
}

.individual-solution-box p {
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Responsive Anpassungen */
@media (max-width: 991px) {
  .pricing-card.featured {
    transform: scale(1);
    margin-bottom: 25px;
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }
}

@media (max-width: 767px) {
  .pricing-card {
    margin-bottom: 25px;
  }
  
  .individual-solution-box {
    padding: 20px 15px;
  }
  
  .individual-solution-box .btn {
    margin-top: 15px;
    width: 100%;
  }
  
  .packages-section {
    padding: 40px 0 !important;
  }
}

/**************************************
 ** - 06.6 - Services Detail Section CSS
 **************************************/
.services-detail-section {
  background: #f5f7fb;
}

.service-offer-card {
  background: var(--white);
  border-radius: 18px;
  padding: 40px 45px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  margin-bottom: 45px;
  border-left: 5px solid var(--primary-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  scroll-margin-top: 120px;
}

.service-offer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.offer-header {
  padding-right: 20px;
}

.offer-icon {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(37, 99, 168, 0.35);
}

.offer-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 12px;
}

.offer-subtitle {
  color: var(--text-light);
  font-size: 1rem;
  margin: 0;
  line-height: 1.6;
}

.offer-body {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.offer-section h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.offer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.offer-section ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: var(--text-color);
  line-height: 1.7;
}

.offer-section ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 4px;
  color: var(--primary-color);
  font-size: 0.9rem;
}

.services-cta {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  border-radius: 20px;
  padding: 45px 50px;
  color: var(--white);
  box-shadow: 0 20px 60px rgba(37, 99, 168, 0.35);
}

.services-cta h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.services-cta p {
  font-size: 1.05rem;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.9);
}

.services-cta .btn {
  padding: 14px 35px;
  border-radius: 15px;
  font-weight: 600;
}

/**************************************
 ** - 06.6a - Use Case Cards
 **************************************/
.use-case-card {
  background: var(--white);
  border-radius: 24px;
  padding: 36px 38px;
  border: 1px solid rgba(37, 99, 168, 0.12);
  box-shadow: 0 20px 48px rgba(37, 99, 168, 0.12);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 26px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.use-case-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(37, 99, 168, 0.18);
}

.use-case-head {
  display: flex;
  align-items: center;
  gap: 18px;
}

.use-case-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(37, 99, 168, 0.12), rgba(26, 77, 122, 0.22));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  font-size: 1.7rem;
}

.use-case-label {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 6px;
}

.use-case-card h3 {
  margin: 0;
  font-size: 1.55rem;
  color: var(--text-color);
}

.use-case-description {
  color: var(--text-light);
  margin-bottom: 0;
  font-size: 1.04rem;
}

.use-case-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  border-top: 1px solid rgba(37, 99, 168, 0.16);
  padding-top: 28px;
}

.use-case-content:before {
  content: "";
  display: none;
}

.use-case-main,
.use-case-case {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.use-case-case {
  border-left: 1px solid rgba(37, 99, 168, 0.16);
  padding-left: 28px;
}

.use-case-case h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 4px;
}

.use-case-case p {
  margin-bottom: 0;
  color: var(--text-color);
}

.use-case-case ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.use-case-case ul li {
  position: relative;
  padding-left: 28px;
  color: var(--text-light);
}

.use-case-case ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--primary-color);
  position: absolute;
  left: 0;
  top: 0;
}

.use-case-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.use-case-item h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 6px;
}

.use-case-item p {
  margin-bottom: 0;
  color: var(--text-color);
}

@media (max-width: 991px) {
  .service-offer-card {
    padding: 35px 30px;
  }
  
  .offer-header {
    padding-right: 0;
  }
  
  .use-case-card {
    padding: 30px 26px;
  }
  
  .use-case-content {
    grid-template-columns: 1fr;
    gap: 24px;
    border-top: 1px solid rgba(37, 99, 168, 0.16);
  }
  
  .use-case-case {
    border-left: none;
    border-top: 1px solid rgba(37, 99, 168, 0.12);
    padding-left: 0;
    padding-top: 22px;
  }
}

@media (max-width: 767px) {
  .service-offer-card {
    padding: 30px 25px;
  }
  
  .offer-body {
    gap: 22px;
  }
  
  .offer-section ul li {
    padding-left: 28px;
  }
  
  .services-cta {
    padding: 35px 25px;
  }
  
  .services-cta h3 {
    font-size: 1.6rem;
  }
  
  .use-case-card {
    padding: 26px 22px;
    gap: 18px;
  }
  
  .use-case-card h3 {
    font-size: 1.4rem;
  }
  
  .use-case-content {
    gap: 20px;
  }
  
  .use-case-case {
    padding-top: 18px;
  }
}

/**************************************
 ** - 06.7 - Honorar Section CSS
 **************************************/
.honorar-section {
  background: #f5f7fb;
}

.honorar-section.ptb-100 {
  padding: 40px 0;
}

.honorar-section.ptb-50 {
  padding: 20px 0;
}

.honorar-intro p {
  font-size: 1.05rem;
  color: var(--text-color);
  line-height: 1.8;
  margin-bottom: 20px;
}

.honorar-card {
  background: var(--white);
  border-radius: 18px;
  padding: 35px 40px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
  margin-bottom: 20px;
  border: 1px solid #b3beca;
}

.honorar-card-header {
  padding-right: 0;
  margin-bottom: 24px;
}

.honorar-card-header h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-color);
}

.honorar-card-header .honorar-card-sub {
  color: var(--text-light);
  margin: 0;
}

.honorar-card-header .honorar-card-lead {
  margin-top: 18px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-color);
}

.honorar-card-body {
  height: 100%;
}

.honorar-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.honorar-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 14px;
  color: var(--text-color);
  line-height: 1.7;
}

.honorar-list li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 4px;
  color: var(--primary-color);
  font-size: 0.9rem;
}

.honorar-list-two-column {
  display: grid;
  gap: 14px 32px;
}

.honorar-list-two-column li {
  margin-bottom: 0;
}

@media (min-width: 992px) {
  .honorar-list-two-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.honorar-rate-card {
  background: var(--white);
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.07);
  border: 1px solid #b3beca;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.honorar-rate-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.honorar-rate-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 12px;
}

.rate-description {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.rate-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.rate-value span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-light);
}

.rate-note {
  margin-top: 15px;
  font-size: 0.9rem;
  color: var(--text-light);
}

.honorar-next-steps {
  margin-top: 20px;
  background: linear-gradient(135deg, #ffffff 0%, #f4f7fc 100%);
  border-radius: 18px;
  padding: 40px;
  color: var(--text-color);
  text-align: center;
  box-shadow: 0 18px 50px rgba(37, 99, 168, 0.18);
  border: 1px solid #b3beca;
}

.honorar-next-steps h3 {
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--text-color);
}

.honorar-next-steps p {
  font-size: 1.05rem;
  margin-bottom: 30px;
  color: var(--text-color);
}

.honorar-next-steps-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.honorar-next-btn {
  padding: 10px 24px;
  border-radius: 10px;
  font-weight: 600;
  min-width: 190px;
}

.honorar-next-steps .btn-outline-primary {
  background: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.honorar-next-steps .btn-outline-primary:hover {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: var(--white);
  border-color: var(--primary-color);
}

.honorar-footnote {
  margin-top: 25px;
  font-size: 0.9rem;
  color: var(--text-light);
  text-align: center;
}

.honorar-package-section {
  margin-top: 60px;
}

.honorar-package-section h2 {
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 15px;
}

.package-intro {
  max-width: 760px;
  margin: 0 auto 35px auto;
  color: var(--text-light);
  font-size: 1.05rem;
}

.honorar-package-card {
  background: var(--white);
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
  border: 1px solid #b3beca;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.honorar-package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.12);
}

.honorar-package-card h3 {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 10px;
}

.package-tagline {
  color: var(--text-light);
  margin-bottom: 18px;
  font-size: 0.98rem;
}

.honorar-package-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--primary-color);
}

.package-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.package-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  color: var(--text-color);
  line-height: 1.7;
}

.package-list li::before {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 4px;
  color: var(--secondary-color);
  font-size: 0.9rem;
}

.package-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-color);
}

.package-price strong {
  font-size: 1.4rem;
}

.package-note {
  margin-top: 8px;
  color: var(--text-light);
  font-size: 0.9rem;
}

@media (max-width: 991px) {
  .honorar-card {
    padding: 30px;
  }
  
  .honorar-rate-card {
    padding: 25px;
  }
  
  .honorar-package-card {
    padding: 28px;
  }
  
  .honorar-card-header .honorar-card-lead {
    font-size: 1rem;
  }
}

@media (max-width: 767px) {
  .honorar-card {
    padding: 25px;
  }
  
  .honorar-package-section {
    margin-top: 40px;
  }
  
  .honorar-package-card {
    padding: 24px;
  }
  
  .honorar-next-steps {
    padding: 30px 20px;
  }
  
  .honorar-next-steps-actions {
    flex-direction: column;
    gap: 12px;
  }
  
  .honorar-next-btn {
    width: 100%;
  }
  
  .honorar-next-steps h3 {
    font-size: 1.6rem;
  }
  
  .honorar-cta-box {
    padding: 22px 24px;
  }

  .honorar-cta-btn {
    width: 100%;
  }
}

.honorar-cta-box {
  padding: 24px 28px;
  border: 1px solid #b3beca;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  margin: 26px 0;
}

.honorar-custom-offer {
  margin: 30px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9edf8 100%);
  border: 1px solid rgba(37, 99, 168, 0.2);
  border: 1px solid #b3beca;
  box-shadow: 0 10px 30px rgba(37, 99, 168, 0.12);
  border-radius: 12px;
}

.honorar-custom-offer h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 8px;
}

.honorar-custom-offer h3 i {
  color: var(--primary-color);
  margin-right: 8px;
}

.honorar-custom-offer p {
  margin: 0;
  color: var(--text-color);
  line-height: 1.6;
  font-size: 0.95rem;
}

.honorar-custom-offer .btn {
  padding: 10px 22px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
}

.honorar-cta-box h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 6px;
}

.honorar-cta-box h3 i {
  color: var(--primary-color);
  margin-right: 8px;
}

.honorar-cta-box p {
  margin: 0;
  color: var(--text-color);
  line-height: 1.6;
  font-size: 0.95rem;
}

.honorar-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
}

/**************************************
 ** - 06.6a - Blog Teaser
 **************************************/
.blog-section {
  background: var(--light-gray);
  padding: 60px 0 70px;
}

.blog-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 46px rgba(37, 99, 168, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 58px rgba(37, 99, 168, 0.16);
}

.blog-card figure {
  margin: 0;
  position: relative;
  overflow: hidden;
}

.blog-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover img {
  transform: scale(1.05);
}

.blog-card time {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(37, 99, 168, 0.92);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.blog-card .blog-body {
  padding: 26px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.blog-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-color);
  font-weight: 600;
}

.blog-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0;
  color: var(--text-color);
}

.blog-card p {
  margin-bottom: 0;
  color: var(--text-light);
}

.blog-card .blog-footer {
  margin-top: auto;
}

.blog-card .blog-footer a {
  font-weight: 600;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.blog-card .blog-footer a:hover {
  color: var(--secondary-color);
}

@media (max-width: 991.98px) {
  .blog-card img {
    height: 220px;
  }
}

@media (max-width: 767.98px) {
  .blog-card img {
    height: 200px;
  }
}

/**************************************
 ** - 06.6b - Blog Detail Layout
 **************************************/
.blog-detail-hero {
  padding: 80px 0 40px;
  background: linear-gradient(135deg, rgba(26, 77, 122, 0.04), rgba(37, 99, 168, 0.12));
}

.blog-detail-hero .breadcrumbs {
  font-size: 0.9rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.blog-detail-hero .breadcrumbs a {
  color: inherit;
}

.blog-detail-hero h1 {
  font-size: 2.6rem;
  margin-bottom: 12px;
}

.blog-detail-hero .subtitle {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 18px;
}

.blog-detail-meta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--secondary-color);
  font-weight: 600;
}

.blog-detail-meta i {
  color: var(--primary-color);
  margin-right: 6px;
}

.blog-detail-section {
  padding: 40px 0 80px;
  background: linear-gradient(180deg, rgba(37, 99, 168, 0.04) 0%, rgba(248, 249, 252, 1) 100%);
}

.blog-article {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.blog-article h2,
.blog-article h3 {
  color: var(--secondary-color);
}

.blog-article p {
  color: var(--text-light);
  margin-bottom: 0;
}

.blog-article ul {
  padding-left: 20px;
  color: var(--text-light);
}

.blog-callout {
  border-left: 4px solid var(--primary-color);
  background: rgba(37, 99, 168, 0.06);
  padding: 24px 26px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.blog-page-header .page-header-content {
  text-align: left;
}

.blog-page-header .breadcrumbs {
  color: rgba(255, 255, 255, 0.75);
}

.blog-page-header .breadcrumbs a {
  color: rgba(255, 255, 255, 0.85);
}

.blog-page-header .breadcrumbs a:hover {
  color: var(--white);
}

.blog-page-header .blog-detail-meta {
  color: rgba(255, 255, 255, 0.85);
}

.blog-page-header .blog-detail-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  padding: 8px 16px;
  border-radius: 999px;
}

.blog-page-header .blog-detail-meta i {
  color: rgba(255, 255, 255, 0.95);
}

.blog-article-card {
  background: var(--white);
  border-radius: 24px;
  padding: 42px 46px;
  border: 1px solid rgba(37, 99, 168, 0.12);
  box-shadow: 0 22px 48px rgba(26, 77, 122, 0.12);
}

.blog-article-card .lead {
  color: var(--text-color);
}

.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.author-card,
.blog-cta-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px 30px;
  box-shadow: 0 18px 44px rgba(37, 99, 168, 0.12);
}

.author-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 18px;
}

.author-card h2 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.author-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--text-light);
}

.author-card .author-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-color);
}

.author-card .author-link + .author-link {
  margin-top: 10px;
}

.blog-cta-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.blog-cta-card p {
  margin-bottom: 18px;
  color: var(--text-light);
}

.blog-cta-card .btn {
  width: 100%;
  padding: 14px 0;
}

@media (max-width: 991.98px) {
  .blog-detail-hero {
    padding: 60px 0 30px;
  }

  .blog-detail-hero h1 {
    font-size: 2.2rem;
  }

  .blog-page-header .page-header-content {
    text-align: center;
  }

  .blog-article-card {
    padding: 34px 32px;
  }
}

@media (max-width: 767.98px) {
  .blog-detail-meta {
    gap: 12px;
  }

  .author-card,
  .blog-cta-card {
    padding: 26px 24px;
  }

  .blog-article-card {
    padding: 26px 22px;
  }
}


/**************************************
 ** - 10 - Footer Section CSS
 **************************************/
.footer-section {
  background: #2c2c2c;
  color: var(--white);
  padding: 60px 0 20px;
}

.footer-widget h3,
.footer-widget h4 {
  color: var(--white);
  margin-bottom: 25px;
  font-size: 1.3rem;
}

.footer-widget p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.footer-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-widget ul li {
  margin-bottom: 12px;
}

.footer-widget ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-widget ul li a:hover {
  color: var(--white);
  padding-left: 5px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

.footer-social-links {
  gap: 10px;
}

.footer-social-links .footer-social {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s ease;
}

.footer-social-links .footer-social i {
  font-size: 18px;
}

.footer-social-links .footer-social:hover {
  background: rgba(255, 255, 255, 0.28);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-social-links .footer-social img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.footer-social-links .footer-social-sourceweb img {
  filter: brightness(0) invert(1);
}

.newsletter-form {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 15px;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--primary-color);
}

.newsletter-form button {
  width: 50px;
  height: 50px;
  border: none;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background: var(--secondary-color);
  transform: scale(1.1);
}

.footer-bottom {
  margin-top: 0px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
}

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

/**************************************
 ** - 11 - Scroll to Top Button
 **************************************/
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 5px 20px rgba(37, 99, 168, 0.3);
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  background: var(--secondary-color);
  transform: translateY(-5px);
  color: var(--white);
}

/**************************************
 ** - 12 - Responsive CSS
 **************************************/

/* Medium Desktop - Social Icons graduell anpassen */
@media (max-width: 1450px) {
  .social-icon-list {
    left: -70px;
  }
}

@media (max-width: 1400px) {
  .social-icon-list {
    left: -60px;
  }
}

@media (max-width: 1350px) {
  .social-icon-list {
    left: -50px;
  }
}

/* Ab hier springen die Icons nach oben */
@media (max-width: 1300px) {
  .social-icon-list {
    position: relative;
    left: 0;
    top: 0;
    transform: none;
    display: flex;
    margin-bottom: 25px;
    z-index: 2;
  }
  
  .social-icon-list li {
    margin-right: 15px;
    margin-bottom: 0;
  }
  
  .main-banner-content {
    padding: 120px 0 50px;
  }
}

@media (max-width: 991px) {
  .home-section .d-table {
    height: auto;
    min-height: auto;
  }
  
  .social-icon-list {
    position: relative;
    left: 0;
    top: 0;
    transform: none;
    display: flex;
    margin-bottom: 25px;
    padding-top: 0;
  }
  
  .social-icon-list li {
    margin-right: 15px;
    margin-bottom: 0;
  }
  
  .main-banner-content {
    padding: 120px 0 40px;
    max-width: 100%;
  }
  
  .hero-content-box {
    padding: 0;
    min-width: auto;
  }

  .hero-content-block {
    padding: 2rem 2rem 0;
  }

  .hero-content-top {
    padding-bottom: 1rem;
  }

  .hero-content-bottom {
    padding: 1.4rem 2rem 2rem;
  }

  .hero-bridge-box {
    padding: 16px 2rem;
  }
  
  .main-banner-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-prefix {
    font-size: 1.1rem;
  }
  
  .hero-suffix {
    font-size: 1rem;
  }
  
  .hero-roles {
    font-size: 0.85rem;
    margin-top: 15px;
    margin-bottom: 20px;
  }
  
  .hero-tagline {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }
  
  .hero-intro {
    font-size: 1rem;
    margin-bottom: 15px;
  }
  
  .hero-credentials {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }
  
  .main-banner-content p {
    font-size: 1rem;
  }
  
  .banner-image {
    position: relative;
    margin-top: 40px;
    margin-bottom: 0;
    text-align: center;
    justify-content: center;
    height: auto;
  }
  
  .banner-image .profile-image {
    max-height: 500px;
    align-self: flex-end;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .specialty-content,
  .about-content {
    margin-bottom: 40px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 991px) {
  .navbar-collapse {
    margin-top: 20px;
  }
}

@media (max-width: 767px) {
  .navbar-logo {
    height: 40px;
  }
  
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.5rem; }
  
  .main-banner-content h1 {
    font-size: 2rem;
  }
  
  .hero-prefix {
    font-size: 1rem;
  }
  
  .hero-suffix {
    font-size: 0.95rem;
  }
  
  .hero-roles {
    font-size: 0.8rem;
    margin-top: 12px;
    margin-bottom: 18px;
  }
  
  .hero-tagline {
    font-size: 1.25rem;
    margin-bottom: 18px;
  }
  
  .hero-intro {
    font-size: 0.95rem;
    margin-bottom: 12px;
  }
  
  .hero-credentials {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }
  
  .main-banner-content p {
    font-size: 0.95rem;
  }
  
  .banner-btn {
    flex-direction: column;
    padding-bottom: 0;
  }
  
  .default-btn-one,
  .default-btn-two {
    width: 100%;
    text-align: center;
  }
  
  .banner-image {
    position: relative;
  }
  
  .banner-image .profile-image {
    max-height: 400px;
    align-self: flex-end;
  }
  
  .ptb-100 {
    padding: 60px 0;
  }
  
  .ptb-50 {
    padding: 30px 0;
  }
  
  .pt-50 {
    padding-top: 30px;
  }
  
  .pb-100 {
    padding-bottom: 60px;
  }
  
  .pb-50 {
    padding-bottom: 30px;
  }
  
  .qualification-card {
    margin-bottom: 30px;
  }
  
  .usp-content {
    padding: 20px 15px;
  }
  
  .usp-image {
    margin-top: 30px;
  }
  
  .expertise-card {
    padding: 30px 25px;
    margin-bottom: 20px;
  }
  
  .why-important-box,
  .approach-box {
    padding: 30px 25px;
  }
  
  .team-work-box {
    padding: 30px 25px;
  }
  
  .work-step {
    flex-direction: column;
    gap: 20px;
    padding: 25px 20px;
  }
  
  .step-icon {
    margin: 0 auto;
  }
  
  .about-text-content {
    padding-left: 0;
    margin-top: 30px;
  }
  
  .qualifications-header h3 {
    font-size: 1.75rem;
  }
  
  .contact-form {
    padding: 30px 20px;
  }
  
  .cta-content h2 {
    font-size: 1.75rem;
  }
  
  .cta-content p {
    font-size: 1rem;
  }
}

@media (max-width: 575px) {
  .main-banner-content {
    padding: 100px 0 30px;
  }
  
  .hero-content-box {
    padding: 0;
    min-width: auto;
  }

  .hero-content-block {
    padding: 1.5rem 1.5rem 0;
  }

  .hero-content-top {
    padding-bottom: 0.9rem;
  }

  .hero-content-bottom {
    padding: 1.2rem 1.5rem 1.5rem;
  }

  .hero-bridge-box {
    padding: 14px 1.5rem;
  }
  
  .main-banner-content h1 {
    font-size: 1.75rem;
  }
  
  .hero-prefix {
    font-size: 0.9rem;
  }
  
  .hero-suffix {
    font-size: 0.85rem;
  }
  
  .social-icon-list {
    margin-bottom: 20px;
  }
  
  .social-icon-list li a {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .btn {
    padding: 12px 25px;
    font-size: 14px;
  }
  
  .scroll-to-top {
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
  }
}

.navbar .dropdown-toggle { cursor: pointer; }

.navbook {
	background-color: rgb(46, 172, 32, 0.15) !important;
}

.navbook:hover {
	background-color: rgb(46, 172, 32, 0.35) !important;
}

.navbook.active {
	background-color: rgb(46, 172, 32, 0.35) !important;
	color: rgb(31, 115, 21) !important;
}

 .captcha-input {
	background: #FFF repeat-y left center;
    font-size: 25px !important;
    font-weight: bold;
}

 .captcha-input {
    padding-left: 112px !important;
}

/**************************************
 ** - 06.6a - Blog Teaser
 **************************************/
.blog-section {
  background: var(--light-gray);
  padding: 60px 0 70px;
}

.blog-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 46px rgba(37, 99, 168, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 58px rgba(37, 99, 168, 0.16);
}

.blog-card figure {
  margin: 0;
  position: relative;
  overflow: hidden;
}

.blog-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover img {
  transform: scale(1.05);
}

.blog-card time {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(37, 99, 168, 0.92);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.blog-card .blog-body {
  padding: 26px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.blog-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-color);
  font-weight: 600;
}

.blog-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0;
  color: var(--text-color);
}

.blog-card p {
  margin-bottom: 0;
  color: var(--text-light);
}

.blog-card .blog-footer {
  margin-top: auto;
}

.blog-card .blog-footer a {
  font-weight: 600;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.blog-card .blog-footer a:hover {
  color: var(--secondary-color);
}

@media (max-width: 991.98px) {
  .blog-card img {
    height: 220px;
  }
}

@media (max-width: 767.98px) {
  .blog-card img {
    height: 200px;
  }
}

/**************************************
 ** - 06.6b - Blog Archiv-Liste
 **************************************/
.blog-list-section {
  background: linear-gradient(180deg, rgba(37, 99, 168, 0.03) 0%, rgba(248, 249, 252, 1) 100%);
  padding: 70px 0 90px;
}

.blog-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.blog-list-item {
  background: var(--white);
  border-radius: 22px;
  padding: 28px 32px;
  box-shadow: 0 18px 44px rgba(37, 99, 168, 0.1);
  border: 1px solid rgba(37, 99, 168, 0.12);
}

.blog-list-item .row {
  align-items: stretch;
}

.blog-list-image img {
  width: 100%;
  border-radius: 18px;
  height: 220px;
  object-fit: cover;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.blog-list-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.blog-list-content h3 a {
  color: var(--secondary-color);
}

.blog-list-content h3 a:hover {
  color: var(--primary-color);
}

.blog-list-content p {
  color: var(--text-light);
  margin-bottom: 0;
}

.blog-list-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
  color: var(--secondary-color);
}

.blog-list-meta i {
  color: var(--primary-color);
  margin-right: 6px;
}

.blog-list-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--primary-color);
}

.blog-list-link:hover {
  color: var(--secondary-color);
}

@media (max-width: 991.98px) {
  .blog-list-item {
    padding: 26px;
  }

  .blog-list-image img {
    height: 200px;
  }
}

@media (max-width: 767.98px) {
  .blog-list-item {
    padding: 22px;
  }

  .blog-list-image img {
    height: 200px;
  }

  .blog-list {
    gap: 22px;
  }
}

/**************************************
 ** - 06.6c - Blog Detail Layout
 **************************************/
.blog-detail-hero {
  padding: 80px 0 40px;
  background: linear-gradient(135deg, rgba(26, 77, 122, 0.04), rgba(37, 99, 168, 0.12));
}

.blog-detail-hero .breadcrumbs {
  font-size: 0.9rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.blog-detail-hero .breadcrumbs a {
  color: inherit;
}

.blog-detail-hero h1 {
  font-size: 2.6rem;
  margin-bottom: 12px;
}

.blog-detail-hero .subtitle {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 18px;
}

.blog-detail-meta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--secondary-color);
  font-weight: 600;
}

.blog-detail-meta i {
  color: var(--primary-color);
  margin-right: 6px;
}

.blog-detail-section {
  padding: 40px 0 80px;
  background: linear-gradient(180deg, rgba(37, 99, 168, 0.04) 0%, rgba(248, 249, 252, 1) 100%);
}

.blog-article {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.blog-article h2,
.blog-article h3 {
  color: var(--secondary-color);
}

.blog-article p {
  color: var(--text-light);
  margin-bottom: 0;
}

.blog-article ul {
  padding-left: 20px;
  color: var(--text-light);
}

.blog-callout {
  border-left: 4px solid var(--primary-color);
  background: rgba(37, 99, 168, 0.06);
  padding: 24px 26px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.blog-page-header .page-header-content {
  text-align: left;
}

.blog-page-header .breadcrumbs {
  color: rgba(255, 255, 255, 0.75);
}

.blog-page-header .breadcrumbs a {
  color: rgba(255, 255, 255, 0.85);
}

.blog-page-header .breadcrumbs a:hover {
  color: var(--white);
}

.blog-page-header .blog-detail-meta {
  color: rgba(255, 255, 255, 0.85);
}

.blog-page-header .blog-detail-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  padding: 8px 16px;
  border-radius: 999px;
}

.blog-page-header .blog-detail-meta i {
  color: rgba(255, 255, 255, 0.95);
}

.blog-article-card {
  background: var(--white);
  border-radius: 24px;
  padding: 42px 46px;
  border: 1px solid rgba(37, 99, 168, 0.12);
  box-shadow: 0 22px 48px rgba(26, 77, 122, 0.12);
}

.blog-article-card .lead {
  color: var(--text-color);
}

.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.author-card,
.blog-cta-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px 30px;
  box-shadow: 0 18px 44px rgba(37, 99, 168, 0.12);
}

.author-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 18px;
}

.author-card h2 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.author-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: var(--text-light);
}

.author-card .author-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-color);
}

.author-card .author-link + .author-link {
  margin-top: 10px;
}

.blog-cta-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.blog-cta-card p {
  margin-bottom: 18px;
  color: var(--text-light);
}

.blog-cta-card .btn {
  width: 100%;
  padding: 14px 0;
}

@media (max-width: 991.98px) {
  .blog-detail-hero {
    padding: 60px 0 30px;
  }

  .blog-detail-hero h1 {
    font-size: 2.2rem;
  }

  .blog-page-header .page-header-content {
    text-align: center;
  }

  .blog-article-card {
    padding: 34px 32px;
  }
}

@media (max-width: 767.98px) {
  .blog-detail-meta {
    gap: 12px;
  }

  .author-card,
  .blog-cta-card {
    padding: 26px 24px;
  }

  .blog-article-card {
    padding: 26px 22px;
  }
}

.requiredfield
{
	background-color: #b9e2f4 !important;
}

.blogtitle
{
	margin: 0 0 0 0;
	border-bottom: 2px solid #1a4d7a;
}


/* Container (dein Platzhalter-DIV) als Floating-Anchor */
.ratedo-w20 {
  position: fixed;
  right: 0px;
  bottom: 20px;
  z-index: 99999;
}

/* Optional: auf Mobile etwas kleiner + Abstand */
@media (max-width: 1199px) {
  .ratedo-w20 {
    right: 0px;
    bottom: 12px;
    max-width: 260px;
  }
}

/* Optional: falls das Widget selbst zu breit wird */
.ratedo-w20 .ratedo-widget18,
.ratedo-w20 .ratedo-w20Widget {
  max-width: 150px;
}