/* Fonts */
:root {
  --default-font: "Roboto", system-ui, -apple-system, sans-serif;
  --heading-font: "Raleway", sans-serif;
  --nav-font: "Poppins", sans-serif;

  --background-color: #ffffff;
  --default-color: #444444;
  --heading-color: #556270;
  --accent-color: #2e79ab;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
  --text-color: #556270;
}

:root {
  --nav-color: #556270;
  --nav-hover-color: #2e79ab;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #556270;
}

.light-background {
  --background-color: #f2f4f6;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #3b4654;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #444e5b;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

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

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Header & Navigation
--------------------------------------------------------------*/
.header {
  background: rgba(255, 255, 255, 0.98);
  padding: 20px 0;
  transition: all 0.4s ease;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 997;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Logo Styles */
.logo {
  position: relative;
  transition: all 0.3s ease;
}

.logo-img {
  max-height: 45px;
  width: auto;
  transition: all 0.3s ease;
}

/* Navigation Menu */
.navmenu ul {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: var(--text-color);
  font-weight: 500;
  font-size: 16px;
  padding: 10px 15px;
  border-radius: 12px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  text-decoration: none;
}

.nav-link i {
  font-size: 20px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-color);
  background: rgba(46, 121, 171, 0.08);
  transform: translateY(-2px);
}

/* CTA Button */
.cta-button {
  background: linear-gradient(45deg, #2e79ab, #3498db);
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(46, 121, 171, 0.2);
  text-decoration: none;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(46, 121, 171, 0.3);
  color: white;
}

.cta-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .header {
    padding: 12px 0;
  }

  .logo-img {
    max-height: 35px;
  }

  .navmenu {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    padding: 80px 20px 20px;
    transition: 0.3s ease-in-out;
    z-index: 996;
  }

  .navmenu.active {
    right: 0;
  }

  .navmenu ul {
    flex-direction: column;
    gap: 20px;
  }

  .nav-link {
    font-size: 18px;
    padding: 12px 20px;
    width: 100%;
    border-radius: 8px;
  }

  .nav-link i {
    font-size: 24px;
    margin-right: 15px;
  }

  /* Hamburger Menu */
  .mobile-nav-toggle {
    width: 40px;
    height: 40px;
    padding: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 998;
  }

  .hamburger-inner,
  .hamburger-inner::before,
  .hamburger-inner::after {
    width: 24px;
    height: 2px;
    background-color: var(--text-color);
    position: absolute;
    transition: 0.3s;
  }

  .hamburger-inner {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .hamburger-inner::before {
    content: '';
    top: -8px;
    left: 0;
  }

  .hamburger-inner::after {
    content: '';
    bottom: -8px;
    left: 0;
  }

  /* Aktiver Hamburger */
  .mobile-nav-active .hamburger-inner {
    background-color: transparent;
  }

  .mobile-nav-active .hamburger-inner::before {
    top: 0;
    transform: rotate(45deg);
  }

  .mobile-nav-active .hamburger-inner::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .header-cta {
    display: none;
  }
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services {
  padding: 60px 0;
}

.service-item {
  background: var(--surface-color);
  border-radius: 15px;
  padding: 40px 30px;
  height: 100%;
  transition: all 0.5s ease-in-out;
  border: 1px solid transparent;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-item:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.service-icon {
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  transition: all 0.3s ease;
}

.service-item:hover .service-icon {
  background: var(--accent-color);
}

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

.service-item:hover .service-icon i {
  color: var(--surface-color);
}

.service-content {
  margin-top: 1rem;
}

.service-item .title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.service-item .description {
  color: var(--default-color);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 0;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 15px 0 0;
}

.service-features li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 8px;
  font-size: 15px;
}

.service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
  .service-item {
    padding: 30px 20px;
  }

  .service-icon {
    width: 55px;
    height: 55px;
  }

  .service-icon i {
    font-size: 28px;
  }

  .service-item .title {
    font-size: 20px;
  }

  .service-features li {
    font-size: 14px;
  }
}

/* Fokus-Styles für Barrierefreiheit */
.service-item:focus-within {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

/* High Contrast Mode Unterstützung */
@media (forced-colors: active) {
  .service-item {
    border: 2px solid CanvasText;
  }
  
  .service-icon {
    border: 1px solid CanvasText;
  }
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio {
  padding: 80px 0;
  background: var(--surface-color);
}

.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  padding: 0;
  margin: 0 0 40px;
  list-style: none;
}

.portfolio-filters li {
  cursor: pointer;
  padding: 12px 25px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 50px;
  transition: all 0.4s ease;
  background-color: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
}

.portfolio-filters li:hover,
.portfolio-filters li.filter-active {
  color: var(--surface-color);
  background-color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(46, 121, 171, 0.3);
}

.portfolio-figure {
  position: relative;
  margin: 0;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  background: #fff;
}

.portfolio-figure:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.portfolio-figure img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.portfolio-figure:hover img {
  transform: scale(1.05);
}

.portfolio-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -100%;
  padding: 25px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
  color: white;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(5px);
}

.portfolio-figure:hover .portfolio-info {
  bottom: 0;
}

.portfolio-title {
  font-size: 1.4rem;
  margin: 0 0 10px;
  font-weight: 600;
  color: #fff;
}

.portfolio-description {
  font-size: 1rem;
  margin: 0;
  opacity: 0.9;
  line-height: 1.6;
  max-width: 90%;
}

.preview-link {
  position: absolute;
  right: 20px;
  top: 20px;
  background: rgba(255, 255, 255, 0.9);
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--accent-color);
  font-size: 20px;
  transform: translateY(-100px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.portfolio-figure:hover .preview-link {
  transform: translateY(0);
}

.preview-link:hover {
  background: var(--accent-color);
  color: white;
  transform: translateY(0) scale(1.1);
}

/* Animation für neue Elemente */
.portfolio-item {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

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

/* Responsive Anpassungen */
@media (max-width: 991px) {
  .portfolio-figure img {
    height: 300px;
  }
  
  .portfolio-title {
    font-size: 1.2rem;
  }
  
  .portfolio-description {
    font-size: 0.9rem;
  }
}

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

  .portfolio-filters {
    gap: 10px;
    margin-bottom: 30px;
  }

  .portfolio-filters li {
    font-size: 14px;
    padding: 8px 20px;
  }
  
  .portfolio-figure img {
    height: 250px;
  }
  
  .preview-link {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background: linear-gradient(to bottom, var(--background-color), color-mix(in srgb, var(--background-color), #000 10%));
  font-size: 15px;
  padding-top: 30px;
  position: relative;
}

.footer-top {
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Logo und Kontakt */
.footer .sitename {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
  color: var(--heading-color);
  transition: color 0.3s ease;
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 25px;
  line-height: 1.6;
}

.footer-contact {
  font-style: normal;
  margin: 25px 0;
  line-height: 1.8;
}

.footer-contact i {
  font-size: 18px;
  color: var(--accent-color);
}

.contact-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
  border-bottom: 1px solid transparent;
}

.contact-link:hover,
.contact-link:focus {
  color: var(--accent-color);
  border-bottom-color: var(--accent-color);
}

/* Öffnungszeiten */
.footer-hours ul li {
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-hours .day {
  color: rgba(255, 255, 255, 0.7);
}

.footer-hours .hours {
  color: var(--accent-color);
  font-weight: 500;
}

/* Social Media Links */
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

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

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

.social-links-container {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links-container h4 {
  color: var(--heading-color);
  font-size: 18px;
  margin-bottom: 15px;
}

.social-links-container h4::after {
  display: none;
}

/* Footer Navigation */
.footer h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 10px;
  position: relative;
}

.footer h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background: var(--accent-color);
}

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

.footer-links li {
  padding: 8px 0;
}

.footer-links a {
  color: var(--default-color);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 15px;
}

.footer-links a::before {
  content: '→';
  position: absolute;
  left: 0;
  opacity: 0;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-color);
  padding-left: 20px;
}

.footer-links a:hover::before {
  opacity: 1;
}

/* Karte */
.footer-map {
  margin-top: 20px;
}

.map-container {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.map-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.1);
  pointer-events: none;
  z-index: 1;
  transition: background 0.3s ease;
}

.map-container:hover::before {
  background: rgba(0, 0, 0, 0);
}

.footer-map iframe,
.footer-map .maps-placeholder {
  width: 100%;
  height: 200px;
  border: 0;
  border-radius: 8px;
}

.footer-map .map-container {
  height: 200px;
  margin: 0;
}

/* Copyright */
.copyright {
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  margin-top: 30px;
}

/* Fokus-Styles für Barrierefreiheit */
a:focus-visible {
  outline: 3px solid var(--accent-color);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
  .footer-map {
    margin-left: 0;
  }
  
  .footer-map iframe {
    height: 200px;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .footer h4 {
    margin-top: 20px;
  }

  .footer-hours ul li {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 15px;
  }
  
  .footer-hours .hours {
    margin-top: 5px;
  }

  .footer-contact {
    text-align: left;
  }
}

/* Dark Mode Unterstützung */
@media (prefers-color-scheme: dark) {
  .footer {
    background: linear-gradient(to bottom, #1a1a1a, #141414);
  }

  .footer-hours .day {
    color: rgba(255, 255, 255, 0.6);
  }

  .map-container::before {
    background: rgba(0, 0, 0, 0.2);
  }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 20px;
  bottom: 20px !important; /* Wichtig: feste Position */
  z-index: 99999;
  background: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 8px;
  transition: opacity 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

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

.scroll-top:hover {
  background: color-mix(in srgb, var(--accent-color), #000 20%);
  transform: translateY(-3px);
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

@media (max-width: 768px) {
  .scroll-top {
    right: 15px;
    bottom: 15px !important;
    width: 40px;
    height: 40px;
  }
}
/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
}

.page-title h1 {
  font-size: 28px;
  font-weight: 300;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  position: relative;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}

.section-title p {
  color: var(--heading-color);
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  padding: 0;
}

.hero .carousel {
  width: 100%;
  min-height: calc(100vh - 90px);
  padding: 0;
  margin: 0;
  background-color: var(--background-color);
  position: relative;
}

@media (max-width: 1200px) {
  .hero .carousel {
    min-height: calc(100vh - 66px);
  }
}
.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero .carousel-item:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .carousel-container {
  position: absolute;
  inset: 90px 64px 64px 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 3;
  text-align: center;
}

.hero h2 {
  margin-bottom: 30px;
  font-size: 56px;
  font-weight: 800;
  color: #fff;
  text-shadow: 4px 4px 12px rgba(0, 0, 0, 0.8);
  animation: fadeInDown 1s both;
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 36px;
  }
}

.hero p {
  font-size: 20px;
  color: #fff;
  text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.7);
  animation: fadeInDown 1s both 0.2s;
}

@media (min-width: 1024px) {
  .hero h2,
  .hero p {
    max-width: 70%;
  }
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(60%) blur(2px);
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 40px;
  border-radius: 8px;
  transition: 0.5s;
  margin-top: 15px;
  animation: fadeInUp 1s both 0.4s;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero .btn-get-started:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: scale(1.05);
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  width: 10%;
  transition: 0.3s;
  opacity: 0.5;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}

@media (min-width: 1024px) {
  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    width: 5%;
  }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  font-size: 32px;
  line-height: 1;
}

.hero .carousel-indicators {
  list-style: none;
}

.hero .carousel-indicators li {
  cursor: pointer;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
:root {
  --accent-color: #2e79ab;
  --text-color: #333;
  --section-bg: #fff;
  --focus-outline-color: #2e79ab;
  --hover-bg-color: rgba(46, 121, 171, 0.1);
}

.about {
  padding: 70px 0;
  background-color: var(--section-bg);
}

/* Accessibility Helper Class */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.about-intro,
.about-description {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 30px;
  color: var(--text-color);
}

/* Features List Styling */
.about .features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about .features-list li {
  padding: 12px 0;
  display: flex;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.about .features-list li:hover,
.about .features-list li:focus {
  background-color: var(--hover-bg-color);
  padding-left: 10px;
}

.about .features-list i {
  font-size: 22px;
  color: var(--accent-color);
}

.about .features-list span {
  font-size: 16px;
  font-weight: 500;
}

/* Focus Styles */
.about .features-list li:focus {
  outline: 2px solid var(--focus-outline-color);
  outline-offset: 2px;
}

.about .features-list li:focus-within {
  outline: 2px solid var(--focus-outline-color);
  outline-offset: 2px;
}

/* Skip Link für Tastaturnavigation */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--accent-color);
  color: white;
  padding: 8px;
  z-index: 100;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 0;
}

/* High Contrast Mode Anpassungen */
@media (forced-colors: active) {
  .about .features-list i {
    forced-color-adjust: none;
  }
  
  .about .features-list li:hover,
  .about .features-list li:focus {
    forced-color-adjust: none;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .about .features-list li {
    transition: none;
  }
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
  .about {
    padding: 50px 0;
  }
  
  .about-intro,
  .about-description {
    font-size: 16px;
    line-height: 1.6;
  }
  
  .about .features-list li {
    padding: 10px 0;
  }
  
  .about .features-list span {
    font-size: 15px;
  }
}

/* Large Screen Optimizations */
@media (min-width: 1200px) {
  .about-intro,
  .about-description {
    font-size: 18px;
    line-height: 1.9;
  }
  
  .about .features-list span {
    font-size: 17px;
  }
}

/* Print Styles */
@media print {
  .about {
    padding: 20px 0;
    background: none;
  }
  
  .about-intro,
  .about-description {
    color: #000;
  }
  
  .about .features-list i {
    display: none;
  }
  
  .about .features-list li {
    page-break-inside: avoid;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact-section {
  padding: 80px 0;
  background-color: var(--background-color);
}

/* Map Styling */
.map-container {
  margin-bottom: 60px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
}

.map-container::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--accent-color), #2e79ab);
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border: 0;
  display: block;
}

/* Contact Cards Grid */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 0 auto;
  max-width: 1200px;
}

/* Contact Card Styling */
.contact-card {
  background: var(--surface-color);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), #2e79ab);
  opacity: 0;
  transition: all 0.4s ease;
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contact-card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(145deg, rgba(var(--accent-color-rgb), 0.1), rgba(46, 121, 171, 0.1));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.4s ease;
}

.contact-card:hover .card-icon {
  transform: scale(1.1) rotate(-5deg);
}

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

.contact-card h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 15px;
}

.contact-card p {
  color: var(--text-color);
  margin-bottom: 25px;
  line-height: 1.6;
}

.card-actions {
  margin-top: auto;
}

.action-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 25px;
  background: linear-gradient(145deg, var(--accent-color), #2e79ab);
  color: white;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.action-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(var(--accent-color-rgb), 0.3);
  color: white;
}

.action-button i {
  font-size: 20px;
}

/* Page Header Styling */
.page-header {
  padding: 100px 0 60px;
  background-color: var(--background-color);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.title-wrapper {
  position: relative;
  display: inline-block;
  padding: 0 20px;
}

.page-title {
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0;
  position: relative;
  z-index: 2;
}

.title-subtitle {
  font-size: 1.2rem;
  color: var(--text-color);
  margin: 15px 0 0;
  opacity: 0.9;
}

.title-decoration {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), #2e79ab);
  border-radius: 2px;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
  .page-header {
      padding: 80px 0 40px;
  }

  .page-title {
      font-size: 2.5rem;
  }

  .title-subtitle {
      font-size: 1.1rem;
  }
}

/* Responsive Styles */
@media (max-width: 991px) {
  .contact-section {
    padding: 60px 0;
  }
  
  .map-container {
    margin-bottom: 40px;
  }
  
  .map-container iframe {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 40px 0;
  }
  
  .map-container {
    margin-bottom: 30px;
    border-radius: 15px;
  }
  
  .map-container iframe {
    height: 300px;
  }
  
  .contact-cards {
    gap: 20px;
  }
  
  .contact-card {
    padding: 30px 20px;
  }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widgets-container {
  background-color: var(--surface-color);
  padding: 30px;
  margin: 60px 0 30px 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.widget-title {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.widget-item {
  margin-bottom: 40px;
}

.widget-item:last-child {
  margin-bottom: 0;
}

.search-widget form {
  background: var(--background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
  padding: 3px 10px;
  position: relative;
  transition: 0.3s;
}

.search-widget form input[type=text] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
  background-color: var(--background-color);
  color: var(--default-color);
}

.search-widget form input[type=text]:focus {
  outline: none;
}

.search-widget form button {
  background: var(--accent-color);
  color: var(--contrast-color);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.search-widget form button i {
  line-height: 0;
}

.search-widget form button:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.search-widget form:is(:focus-within) {
  border-color: var(--accent-color);
}

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

.categories-widget ul li {
  padding-bottom: 10px;
}

.categories-widget ul li:last-child {
  padding-bottom: 0;
}

.categories-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  transition: 0.3s;
}

.categories-widget ul a:hover {
  color: var(--accent-color);
}

.categories-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 14px;
}

.recent-posts-widget .post-item {
  display: flex;
  margin-bottom: 15px;
}

.recent-posts-widget .post-item:last-child {
  margin-bottom: 0;
}

.recent-posts-widget .post-item img {
  width: 80px;
  margin-right: 15px;
}

.recent-posts-widget .post-item h4 {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 5px;
}

.recent-posts-widget .post-item h4 a {
  color: var(--default-color);
  transition: 0.3s;
}

.recent-posts-widget .post-item h4 a:hover {
  color: var(--accent-color);
}

.recent-posts-widget .post-item time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

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

.tags-widget ul li {
  display: inline-block;
}

.tags-widget ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
  display: inline-block;
  transition: 0.3s;
}

.tags-widget ul a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 1px solid var(--accent-color);
}

.tags-widget ul a span {
  padding-left: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 14px;
}

/*--------------------------------------------------------------
# Impressum Page Styling
--------------------------------------------------------------*/
.impressum-section {
  padding: 80px 0;
  background-color: var(--background-color);
}

/* Main Content Styling */
.impressum-section .widgets-container {
  background: var(--surface-color);
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  margin-bottom: 30px;
}

.impressum-section .widget-title {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 25px;
  padding-bottom: 15px;
  position: relative;
}

.impressum-section .widget-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 2px;
}

.impressum-section .widget-item {
  margin-bottom: 35px;
  padding: 25px;
  background: var(--surface-color);
  border-radius: 12px;
  border: 1px solid rgba(46, 121, 171, 0.1);
}

.impressum-section .widget-item:last-child {
  margin-bottom: 0;
}

/* Contact Info Styling */
.impressum-section .contact-info {
  padding: 0;
  background: transparent;
  border: none;
}

.impressum-section .contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  margin-bottom: 15px;
  background: var(--surface-color);
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid rgba(46, 121, 171, 0.1);
}

.impressum-section .contact-item:hover {
  transform: translateX(5px);
  border-color: var(--accent-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.impressum-section .contact-item i {
  font-size: 24px;
  color: var(--accent-color);
  background: rgba(46, 121, 171, 0.1);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.impressum-section .contact-details {
  flex-grow: 1;
}

.impressum-section .contact-details .label {
  display: block;
  font-size: 14px;
  color: #777;
  margin-bottom: 4px;
}

.impressum-section .contact-details a,
.impressum-section .contact-details span {
  color: var(--default-color);
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.impressum-section .contact-details a:hover {
  color: var(--accent-color);
}

/* Quick Contact Widget */
.quick-contact {
  background: linear-gradient(145deg, var(--accent-color), #1d4f70) !important;
  padding: 30px !important;
  border: none !important;
}

.quick-contact .widget-title {
  color: white !important;
  font-size: 22px;
  margin-bottom: 20px;
}

.quick-contact .widget-title::after {
  background: rgba(255, 255, 255, 0.3);
}

.quick-contact-content .contact-intro {
  font-size: 16px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.9);
}

.contact-button-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 15px;
}

.contact-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: 500;
}

.contact-button.full {
  grid-column: 1 / -1;
  background: white;
  color: var(--accent-color);
}

.contact-button:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  color: white;
}

.contact-button.full:hover {
  background: rgba(255, 255, 255, 0.9);
  color: var(--accent-color);
}

.contact-button i {
  font-size: 20px;
}

/* Legal Links */
.legal-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.legal-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  background: var(--surface-color);
  border-radius: 12px;
  color: var(--default-color);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(46, 121, 171, 0.1);
}

.legal-links a:hover {
  background: var(--accent-color);
  color: white;
  transform: translateX(5px);
}

.legal-links i {
  font-size: 22px;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .impressum-section {
    padding: 60px 0;
  }

  .impressum-section .widgets-container {
    padding: 30px;
  }
}

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

  .impressum-section .widgets-container {
    padding: 20px;
  }

  .impressum-section .widget-title {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .impressum-section .widget-item {
    padding: 20px;
    margin-bottom: 20px;
  }

  .impressum-section .contact-item {
    padding: 15px;
  }

  .impressum-section .contact-item i {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .contact-button-group {
    grid-template-columns: 1fr 1fr;
  }

  .legal-links a {
    padding: 15px;
  }

  .impressum-section .sidebar {
    margin-top: 30px;
  }
}

/* Animation */
[data-aos="fade-up"] {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}

[data-aos="fade-up"].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/*--------------------------------------------------------------
# Location Section
--------------------------------------------------------------*/
.location-section {
  padding: 80px 0;
  background-color: var(--background-color);
}

.location-container {
  margin-top: 40px;
}

.location-card {
  background: var(--surface-color);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

.location-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.location-header i {
  font-size: 32px;
  color: var(--accent-color);
}

.location-header h3 {
  margin: 0;
  font-size: 24px;
  color: var(--heading-color);
}

.location-card p {
  color: var(--default-color);
  margin-bottom: 25px;
}

/* Amenities Grid */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 20px;
  margin-top: 25px;
}

.amenity-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 15px;
  background: rgba(var(--accent-color-rgb), 0.05);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.amenity-item:hover {
  transform: translateY(-5px);
  background: rgba(var(--accent-color-rgb), 0.1);
}

.amenity-item i {
  font-size: 24px;
  color: var(--accent-color);
}

.amenity-item span {
  font-size: 14px;
  color: var(--default-color);
}

/* Transport Options */
.transport-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.transport-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--surface-color);
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.transport-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.transport-card i {
  font-size: 28px;
  color: var(--accent-color);
  padding: 15px;
  background: rgba(var(--accent-color-rgb), 0.1);
  border-radius: 12px;
}

.transport-info {
  flex: 1;
}

.transport-info h4 {
  margin: 0 0 10px;
  font-size: 18px;
  color: var(--heading-color);
}

.transport-info p {
  margin: 0 0 10px;
  color: var(--default-color);
}

.transport-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.transport-info ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 5px;
  color: var(--default-color);
}

.transport-info ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent-color);
}

/* Responsive Styles */
@media (max-width: 768px) {
  .location-section {
    padding: 60px 0;
  }

  .location-header h3 {
    font-size: 20px;
  }

  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .transport-card {
    padding: 20px;
  }
}

/* FAQ Section Styles */
.faq-section {
    padding: 80px 0;
    background: var(--background-color);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    background: var(--surface-color);
    border: none;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.accordion-button {
    padding: 20px 30px;
    font-family: var(--heading-font);
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--heading-color);
    background: var(--surface-color);
    border: none;
    position: relative;
}

.accordion-button:not(.collapsed) {
    color: var(--accent-color);
    background: var(--surface-color);
    box-shadow: none;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232e79ab'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232e79ab'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 20px 30px;
    color: var(--default-color);
    line-height: 1.6;
    font-size: 1rem;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .accordion-button {
        padding: 15px 20px;
        font-size: 1rem;
    }

    .accordion-body {
        padding: 15px 20px;
    }
}

/* FAQ Section Styles */
.faq-section {
  padding: 60px 0;
  background: var(--background-color);
}

.section-header {
  margin-bottom: 40px;
  text-align: center;
}

.section-title {
  color: var(--heading-color);
  font-size: 2rem;
  margin-bottom: 15px;
  font-weight: 600;
}

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

.faq-wrapper {
  background: var(--surface-color);
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.accordion-item {
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  margin-bottom: 10px;
}

.accordion-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.accordion-button {
  padding: 15px 20px;
  background: transparent;
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 1rem;
  color: var(--heading-color);
  display: flex;
  align-items: center;
  gap: 12px;
}

.accordion-button:not(.collapsed) {
  color: var(--accent-color);
  background: transparent;
  box-shadow: none;
}

.faq-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(46, 121, 171, 0.08);
  border-radius: 8px;
  color: var(--accent-color);
  font-size: 0.9rem;
}

.accordion-button:not(.collapsed) .faq-icon {
  background: var(--accent-color);
  color: white;
}

.accordion-body {
  padding: 0 20px 15px 64px;
  color: var(--default-color);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* FAQ List Styles */
.faq-list {
  list-style: none;
  padding: 0;
  margin: 10px 0;
}

.faq-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.faq-list li i {
  color: var(--accent-color);
  font-size: 0.9rem;
}

/* Equipment Grid */
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 10px;
}

.equipment-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  background: rgba(46, 121, 171, 0.04);
  border-radius: 8px;
  font-size: 0.95rem;
}

/* Cancellation Terms */
.cancellation-terms {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 10px;
}

.term-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 15px;
  border-radius: 8px;
  background: rgba(46, 121, 171, 0.04);
}

.term-item.success {
  background: rgba(40, 167, 69, 0.05);
}

.term-item.warning {
  background: rgba(255, 193, 7, 0.05);
}

.term-content h4 {
  margin: 0 0 5px;
  font-size: 0.95rem;
  font-weight: 600;
}

.term-content p {
  margin: 0;
  font-size: 0.9rem;
}

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

  .section-title {
      font-size: 1.8rem;
  }

  .faq-wrapper {
      padding: 15px;
  }

  .accordion-button {
      padding: 12px 15px;
  }

  .accordion-body {
      padding: 0 15px 12px 59px;
  }

  .equipment-grid {
      grid-template-columns: 1fr;
  }
}