/* General Body and Typography */
body {
  font-family: "Roboto", Helvetica, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #000000; /* Schwarz */
  background-color: #ffffff; /* Reines Weiß für den gesamten Seitenhintergrund */
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", Helvetica, sans-serif;
  color: #1d2a55; /* Dunkelblau aus der Palette */
  margin-bottom: 15px;
}

a {
  color: #8bc655; /* Grün aus der Palette */
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center; /* Zentriert den Inhalt horizontal */
}

main {
  padding-top: 15px;
  background-color: #f9f9f9; /* Sehr helles Grau für den Hauptinhalt */
  border-radius: 10px; /* Abgerundete Ecken für den Hauptinhalt */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); /* Leichter Schatten für Tiefe */
}

header {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Enhanced shadow for depth */
  border-bottom-left-radius: 12px; /* Slightly larger rounded corners */
  border-bottom-right-radius: 12px;
  border-bottom: 2px solid #8bc655;
}

header .container {
  max-width: 1400px;
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap; /* Für mobile Responsivität */
}

.nav-container {
  display: flex;
  align-items: center;
  gap: 20px;
}

.back-btn {
  font-family: "Roboto", Helvetica, sans-serif;
  color: #1d2a55;
  font-weight: 600;
  padding: 10px 20px;
  border: 2px solid #1d2a55;
  border-radius: 8px;
  background-color: transparent;
  text-decoration: none;
  transition: color 0.3s ease, background-color 0.3s ease, transform 0.2s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.back-btn:hover {
  color: #fff;
  background-color: #1d2a55;
  text-decoration: none;
  transform: translateY(-2px);
}

.back-btn i {
  font-size: 0.9rem;
}

/* Updated .logo for image */
.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  overflow: hidden;
}

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

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

nav ul li {
  margin: 0;
}

nav ul li a {
  font-family: "Roboto", Helvetica, sans-serif;
  color: #000000;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 8px;
  transition: color 0.3s ease, background-color 0.3s ease, transform 0.2s ease;
}

nav ul li a:hover {
  color: #fff; /* Textfarbe auf Weiß beim Hover */
  background-color: #8bc655; /* Grün beim Hover */
  text-decoration: none;
  transform: translateY(-2px);
}

/* Language Switcher Styles */
.language-switcher {
  display: flex;
  gap: 5px;
  align-items: center;
}

.lang-btn {
  font-family: "Roboto", Helvetica, sans-serif;
  color: #000000;
  font-weight: 600;
  padding: 8px 15px;
  border: 2px solid #8bc655;
  border-radius: 8px;
  background-color: transparent;
  cursor: pointer;
  transition: color 0.3s ease, background-color 0.3s ease, transform 0.2s ease;
  font-size: 0.9rem;
}

.lang-btn:hover {
  color: #fff;
  background-color: #8bc655;
  transform: translateY(-2px);
}

.lang-btn.active {
  color: #fff;
  background-color: #1d2a55;
  border-color: #1d2a55;
}

.lang-btn.active:hover {
  background-color: #8bc655;
  border-color: #8bc655;
}

/* Hero Section */
.hero {
  background: url("../plum/img/Slider_1.webp") no-repeat center center/cover;
  color: #fff; /* Textfarbe auf Weiß für guten Kontrast */
  text-align: center;
  padding: 100px 20px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(
    29,
    42,
    85,
    0.7
  ); /* Dunkelblauer Overlay mit 70% Transparenz */
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #fff; /* Überschrift bleibt weiß */
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #fff; /* Absatz bleibt weiß */
}

.btn {
  display: inline-block;
  background-color: #8bc655; /* Grün aus der Palette */
  color: #fff;
  padding: 12px 25px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  font-weight: bold;
}

.btn:hover {
  background-color: #f6ac1a; /* Orange aus der Palette - für Button-Hover beibehalten */
  text-decoration: none;
}

/* Sections */
/* Keyframes for fade-in animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

section {
  padding: 60px 0;
  background-color: #ffffff; /* Alle Sektionen standardmäßig weiß */
  opacity: 0; /* Start hidden for animation */
  transform: translateY(20px); /* Start slightly below for animation */
  animation: fadeIn 0.8s ease-out forwards; /* Apply fade-in animation */
}

/* Delay for subsequent sections */
section:nth-of-type(1) {
  animation-delay: 0s;
} /* Hero section usually visible immediately */
section:nth-of-type(2) {
  animation-delay: 0.2s;
}
section:nth-of-type(3) {
  animation-delay: 0.4s;
}
section:nth-of-type(4) {
  animation-delay: 0.6s;
}
section:nth-of-type(5) {
  animation-delay: 0.8s;
}
section:nth-of-type(6) {
  animation-delay: 1s;
}

section:nth-child(even) {
  background-color: rgba(
    139,
    189,
    35,
    0.05
  ); /* Sehr subtiler Grünton für abwechselnde Sektionen */
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.5rem;
  color: #1d2a55; /* Dunkelblau aus der Palette */
  background-color: rgba(
    29,
    42,
    85,
    0.05
  ); /* Sehr leichter, transparenter dunkelblauer Hintergrund */
  padding: 15px 30px; /* Polsterung um den Titel */
  border-radius: 8px; /* Abgerundete Ecken */
  display: inline-block; /* Damit der Hintergrund die Textbreite annimmt */
  width: auto; /* Stellt sicher, dass er den Inhalt umschließt */
  max-width: 90%; /* Verhindert, dass er auf kleinen Bildschirmen zu breit wird */
}
/* Intro Section */
.intro-section {
  padding: 80px 0;
  margin-top: 10px;
}

.intro-section p {
  margin-bottom: 20px;
}

/* Services Section */
.services-section {
  padding: 80px 0;
  margin-top: 10px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-items: center; /* Center grid items */
  width: 100%;
  max-width: 1200px; /* Match container width */
}

.service-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  max-width: 400px; /* Limit width for centering */
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Align content */
  min-height: 250px; /* Ensure consistent height */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
  transform: translateY(-5px); /* Subtle lift on hover */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.service-item i {
  color: #8bc655; /* Green for icons */
  font-size: 2rem;
  margin-bottom: 15px;
}

.service-item h3 {
  font-family: "Roboto", Helvetica, sans-serif; /* Roboto for service headings */
  font-weight: 700; /* Bold for service headings */
  color: #1d2a55; /* Dark blue from the palette */
  margin-bottom: 15px;
}

.service-item p {
  font-family: "Roboto", Helvetica, sans-serif; /* Roboto for service text */
  font-weight: 400; /* Regular for body text */
  margin-bottom: 0; /* Remove bottom margin to avoid extra space */
  flex-grow: 1; /* Allow paragraph to take available space */
}

.services-section .btn {
  margin-top: 40px;
}

/* Testimonials Section */
.testimonials-section {
  padding: 80px 0;
  margin-top: 10px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-items: center;
  width: 100%;
  max-width: 1200px;
}

.testimonial-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  max-width: 400px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-item i {
  color: #8bc655; /* Green for quote icon */
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.testimonial-item p {
  font-family: "Roboto", Helvetica, sans-serif;
  font-weight: 400;
  font-style: italic;
  color: #333;
  margin-bottom: 15px;
}

.testimonial-item h3 {
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.testimonial-item p:last-child {
  font-size: 1rem;
  color: #666; /* Lighter for secondary text */
  font-style: normal;
}

/* About Section */
.about-section {
  padding: 80px 0; /* Increased padding for spacious feel */
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
  max-width: 1000px; /* Slightly narrower than container for balance */
}

.about-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-item:hover {
  transform: translateY(-5px); /* Subtle lift on hover */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.about-item h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.about-item p {
  margin-bottom: 20px;
}

.about-item .btn {
  margin-top: 20px;
}

.values-wrapper {
  display: flex;
  justify-content: center;
  gap: 15px; /* Reduced spacing between columns */
  width: 100%;
  max-width: 700px; /* Slightly narrower for compactness */
  margin: 0 auto;
  padding: 10px;
  background-color: rgba(139, 189, 35, 0.05); /* Subtle green background */
  border-radius: 8px;
  border: 1px solid #ddd; /* Subtle border for definition */
}

.keys-column,
.values-column {
  flex: 1; /* Equal width for both columns */
  display: flex;
  flex-direction: column;
  gap: 8px; /* Tighter spacing between items */
}

.value-key {
  display: inline-flex;
  align-items: center;
  gap: 6px; /* Tighter spacing between icon and text */
  font-family: "Roboto", Helvetica, sans-serif;
  font-weight: 500; /* Medium weight for keys */
  color: #1d2a55; /* Dark blue for keys */
  font-size: 0.95rem; /* Slightly smaller for compactness */
  padding: 6px 10px;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.value-key:hover {
  background-color: rgba(139, 189, 35, 0.1); /* Subtle green on hover */
  transform: translateX(2px); /* Subtle shift for interactivity */
}

.value-key i {
  color: #8bc655; /* Green for icons */
  font-size: 0.95rem;
}

.value-description {
  font-family: "Roboto", Helvetica, sans-serif;
  font-weight: 400; /* Regular weight for descriptions */
  font-size: 0.95rem; /* Slightly smaller for compactness */
  color: #333; /* Slightly lighter for softness */
  padding: 6px 10px;
  border-radius: 5px;
  text-align: left;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.value-description:hover {
  background-color: rgba(139, 189, 35, 0.1); /* Subtle green on hover */
  transform: translateX(2px); /* Subtle shift for interactivity */
}

.keys-column .value-key:nth-child(even),
.values-column .value-description:nth-child(even) {
  background-color: rgba(
    139,
    189,
    35,
    0.03
  ); /* Very subtle alternating background */
}

/* Team Section */
.team-section {
  margin-top: 40px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  justify-items: center;
  width: 100%;
  max-width: 1000px;
}

.team-member {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.team-member img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.team-member h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.team-member p {
  font-size: 1rem;
  color: #333;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-items: center; /* Center grid items */
  width: 100%;
}

.service-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  overflow: hidden;
  transition: max-height 0.7s ease-in-out, box-shadow 0.2s ease-in-out;
  max-height: 200px;
  max-width: 400px; /* Limit width for centering */
  display: flex; /* Use flexbox for consistent button alignment */
  flex-direction: column; /* Stack content vertically */
  justify-content: space-between; /* Push button to bottom */
  min-height: 250px; /* Ensure enough space for consistent height */
}

.service-item h3 {
  font-family: "Roboto", Helvetica, sans-serif; /* Roboto for service headings */
  font-weight: 700; /* Bold for service headings */
  color: #549914; /* Green from the palette */
  margin-bottom: 15px;
}

.service-item p {
  font-family: "Roboto", Helvetica, sans-serif; /* Roboto for service text */
  font-weight: 400; /* Regular for body text */
  margin-bottom: 0; /* Remove bottom margin to avoid extra space */
  flex-grow: 1; /* Allow paragraph to take available space */
}

/* Expanded state for service item */
.service-item.expanded {
  max-height: 1000px;
}

/* Styles for "Read More/Less" buttons */
.service-item .btn-small {
  font-family: "Roboto", Helvetica, sans-serif; /* Roboto for buttons */
  font-weight: 500; /* Medium weight */
  background-color: #1d2a55; /* Dark blue */
  color: #fff;
  padding: 8px 15px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  margin-top: auto; /* Push button to the bottom */
  transition: background-color 0.3s ease;
}

.service-item .btn-small:hover {
  background-color: #8bc655; /* Green on hover */
}

/* Certificates Section */
.certificates-section {
  padding: 80px 0; /* Increased padding for spacious feel */
}

.certificates-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center; /* Center certificate items */
  width: 100%;
  max-width: 1200px; /* Match container width */
}

.certificate-item {
  background-color: #fff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: center;
  flex: 1 1 300px; /* Flexible width, minimum 300px */
  max-width: 360px; /* Limit max width for balance */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Align button to bottom */
  min-height: 220px; /* Ensure consistent height */
}

.certificate-item:hover {
  transform: translateY(-5px); /* Subtle lift on hover */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Stronger shadow on hover */
}

.certificate-item i {
  color: #8bc655; /* Green for icons */
  font-size: 2rem;
  margin-bottom: 15px;
}

.certificate-item h3 {
  font-family: "Roboto", Helvetica, sans-serif; /* Roboto for headings */
  font-weight: 700; /* Bold for headings */
  color: #1d2a55; /* Dark blue from the palette */
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.certificate-item p {
  font-family: "Roboto", Helvetica, sans-serif; /* Roboto for text */
  font-weight: 400; /* Regular weight */
  color: #333; /* Slightly lighter for softness */
  margin-bottom: 15px;
  flex-grow: 1; /* Allow paragraph to take available space */
}

.certificate-item .btn {
  margin-top: auto; /* Push button to bottom */
}

/* Contact Section */
.contact-section {
  padding: 80px 0; /* Increased padding for spacious feel */
}

.section-description {
  font-family: "Roboto", Helvetica, sans-serif; /* Roboto for description */
  font-weight: 400; /* Regular weight */
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #333; /* Slightly lighter than black for softness */
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center; /* Center the grid */
  width: 100%;
  max-width: 1200px; /* Match container width */
}

.contact-form {
  flex: 1;
  min-width: 300px;
  max-width: 500px; /* Slightly narrower for balance */
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: left; /* Left-align form content */
}

.contact-form label {
  font-family: "Roboto", Helvetica, sans-serif; /* Roboto for labels */
  font-weight: 500; /* Medium weight */
  display: block;
  margin-bottom: 8px;
  color: #1d2a55; /* Dark blue for labels */
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  font-family: "Roboto", Helvetica, sans-serif; /* Roboto for inputs */
  font-weight: 400; /* Regular weight */
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-sizing: border-box; /* Ensure padding doesn't affect width */
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #8bc655; /* Green border on focus */
  box-shadow: 0 0 5px rgba(139, 189, 35, 0.3); /* Subtle glow */
}

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

.contact-form button {
  font-family: "Roboto", Helvetica, sans-serif; /* Roboto for button */
  font-weight: 500; /* Medium weight */
  background-color: #8bc655; /* Green from the palette */
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
  display: block;
  margin: 20px auto 0; /* Center button */
}

.contact-form button:hover {
  background-color: #f6ac1a; /* Orange from the palette */
  transform: translateY(-2px); /* Subtle lift effect */
}

.contact-details {
  flex: 1;
  min-width: 300px;
  max-width: 400px; /* Slightly narrower for balance */
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: left; /* Left-align for readability */
}

.contact-details h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  text-align: center; /* Center heading */
}

.contact-details ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-details li {
  font-family: "Roboto", Helvetica, sans-serif; /* Roboto for contact details */
  font-weight: 400; /* Regular weight */
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px; /* Space between icon and text */
}

.contact-details i {
  color: #8bc655; /* Green for icons */
  font-size: 1.2rem;
}

.contact-details a {
  color: #1d2a55; /* Dark blue for links */
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: #8bc655; /* Green on hover */
}

/* Google Maps Embed */
.map-container {
  height: 400px;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
/* Gallery Section */
.gallery-section {
  padding: 80px 0; /* Increased padding for spacious feel */
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  justify-items: center; /* Center gallery items */
  width: 100%;
  max-width: 1200px; /* Match container width */
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  max-width: 300px; /* Limit width for centering */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer; /* Indicate clickability */
}

.gallery-item:hover {
  transform: scale(1.05); /* Slight zoom on hover */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(29, 42, 85, 0.8); /* Dark blue with transparency */
  color: #fff;
  font-family: "Roboto", Helvetica, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  padding: 10px;
  text-align: center;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

/* Lightbox */
.lightbox {
  display: none; /* Hidden by default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8); /* Dark overlay */
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#lightbox-img {
  max-width: 100%;
  max-height: 70vh;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.lightbox-caption {
  font-family: "Roboto", Helvetica, sans-serif;
  font-weight: 400;
  color: #fff;
  font-size: 1.2rem;
  margin-top: 15px;
  text-align: center;
}

.lightbox-btn {
  position: absolute;
  background-color: #8bc655; /* Green from the palette */
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.lightbox-btn:hover {
  background-color: #f6ac1a; /* Orange from the palette */
  transform: scale(1.1);
}

.lightbox-close {
  top: 10px;
  right: 10px;
}

.lightbox-prev {
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-btn i {
  font-size: 1.2rem;
}

/* Footer */
footer {
  background-color: #1d2a55; /* Dunkelblau aus der Palette */
  color: #fff; /* Weiß für Kontrast */
  text-align: center;
  padding: 20px 0;
  margin-top: 50px;
  font-size: 0.9rem;
  border-top-left-radius: 10px; /* Abgerundete Ecken oben links */
  border-top-right-radius: 10px; /* Abgerundete Ecken oben rechts */
}

footer p {
  margin: 5px 0;
}

footer a {
  color: #8bc655; /* Grün aus der Palette */
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #1d2a55; /* Dunkelblau aus der Palette */
  color: #fff;
  padding: 15px 20px;
  text-align: center;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: none; /* Standardmäßig ausgeblendet, mit JS angezeigt */
}

.cookie-banner p {
  margin: 0;
  display: inline;
}

.cookie-banner .btn-accept {
  background-color: #8bc655; /* Grün aus der Palette */
  color: #fff;
  padding: 8px 15px;
  border-radius: 5px;
  margin-left: 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cookie-banner .btn-accept:hover {
  background-color: #f6ac1a; /* Orange aus der Palette */
}

/* Responsive Design */
@media (max-width: 768px) {
  header .container {
    flex-direction: column;
    text-align: center;
  header .container {
    flex-direction: column;
    text-align: center;
  }

  nav ul {
    margin-top: 15px;
    justify-content: center;
    margin-top: 15px;
    justify-content: center;
  }

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

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

  .hero p {
    font-size: 1rem;
  }

  .section-title {
    font-size: 2rem;
    padding: 10px 20px; /* Angepasste Polsterung für kleinere Bildschirme */
  }

  .logo {
    height: 50px; /* Höhe für kleinere Bildschirme angepasst */
  }

  .logo img {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .logo {
    height: 40px; /* Weiter angepasst für sehr kleine Bildschirme */
  }

  nav ul li {
    margin: 0 5px;
    height: 40px; /* Weiter angepasst für sehr kleine Bildschirme */
  }

  nav ul li {
    margin: 0 5px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .service-item {
    padding: 20px;
  }

  .contact-form {
    padding: 20px;
  }