@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #1a3a40;
    --primary: #2d5a63;
    --primary-light: #4a7c89;
    --accent: #5fa775;
    --accent-light: #7fc295;
    --background: #fafbfc;
    --white: #ffffff;
    --gray-light: #f5f7f9;
    --gray-medium: #e1e5e9;
    --gray-dark: #6b7280;
    --text-primary: #1a3a40;
    --text-secondary: #4b5563;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.07);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.1);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Inter', Arial, sans-serif;
    background-color: #FFFFFF;
    font-size: 16px;
    line-height: 1.7;
    color: #2F4156;
  }
  
/* Container and Layout */
  .page-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding-left: 0;
  }

/* Smooth transitions for page navigation */
main {
  transition: opacity 300ms ease-in-out;
  flex: 1;
}

main.fade-leave {
  opacity: 0;
}

main.fade-enter {
  opacity: 1;
}
  
/* Navigation - Desktop */
nav.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(26, 58, 64, 0.08);
    box-shadow: 0 12px 32px rgba(26, 58, 64, 0.08);
    backdrop-filter: blur(14px);
}

@media (max-width: 1200px) {
    .site-nav .nav-inner {
        padding: 12px 28px;
        gap: 20px;
    }
}

.site-nav .nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 14px 40px;
    box-sizing: border-box;
    min-height: 86px;
}

.site-nav .logo {
    height: 76px;
    width: auto;
    display: block;
}

.site-nav .logo-link {
    display: flex;
    align-items: center;
}

.site-nav .logo-link:focus {
    outline: none;
    box-shadow: none;
}

.site-nav .nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 14px;
}

.site-nav .nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.01em;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 14px;
    transition: var(--transition);
    position: relative;
}

.site-nav .nav-link:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(95, 167, 117, 0.3);
}

.site-nav .nav-link:hover,
.site-nav .nav-link.active {
    background: rgba(36, 90, 99, 0.12);
    color: var(--primary);
    box-shadow: 0 6px 20px rgba(36, 90, 99, 0.12);
}

.site-nav .nav-dropdown {
    position: relative;
}

.site-nav .nav-dropdown::after {
    content: "";
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 14px;
    background: transparent;
}

.site-nav .nav-dropdown-toggle::after {
    content: "";
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.site-nav .nav-dropdown-toggle.active::after {
    transform: rotate(-135deg);
}

.site-nav .nav-submenu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: var(--white);
    border: 1px solid rgba(26, 58, 64, 0.08);
    border-radius: 18px;
    box-shadow: 0 22px 60px rgba(47, 65, 86, 0.16);
    padding: 18px;
    min-width: 240px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: var(--transition);
    z-index: 10;
}

.site-nav .nav-dropdown-toggle.active + .nav-submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.site-nav .nav-submenu::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 24px;
    width: 18px;
    height: 18px;
    transform: rotate(45deg);
    background: var(--white);
    border-top: 1px solid rgba(26, 58, 64, 0.08);
    border-left: 1px solid rgba(26, 58, 64, 0.08);
    z-index: -1;
}

.site-nav .nav-submenu-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    padding: 10px 14px;
    border-radius: 12px;
    transition: var(--transition);
    position: relative;
    background: transparent;
}

.site-nav .nav-submenu-link:hover,
.site-nav .nav-submenu-link.active {
    background: rgba(95, 167, 117, 0.12);
    color: var(--primary);
    box-shadow: inset 0 0 0 1px rgba(95, 167, 117, 0.32);
}
  
/* Mobile Navigation */
.mobile-logo {
  display: none;
  position: fixed;
  top: 16px;
  left: 20px;
  height: 48px;
  width: auto;
  z-index: 1000;
}

.mobile-logo img {
  height: 100%;
  width: auto;
  display: block;
}

.mobile-nav-toggle {
  display: none;
  position: fixed;
  top: 18px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(47, 65, 86, 0.18);
  z-index: 1001;
  border: 1px solid #C6D1D9;
  cursor: pointer;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.mobile-nav-toggle span {
  display: block;
  width: 20px;
  height: 2.5px;
  background: #2F4156;
  margin: 3px 0;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation Open State */
@media (max-width: 1024px) {
  nav.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    transform: translateY(-120%);
    transition: transform 0.3s ease;
    box-shadow: 0 32px 60px rgba(26, 58, 64, 0.2);
    border-bottom: none;
  }

  nav.site-nav.active {
    transform: translateY(0);
  }

  .site-nav .nav-inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 28px;
    height: 100%;
    width: 100%;
    padding: 72px 24px 32px;
    overflow-y: auto;
  }

  .site-nav .logo-link {
    display: none; /* Hide logo in mobile nav menu */
  }

  .site-nav .logo {
    height: 56px;
    width: auto;
  }

  .site-nav .nav-links {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 14px;
  }

  .site-nav .nav-link {
    width: 100%;
    justify-content: space-between;
    font-size: 1.05rem;
    padding: 14px 18px;
    border-radius: 16px;
    box-shadow: none;
  }

  .site-nav .nav-dropdown-toggle::after {
    margin-left: 12px;
    transform: rotate(45deg);
  }

  .site-nav .nav-dropdown:hover .nav-dropdown-toggle::after,
  .site-nav .nav-dropdown:focus-within .nav-dropdown-toggle::after,
  .site-nav .nav-dropdown-toggle.active::after {
    transform: rotate(-135deg);
  }

  .site-nav .nav-submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    background: transparent;
    padding: 6px 0 0;
    margin-top: 4px;
    gap: 6px;
    min-width: 0;
  }

  .site-nav .nav-submenu::before {
    display: none;
  }

  .site-nav .nav-submenu-link {
    padding: 12px 20px;
    border-radius: 12px;
  }

  .mobile-logo {
    display: block !important;
  }

  .mobile-nav-toggle {
    display: flex !important;
  }

  main {
    padding: 72px 24px 32px;
  }
}

/* Main Content */
  main {
    flex-grow: 1;
    padding: 120px 48px 48px 48px;
    background: #FFFFFF;
    box-sizing: border-box;
    margin-left: 0;
    min-height: 100vh;
  }
  
/* Typography */
h1, h2, h3 {
    font-weight: 700;
    margin-bottom: 0.5em;
}

h1 {
    font-size: 1.8rem;
    color: #2F4156;
}

h2 {
    font-size: 1.4rem;
    color: #469D89;
}

h3 {
    font-size: 1.15rem;
    color: #036666;
}

h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}

p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

a:hover {
    color: var(--accent-light);
    text-decoration: underline;
}

/* Lists */
ul, ol {
    margin-left: 1.5em;
    margin-bottom: 1.5em;
}

li {
    margin-bottom: 12px;
    color: var(--text-secondary);
    font-size: 17px;
}

/* Buttons */
button, .cta-button {
    background: #67B99A;
    color: #FFFFFF;
    padding: 12px 32px;
    border: none;
    border-radius: 20px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(47, 65, 86, 0.08);
    transition: background 0.2s, box-shadow 0.2s;
    text-decoration: none;
    display: inline-block;
    margin-top: 1.5em;
}

button:hover, .cta-button:hover {
    background: #469D89;
    box-shadow: 0 4px 16px rgba(47, 65, 86, 0.12);
}

/* Project Grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin: 2.5rem 0;
  }
  
.project-card-link {
  text-decoration: none;
}

.project-card {
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(47, 65, 86, 0.08);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  transition: box-shadow 0.2s, border 0.2s;
  height: 100%;
  border: 1.5px solid #C6D1D9;
  position: relative;
  overflow: hidden;
}

.project-card h3 {
  color: #248277;
  margin-top: 0;
  margin-bottom: 0.7rem;
  font-size: 1.18rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.project-card p {
  color: #2F4156;
  margin-bottom: 0;
  font-size: 1.01rem;
}

.project-card:hover {
  box-shadow: 0 6px 24px rgba(47, 65, 86, 0.13);
  border: 1.5px solid #469D89;
}

.project-card:hover h3,
.project-card:hover p {
  color: #036666;
}

/* Case Studies */
.case-studies {
    margin: 60px 0;
}

.case-study {
    background: var(--white);
    padding: 32px;
    border-radius: var(--border-radius);
    margin-bottom: 24px;
    border: 1px solid var(--gray-medium);
    position: relative;
    box-shadow: var(--shadow-md);
}

.case-study::before {
    content: '“';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 80px;
    font-weight: 700;
    color: var(--accent-light);
    opacity: 0.2;
    line-height: 1;
}

.case-study h4 {
    color: var(--primary-dark);
    margin-bottom: 8px;
}

/* Sections */
.about-section, .philosophy-section, .approach-section {
    margin-bottom: 48px;
}

/* Back Link */
.back-link {
    display: inline-block;
    margin-bottom: 1.5em;
    color: #469D89;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s;
}
.back-link:hover {
    color: #E55838;
    text-decoration: underline;
}

/* Contact Information */
main p a[href^="mailto:"],
main p a[href^="tel:"] {
    color: var(--accent);
    font-weight: 600;
    font-size: 18px;
}

/* Mobile Styles */

@media (max-width: 768px) {
    main {
        padding: 80px 24px 36px;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .project-card {
        padding: 24px;
    }
    
    h1 {
        font-size: 28px;
    }
    
    h2 {
        font-size: 24px;
    }
    
    p, li {
        font-size: 16px;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .testimonial-card {
        padding: 40px 24px 40px 24px;
    }
    
    .testimonial-card::before {
        font-size: 42px;
        top: 14px;
        left: 18px;
    }
    
    .testimonial-card::after {
        font-size: 42px;
        bottom: 14px;
        right: 18px;
    }

    .angebote-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .angebot-card {
        padding: 24px;
    }
}

/* Dark overlay for mobile menu */
.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 998;
}

.nav-overlay.active {
  display: block;
  }
  
  /* Responsive Design */
@media (max-width: 900px) {
  .site-nav .nav-inner {
    padding: 14px 24px;
  }

  main {
    padding: 88px 32px 36px;
  }
}
@media (max-width: 600px) {
    main {
        padding: 80px 24px 40px;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .project-card {
        padding: 24px;
        min-height: auto;
    }
    
    h1 {
        font-size: 32px;
    }
    
    h2 {
        font-size: 24px;
    }
    
    p, li {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    main {
        padding: 72px 16px 32px;
    }

    .mobile-nav-toggle {
        top: 16px;
        right: 16px;
        left: auto;
    }

    button, .cta-button {
        width: 100%;
        text-align: center;
    }

    .testimonial-card {
        padding: 36px 20px 36px 20px;
    }

    .testimonial-card::before {
        font-size: 36px;
        top: 12px;
        left: 16px;
    }

    .testimonial-card::after {
        font-size: 36px;
        bottom: 12px;
        right: 16px;
    }

    .testimonial-card strong {
        font-size: 16px;
    }

    .testimonial-card p {
        font-size: 15px;
    }

    .angebot-card {
        padding: 20px;
    }

    .angebot-card h3 {
        font-size: 18px;
    }

    .angebot-card p {
        font-size: 15px;
    }

    .qualifications-grid {
        grid-template-columns: 1fr;
        padding: 0 5px;
        gap: 20px;
    }

    .qualification-item {
        padding: 20px;
    }

    .qualification-item h3 {
        font-size: 17px;
        word-break: break-word;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus states for accessibility */
button:focus,
a:focus,
input:focus,
textarea:focus {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
    }

/* Print styles */
@media print {
    nav,
    .mobile-nav-toggle,
    .cta-button {
        display: none;
    }
    
    main {
        margin-left: 0;
      padding: 20px;
    }
  }

/* Professional Hero Section */
.hero-section {
    background: linear-gradient(180deg, #f1f7f6 0%, #ffffff 55%);
    padding: clamp(96px, 12vw, 140px) 0 clamp(72px, 9vw, 120px);
    position: relative;
}

.hero-container {
    position: relative;
    padding: 0 clamp(20px, 5vw, 48px);
}

.hero-home .hero-container {
    padding-left: clamp(16px, 6vw, 80px);
    padding-right: clamp(24px, 6vw, 80px);
    max-width: min(92vw, 1380px);
    margin-left: auto;
    margin-right: auto;
}

.overlap-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(32px, 6vw, 72px);
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.hero-content {
    text-align: left;
}

.hero-content h1 {
    font-size: clamp(32px, 4.2vw, 50px);
    font-weight: 600;
    line-height: 1.25;
    color: var(--text-primary);
    margin-bottom: clamp(20px, 3vw, 32px);
}

.hero-home .hero-content h1 {
    font-size: clamp(26px, 3.4vw, 40px);
}

.hero-lead {
    font-size: clamp(18px, 2.3vw, 22px);
    line-height: 1.6;
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 16px;
}

.hero-description {
    font-size: 17px;
    line-height: 1.65;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 640px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    justify-content: flex-start;
}

.btn-primary,
.btn-secondary {
    border-radius: 999px;
    padding: 12px 28px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    border: 2px solid var(--primary);
    box-shadow: 0 12px 28px rgba(36, 90, 99, 0.25);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    box-shadow: 0 18px 32px rgba(26, 58, 64, 0.28);
}

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

.btn-secondary:hover {
    background: rgba(47, 97, 108, 0.08);
    color: var(--primary-dark);
}

.hero-card {
    background: var(--white);
    border-radius: 28px;
    padding: clamp(32px, 6vw, 56px);
    box-shadow: 0 32px 70px rgba(26, 58, 64, 0.12);
    border: 1px solid rgba(26, 58, 64, 0.08);
    position: relative;
}

.hero-home .hero-card {
    background: transparent;
    box-shadow: none;
    border: none;
    padding: clamp(28px, 5vw, 48px);
    max-width: clamp(360px, 34vw, 520px);
    width: 100%;
    z-index: 2;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.overlap-media {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-home .overlap-media {
    z-index: 1;
}

.overlap-media::before {
    content: "";
    position: absolute;
    width: clamp(220px, 32vw, 380px);
    height: clamp(260px, 38vw, 450px);
    border-radius: 32px;
    background: linear-gradient(140deg, rgba(111, 187, 154, 0.28), rgba(47, 97, 108, 0.18));
    transform: translate(10%, -8%);
    z-index: 0;
}

.hero-photo {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: clamp(280px, 35vw, 460px);
    border-radius: 28px;
    box-shadow: 0 30px 70px rgba(26, 58, 64, 0.24);
    border: 4px solid rgba(255, 255, 255, 0.85);
    object-fit: cover;
}

@media (min-width: 1024px) {
    .overlap-layout {
        grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    }

    .overlap-layout > .hero-card {
        transform: translateX(32px);
    }

    .overlap-layout > .overlap-media {
        justify-self: end;
        transform: translateX(-32px);
    }
}

@media (min-width: 1024px) {
    .hero-home .overlap-layout {
        grid-template-columns: minmax(340px, 420px) 1fr;
        column-gap: 72px;
        align-items: center;
    }

    .hero-home .overlap-layout > .hero-card {
        transform: none;
        margin: 0;
    }

    .hero-home .overlap-layout > .overlap-media {
        transform: translate(0, -60px);
        align-self: stretch;
        justify-content: flex-start;
    }

    .hero-home .overlap-media {
        justify-content: flex-start;
    }

    .hero-home .hero-photo {
        width: 100%;
        max-width: none;
    }

    .hero-home .overlap-media::before {
        width: 85%;
        height: 100%;
        transform: translate(20%, -18%);
    }
}

@media (min-width: 1440px) {
    .hero-home .hero-container {
        max-width: min(92vw, 1650px);
    }

    .hero-home .overlap-layout {
        grid-template-columns: minmax(360px, 440px) 1fr;
    }

    .hero-home .overlap-layout > .overlap-media {
        transform: translate(0, -90px);
    }
}

@media (max-width: 900px) {
    .hero-section {
        padding: clamp(72px, 18vw, 110px) 0 clamp(56px, 14vw, 90px);
    }

    .hero-card {
        padding: clamp(28px, 8vw, 40px);
    }

    .hero-home .hero-card {
        min-height: auto;
        justify-content: flex-start;
        max-width: 100%;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-content {
        text-align: center;
    }

    /* Reverse order on mobile: image first, then text */
    .overlap-layout {
        gap: clamp(40px, 8vw, 60px);
    }

    .overlap-layout > .overlap-media {
        order: -1;
    }

    .overlap-layout > .hero-card,
    .overlap-layout > .overlap-media {
        transform: none;
    }

    .overlap-media::before {
        transform: translate(0, -6%);
    }

    .hero-photo {
        max-width: 280px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .hero-container {
        padding: 0 20px;
    }

    .hero-actions {
        width: 100%;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}

/* Professional Page Layout */
.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 48px);
}

.page-header {
    background: linear-gradient(180deg, #ffffff 0%, #f3f6f8 100%);
    padding: clamp(96px, 12vw, 140px) 0 clamp(68px, 9vw, 110px);
    border-bottom: none;
    position: relative;
}

.page-header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: min(1200px, 90%);
    height: 1px;
    background: rgba(36, 90, 99, 0.18);
    transform: translateX(-50%);
}

.page-header-content {
    padding: 0;
}

.page-text {
    text-align: left;
}

.page-text h1 {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.page-text h2 {
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
}

.page-text .lead {
    font-size: clamp(18px, 2.4vw, 20px);
    font-weight: 500;
    line-height: 1.65;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.page-text p {
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-secondary);
    margin-bottom: 18px;
    max-width: 650px;
}

.qualifications-section {
    background: var(--gray-light);
    padding: clamp(40px, 8vw, 80px) clamp(16px, 4vw, 40px);
    border-radius: 20px;
    margin: 40px 20px;
}

.qualifications-section h2 {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 40px;
    text-align: center;
}

.qualifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 28px;
    margin-bottom: 32px;
    width: 100%;
    max-width: 100%;
    padding: 0 20px;
    justify-content: space-between;
}

.qualification-item {
    background: white;
    padding: 32px;
    border-radius: 12px;
    border: 1px solid var(--gray-medium);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    min-height: 140px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    width: 100%;
}

.qualification-item h3 {
    font-size: 19px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.4;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.qualification-item p {
    font-size: 15px;
    color: var(--text-secondary);
    margin: 0;
}

.languages {
    text-align: center;
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.cta-section {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

@media (max-width: 1024px) {
    .overlap-layout {
        gap: clamp(28px, 6vw, 48px);
    }

    .hero-photo {
        max-width: clamp(280px, 40vw, 380px);
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 60px 0 80px;
    }

    .cta-section {
        flex-direction: column;
        gap: 12px;
    }

    .cta-section .btn-primary,
    .cta-section .btn-secondary {
        width: 100%;
        max-width: 260px;
    }

    .qualifications-grid {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }

    .qualification-item {
        padding: 24px;
    }

    .qualification-item h3 {
        font-size: 18px;
    }
}

/* Card Link Fixes - Prevent text underlines on entire cards */
.angebot-card-link,
.project-card-link,
.service-card {
    text-decoration: none !important;
    color: inherit;
}

.angebot-card-link:hover,
.project-card-link:hover,
.service-card:hover {
    text-decoration: none !important;
}

.angebot-card-link h3,
.angebot-card-link p,
.project-card-link h3,
.project-card-link p,
.service-card h3,
.service-card p {
    text-decoration: none !important;
}

/* Services Section */
.services-section {
    background: white;
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 24px;
}

.service-card {
    background: white;
    border: 1px solid var(--gray-medium);
    border-radius: 8px;
    padding: 32px 24px;
    text-decoration: none;
    color: inherit;
    display: block;
    transition: border-color 0.2s ease;
}

.service-card:hover {
    border-color: var(--primary);
}

.service-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .service-card {
        padding: 24px 20px;
    }
}

/* Service Page Template */
.service-hero {
    background: linear-gradient(135deg, #f8fdfb 0%, #ffffff 100%);
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.service-hero::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(95, 167, 117, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.service-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 40px);
    position: relative;
    z-index: 1;
}

.service-hero-content {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 20px;
}

.service-hero-image {
    position: relative;
}

.service-hero-image::before {
    content: "";
    position: absolute;
    top: -20px;
    left: -20px;
    right: 40px;
    bottom: 40px;
    background: linear-gradient(135deg, rgba(95, 167, 117, 0.15) 0%, rgba(45, 90, 99, 0.08) 100%);
    border-radius: 20px;
    z-index: -1;
    transform: rotate(-3deg);
}

.service-hero-image img {
    width: 100%;
    max-width: 280px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    display: block;
}

.service-hero-text {
    background: white;
    padding: 48px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(95, 167, 117, 0.08);
    border: 1px solid rgba(95, 167, 117, 0.12);
    position: relative;
}

.service-hero-text::after {
    content: "";
    position: absolute;
    bottom: -30px;
    right: 40px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(95, 167, 117, 0.06) 0%, transparent 60%);
    border-radius: 50%;
}

.service-hero-text h1 {
    font-size: 36px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.service-hero-text .lead {
    font-size: 19px;
    font-weight: 500;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.service-hero-text p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 0;
}

@media (max-width: 900px) {
    .service-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .service-hero-image {
        max-width: 240px;
        margin: 0 auto;
    }

    .service-hero-text {
        padding: 36px;
    }
}

@media (max-width: 768px) {
    .service-hero {
        padding: 60px 0 40px;
    }

    .service-hero-content {
        gap: 40px;
    }

    .service-hero-text {
        padding: 28px;
    }

    .service-hero-text h1 {
        font-size: 28px;
    }
}

.service-header {
    background: white;
    padding: 60px 0;
    border-bottom: 1px solid var(--gray-medium);
}

.back-link {
    color: var(--primary);
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 40px;
    display: inline-block;
}

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

.service-header-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 20px;
}

.service-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    object-fit: contain;
    height: auto;
    display: block;
    margin: 0 auto;
}

.service-text h1 {
    font-size: 32px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.service-text .lead {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.service-text p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.service-details {
    background: var(--gray-light);
    padding: 80px 0;
}

.service-details h2 {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 40px;
    text-align: center;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.detail-item {
    background: white;
    padding: 24px;
    border-radius: 8px;
    border: 1px solid var(--gray-medium);
}

.detail-item h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.detail-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.service-offers {
    background: white;
    padding: 80px 0;
}

.service-offers h2 {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 40px;
    text-align: center;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.offer-item {
    background: var(--gray-light);
    padding: 32px 24px;
    border-radius: 8px;
    border: 1px solid var(--gray-medium);
}

.offer-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.offer-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.service-cta {
    text-align: center;
    padding: 40px 0;
}

.service-cta h3 {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 24px;
}

/* Service Page Responsive */
@media (max-width: 1024px) {
    .service-header-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .service-image {
        max-width: 250px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .service-header {
        padding: 40px 0;
    }
    
    .service-text h1 {
        font-size: 24px;
    }
    
    .service-details,
    .service-offers {
        padding: 60px 0;
    }
    
    .details-grid,
    .offers-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer Section */
.footer {
    background: linear-gradient(135deg, #1a3a40 0%, #244a52 100%);
    color: #f8fafc;
    padding: clamp(72px, 10vw, 110px) 0 clamp(48px, 6vw, 72px);
    margin-top: 120px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: "";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: min(1200px, 90%);
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    box-shadow: 0 12px 28px rgba(26, 58, 64, 0.24);
}

.footer::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 160px;
    background: linear-gradient(180deg, rgba(127, 194, 149, 0.25), transparent 100%);
    opacity: 0.7;
}

.footer-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 48px);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: clamp(24px, 5vw, 48px);
}

.footer-section h3 {
    color: #f8fafc;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 20px;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-light);
    transform: translateX(4px);
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 8px;
}

.footer-contact a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
}

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

.footer-bottom {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    margin-top: clamp(40px, 6vw, 64px);
    padding-top: 24px;
    text-align: center;
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
}

@media (max-width: 768px) {
    .footer {
        padding: 56px 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-links a {
        justify-content: flex-start;
    }
}

/* Contact Section */
.contact-section {
    background: #FFFFFF;
    padding: 40px;
    border-radius: var(--border-radius);
    margin-bottom: 60px;
    border: 1.5px solid #C6D1D9;
}

.contact-info {
    margin: 24px 0;
}

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

/* Benefits Section */
.benefits-section {
    margin-bottom: 60px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 24px;
    margin-top: 32px;
}

.benefit-item {
    background: var(--white);
    padding: 32px;
    border-radius: var(--border-radius);
    border: 1px solid var(--gray-medium);
    transition: var(--transition);
}

.benefit-item:hover {
    border-color: var(--primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.benefit-item h4 {
    color: var(--primary-dark);
    margin-bottom: 12px;
}

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

/* Team Member Card */
.team-member {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    border: 1px solid var(--gray-medium);
    margin-bottom: 32px;
}

.qualifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.qualification-item {
    background: #FFFFFF;
    padding: 16px 24px;
    border-radius: 8px;
    font-size: 16px;
    color: var(--text-primary);
    border: 1.5px solid #C6D1D9;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .contact-section {
        padding: 28px 24px;
    }
    
    .benefits-grid {
        gap: 20px;
    }
    
    .benefit-item {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 24px 20px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* Angebote Section */
.angebote-section {
    margin: 60px 0;
}

/* Anwendungsfelder Section - Service Pages */
.anwendungsfelder-section {
    background: var(--gray-light);
    padding: 80px 0;
}

@media (max-width: 768px) {
    .anwendungsfelder-section {
        padding: 60px 0;
    }
}

.anwendungsfelder-section h2 {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 40px;
    text-align: center;
}

.anwendungsfelder-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 40px);
}

/* Extra large screens - show all cards in one row */
@media (min-width: 1400px) {
    .anwendungsfelder-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

/* Large screens - up to 4 cards per row */
@media (min-width: 1200px) and (max-width: 1399px) {
    .anwendungsfelder-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: 1200px;
    }
}

/* Medium-large screens - 3 cards per row */
@media (min-width: 992px) and (max-width: 1199px) {
    .anwendungsfelder-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Medium screens - 2 cards per row */
@media (min-width: 768px) and (max-width: 991px) {
    .anwendungsfelder-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Small screens - 1 card per row */
@media (max-width: 767px) {
    .anwendungsfelder-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
        gap: 16px;
    }
}

.anwendungsfeld-card {
    background: white;
    padding: 24px;
    border-radius: 8px;
    border: 1px solid var(--gray-medium);
}

.anwendungsfeld-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.anwendungsfeld-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

/* Adjust card styling for extra large screens */
@media (min-width: 1400px) {
    .anwendungsfeld-card {
        padding: 20px;
    }

    .anwendungsfeld-card h3 {
        font-size: 17px;
    }

    .anwendungsfeld-card p {
        font-size: 15px;
    }
}

/* Adjust for smaller screens */
@media (max-width: 767px) {
    .anwendungsfeld-card {
        padding: 20px;
    }

    .anwendungsfeld-card h3 {
        font-size: 17px;
    }

    .anwendungsfeld-card p {
        font-size: 15px;
    }
}

.angebote-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 32px;
    margin-top: 32px;
}

.angebot-card-link {
    text-decoration: none;
    color: inherit;
}

.angebot-card {
    background: #FFFFFF;
    border: 1.5px solid #C6D1D9;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 12px rgba(47, 65, 86, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.angebot-card:hover {
    box-shadow: 0 4px 12px rgba(70, 157, 137, 0.1);
    border: 1px solid #469D89;
}

.angebot-card h3 {
    color: #248277;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.4;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.angebot-card h3::after {
    content: "→";
    font-size: 24px;
    color: #469D89;
    opacity: 0.6;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.angebot-card p {
    color: #2F4156;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

.angebot-card:hover h3,
.angebot-card:hover p {
    color: #036666;
}

.angebot-card:hover h3::after {
    opacity: 1;
    transform: translateX(4px);
}

/* Qualifications Section */
.qualifikationen-section {
    margin: 60px 0;
    opacity: 0.8;
}

.qualifikationen-section h2 {
    color: #6b7280;
    font-size: 24px;
}

.qualifikationen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 24px;
    margin-top: 32px;
}

.qualifikation-card {
    background: #FFFFFF;
    border: 1.5px solid #C6D1D9;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 12px rgba(47, 65, 86, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.qualifikation-card:hover {
    box-shadow: 0 4px 12px rgba(70, 157, 137, 0.1);
    border: 1px solid #469D89;
}

.qualifikation-card h3 {
    color: #248277;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
}

.qualifikation-card p {
    color: #2F4156;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
}

/* What Makes Me Stand Out Section */
.auszeichnungen-section {
    margin: 80px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: clamp(32px, 6vw, 60px) clamp(16px, 4vw, 40px);
    border-radius: 20px;
}

.auszeichnungen-section h2 {
    color: #248277;
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

.auszeichnungen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 32px;
    margin-top: 32px;
    padding: 0 20px;
}

.auszeichnung-card {
    background: #FFFFFF;
    border: 2px solid #469D89;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 8px 25px rgba(70, 157, 137, 0.15);
    transition: all 0.3s ease;
    text-align: center;
}

.auszeichnung-card:hover {
    box-shadow: 0 4px 12px rgba(70, 157, 137, 0.1);
    border: 1px solid #469D89;
}

.auszeichnung-card h3 {
    color: #248277;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.4;
}

.auszeichnung-card p {
    color: #2F4156;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* Testimonials Section */
.testimonials-section {
    margin: 60px 0;
}

.testimonials-section h2 {
    text-align: center;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 32px;
    margin-top: 32px;
}

.testimonial-card {
    background: #FFFFFF;
    border: 1.5px solid #C6D1D9;
    border-radius: 12px;
    padding: 48px 32px 48px 32px;
    box-shadow: 0 4px 12px rgba(47, 65, 86, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 16px;
    left: 20px;
    font-size: 48px;
    font-weight: 300;
    color: #469D89;
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card::after {
    content: '"';
    position: absolute;
    bottom: 16px;
    right: 20px;
    font-size: 48px;
    font-weight: 300;
    color: #469D89;
    opacity: 0.3;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    box-shadow: 0 4px 12px rgba(70, 157, 137, 0.1);
    border: 1px solid #469D89;
}

.testimonial-card strong {
    color: #248277;
    font-size: 18px;
    font-weight: 600;
    display: block;
    margin-bottom: 16px;
    line-height: 1.4;
}

.testimonial-card p {
    color: #2F4156;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.testimonial-card span {
    color: #469D89;
    font-size: 14px;
    font-weight: 500;
    font-style: italic;
    display: block;
    margin-top: auto;
}

.testimonial-author {
    font-style: italic;
    color: var(--text-secondary);
    font-size: 15px;
    margin-top: 12px;
}

/* Service Description Section */
.service-description {
    margin-bottom: 40px;
}

.service-description > p:first-of-type {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
}

.intro-text {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: var(--text-secondary);
}

/* Workshop Formats */
.workshop-formats {
    margin: 32px 0;
}

.workshop-formats .case-study {
    margin-bottom: 24px;
}

.workshop-formats .case-study p {
    margin-bottom: 8px;
}

/* Enhanced list styling */
ol li {
    margin-bottom: 16px;
}

ol li strong {
    color: var(--primary-dark);
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-dark: #000;
        --text-primary: #000;
        --text-secondary: #333;
        --accent: #005500;
        --background: #fff;
        --gray-light: #f0f0f0;
    }
}

/* Service Image Styles */
.service-image-container {
    margin-bottom: 32px;
    text-align: center;
}

.service-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    display: block;
    margin: 0 auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-image:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* Responsive adjustments for service images */
@media (max-width: 768px) {
    .service-image {
        max-width: 100%;
        border-radius: calc(var(--border-radius) / 2);
    }
    
    .service-image-container {
        margin-bottom: 24px;
    }
}

/* About Page Image Styles */
.about-image-container {
    margin-bottom: 32px;
    text-align: center;
}

.about-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    display: block;
    margin: 0 auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-image:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* Responsive adjustments for about image */
@media (max-width: 768px) {
    .about-image {
        max-width: 100%;
        border-radius: calc(var(--border-radius) / 2);
    }
    
    .about-image-container {
        margin-bottom: 24px;
    }
}

/* Angebot Page Image Styles */
.angebot-image-container {
    margin-bottom: 32px;
    text-align: center;
}

.angebot-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    display: block;
    margin: 0 auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.angebot-image:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

/* Responsive adjustments for angebot image */
@media (max-width: 768px) {
    .angebot-image {
        max-width: 100%;
        border-radius: calc(var(--border-radius) / 2);
    }
    
    .angebot-image-container {
        margin-bottom: 24px;
    }
}
  
  
