/* =========================================
   ALLGEMEINES
========================================= */
:root {
  --grcs-blue: #2193b0;
  --grcs-blue-light: #6dd5ed;
  --grcs-green: #48b163;
  --grcs-green-dark: #2b9644;
}


body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  background-color: #f7f9fa;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 15px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  animation: fadeIn 0.6s ease forwards;
  opacity: 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo {
  height: 50px;
  margin-right: 15px;
}

.firmenname {
  font-size: 1.4rem;
  font-weight: 700;
  background: linear-gradient(90deg, var(--grcs-green), var(--grcs-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}





/* =========================================
   NAVIGATION
========================================= */
.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  position: absolute;
  top: 22px;
  right: 25px;
  cursor: pointer;
  z-index: 1100;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  display: block;
  background: #186c86;
  height: 3px;
  width: 28px;
  border-radius: 2px;
  position: relative;
  transition: all 0.3s ease;
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
  content: '';
  position: absolute;
}

.nav-toggle-label span::before {
  top: -8px;
}

.nav-toggle-label span::after {
  top: 8px;
}

.main-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  transition: transform 0.3s ease;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

.has-submenu.open .dropdown-arrow {
  transform: rotate(90deg);
}


.main-nav a {
  text-decoration: none;
  color: #186c86;
  font-weight: 600;
  transition: color 0.3s ease;
  position: relative;
  padding: 5px;
}

.main-nav a:hover {
  color: #67BE56;
}

.dropdown-arrow {
  font-size: 0.6rem;
  margin-left: 6px;
  vertical-align: middle;
  transition: transform 0.3s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #67BE56;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.main-nav a:hover::after {
  width: 100%;
}



/* Sub-Navigation*/


.has-submenu {
  position: relative;
}

.has-submenu .submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  padding: 10px 0;
  min-width: 160px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  border-radius: 8px;
  z-index: 1000;
  flex-direction: column;
}

.has-submenu:hover .submenu {
  display: flex;
}

.submenu li a {
  padding: 10px 20px;
  color: #186c86;
  white-space: nowrap;
  font-weight: 500;
}

.submenu li a:hover {
  color: #67BE56;
  background: rgba(0,0,0,0.03);
}



/* Responsive Navigation (Mobil)*/

@media (max-width: 768px) {
  html, body {
    overflow-x: hidden;
  }

  .nav-toggle-label {
    display: block;
    position: -webkit-sticky; /* Safari */
    position: sticky;
    top: 100px; /* Abstand von oben */
    margin-left: auto;
    right: 0;
    background: #186c86;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    z-index: 1101;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    padding: 0;
  }

  .nav-toggle-label span,
  .nav-toggle-label span::before,
  .nav-toggle-label span::after {
    background: #fff;
    width: 24px;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    transform: translateX(100%);
    height: 100vh;
    width: 250px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 20px;
  }

  .nav-toggle:checked + .nav-toggle-label + .main-nav {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-toggle:checked + .nav-toggle-label span {
    background: transparent;
  }

  .nav-toggle:checked + .nav-toggle-label span::before {
    transform: rotate(45deg);
    top: 0;
  }

  .nav-toggle:checked + .nav-toggle-label span::after {
    transform: rotate(-45deg);
    top: 0;
  }
}


.has-submenu .submenu {
  position: static;
  background: transparent;
  box-shadow: none;
  padding: 0;
  display: none;
}

.has-submenu.open .submenu {
  display: flex;
  flex-direction: column;
}

.has-submenu .submenu li a {
  padding-left: 30px;
}




/* DROP-DOWN*/

/* Desktop-Dropdown */
.has-submenu {
  position: relative;
}

.has-submenu .submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  padding: 10px 0;
  min-width: 180px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  border-radius: 8px;
  z-index: 1000;
}

.has-submenu:hover .submenu {
  display: block;
}

.submenu li {
  width: 100%;
}

.submenu a {
  display: block;
  padding: 10px 20px;
  white-space: nowrap;
  color: #186c86;
  font-weight: 500;
  text-align: left;
}

.submenu a:hover {
  background-color: rgba(0,0,0,0.03);
  color: #67BE56;
}

/* Mobile-Dropdown */
@media (max-width: 768px) {
  .has-submenu .submenu {
    position: static;
    display: none;
    background: none;
    box-shadow: none;
    padding-left: 10px;
  }

  .has-submenu.open .submenu {
    display: block;
    flex-direction: column;
  }
}






/* Animation*/

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes float {
  0% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.05);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}



/* =========================================
   HERO
========================================= */


.hero {
  background-color: #ffffff;
  padding: 60px 20px;
}

.hero-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.hero-text {
  flex: 1 1 500px;
}

.hero-text h1,
.vorteile h2,
.gefahrgut-intro h2,
.abfall-intro h2 {
  background: linear-gradient(90deg, var(--grcs-green), var(--grcs-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.6;
}

.hero-list {
  margin: 15px 0;
  padding-left: 1.2rem;
  list-style: none;
  font-size: 1.1rem;
  color: #333;
  line-height: 1.8;
}

.hero-list li::before,
.paket-body ul li::before {
  content: '✔';
  color: var(--grcs-green);
}

.hero-image {
  flex: 1 1 300px;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
}

.cta-button {
  background: linear-gradient(135deg, var(--grcs-green), var(--grcs-blue));
  color: white;
  font-weight: 600;
  padding: 12px 25px;
  border-radius: 6px;
  transition: background 0.3s ease;
  text-decoration: none;
}

.cta-button:hover {
  background: linear-gradient(135deg, var(--grcs-green-dark), var(--grcs-blue));
}


/* =========================================
   FIRMENINFO
========================================= */

.firmeninfo {
  position: relative;
  background: linear-gradient(135deg, #2193b0, #6dd5ed);
  color: white;
  padding: 80px 20px;
  overflow: hidden;
}

.info-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.firmeninfo h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
}

.firmeninfo p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 20px;
}



/* Blasen und Hintergrund */

.background-bubbles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.background-bubbles::before,
.background-bubbles::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: float 12s ease-in-out infinite;
}

.background-bubbles::before {
  width: 150px;
  height: 150px;
  top: 20%;
  left: 10%;
}

.background-bubbles::after {
  width: 100px;
  height: 100px;
  bottom: 10%;
  right: 15%;
  animation-delay: 4s;
}

@keyframes float {
  0% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.05);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}


/* =========================================
   VORTEILE
========================================= */

/* Vorteile – Hover-Effekt */
.vorteile {
  background-color: #f7f9fa;
  padding: 80px 20px;
}

.vorteile-container {
  max-width: 1000px;
  margin: 0 auto;
}

.vorteile h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 50px;
  color: #2193b0;
}

.vorteil {
  display: flex;
  align-items: flex-start;
  background: white;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  gap: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vorteil:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.vorteil-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.vorteil-text h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
  color: #186c86;
}

.vorteil-text p {
  color: #333;
  line-height: 1.6;
  font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .vorteil {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .vorteil-icon {
    margin-bottom: 15px;
  }
}




/* =========================================
   GEFAHRGUT
========================================= */

.gefahrgut-block {
  background: linear-gradient(to right, #f1fbfd, #e6f4f9);
  padding: 100px 20px;
}

.gefahrgut-intro {
  max-width: 900px;
  margin: 0 auto 60px auto;
  text-align: center;
}

.gefahrgut-intro h2 {
  font-size: 2.2rem;
  color: #2193b0;
  margin-bottom: 10px;
}

.gefahrgut-intro h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #186c86;
  margin-bottom: 20px;
}

.gefahrgut-intro p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.8;
}


/* =========================================
   GEFAHRGUT PAKETE
========================================= */

.pakete-container.vergleich {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.paket {
  background-color: #ffffff;
  border: 2px solid #d1eaf3;
  border-radius: 12px;
  max-width: 320px;
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  padding: 25px 20px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease;
}

.paket:hover {
  transform: translateY(-5px);
}

.paket-header {
  background-color: #cce9f2;
  color: #186c86;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 8px 0;
  border-radius: 8px;
  margin-bottom: 15px;
}

.paket-header.highlight {
  background-color: #2193b0;
  color: white;
}

.paket-preis {
  font-size: 1.3rem;
  color: #186c86;
  font-weight: bold;
  margin-bottom: 20px;
}

.paket-body ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 25px;
  text-align: left;
}

.paket-body ul li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
  font-size: 0.95rem;
  color: #333;
}

.paket-body ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #2193b0;
  font-weight: bold;
}

.paket-body p {
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.paket-button {
  background-color: #2193b0;
  color: white;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: 600;
  display: inline-block;
  transition: background 0.3s ease;
}

.paket-button:hover {
  background-color: #186c86;
}

@media (max-width: 768px) {
  .paket {
    max-width: 100%;
  }

  .paket-body ul {
    text-align: center;
  }

  .paket-body ul li {
    padding-left: 0;
  }

  .paket-body ul li::before {
    display: none;
  }
}



/* =========================================
   ABFALL
========================================= */

.abfall-block {
  background: linear-gradient(to right, #fdfefc, #eef7f1);
  padding: 100px 20px;
}

.abfall-intro {
  max-width: 900px;
  margin: 0 auto 60px auto;
  text-align: center;
}

.abfall-intro h2 {
  font-size: 2.2rem;
  color: #3a7c4e;
  margin-bottom: 10px;
}

.abfall-intro h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #2e6e42;
  margin-bottom: 20px;
}

.abfall-intro p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.8;
}



/* =========================================
   ABFALL PAKETE
========================================= */

/* Anpassung für die Gold-Version */
.paket.gold {
  border: 2px solid #c9b037;
  background: #fffef6;
}

.paket-header.highlight-gold {
  background-color: #c9b037;
  color: white;
}

.paket-body ul ul {
  padding-left: 15px;
  margin-top: 10px;
}

.paket-body ul ul li::before {
  content: "–";
  color: #888;
  margin-right: 5px;
}




/* =========================================
   FOOTER
========================================= */
.site-footer {
  background-color: #1f1f1f;
  color: #ccc;
  padding: 40px 20px;
  font-size: 0.95rem;
  width: 100%;       /* ← stellt sicher, dass der Footer sich über die gesamte Seite zieht */
  box-sizing: border-box;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.footer-links {
  margin-bottom: 15px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  margin: 0 10px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-contact p {
  margin: 5px 0;
}

.footer-contact p::before {
  margin-right: 6px;
}

.footer-copyright {
  margin-top: 15px;
  color: #777;
  font-size: 0.85rem;
}


/* =========================================
   SMOOTHES SCROLLEN
========================================= */

html {
  scroll-behavior: smooth;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}




/* =========================================
   ZURÜCK NACH OBEN BUTTON
========================================= */

/* Zurück nach oben Button */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #2193b0;
  color: white;
  font-size: 1.5rem;
  text-align: center;
  text-decoration: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  line-height: 45px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease, transform 0.3s ease;
  z-index: 999;
}

.scroll-top:hover {
  background-color: #186c86;
  transform: translateY(-5px);
}


/* =========================================
   ZERTIFIZIERUNGEN
========================================= */

.qualifikationen-section {
  margin-bottom: 80px;
  padding: 20px;
}

.qualifikationen-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 20px;
}

.qualifikation-card {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #f9f9f9;
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

.qualifikation-card:hover {
  transform: translateY(-2px);
}

.qualifikation-card i {
  font-size: 1.5rem;
  color: #186c86;
}

.qualifikation-card span {
  font-size: 1.05rem;
  font-weight: 500;
  color: #333;
}

/* Optional: bei größeren Bildschirmen 2-spaltig */
@media (min-width: 600px) {
  .qualifikationen-grid {
    grid-template-columns: 1fr 1fr;
  }
}



/* =========================================
   KONTAKT
========================================= */


.kontakt-section {
  padding: 40px 20px;
  background-color: #f7f9fa;
  border-radius: 12px;
  margin: 40px 0;
}

.kontakt-section h2 {
  font-size: 1.8rem;
  margin-bottom: 25px;
  color: #186c86;
}

.kontakt-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.kontakt-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #ffffff;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.kontakt-icon {
  font-size: 1.5rem;
  color: #186c86;
  flex-shrink: 0;
}

.kontakt-text {
  font-size: 1.05rem;
  color: #333;
}

/* =========================================
   WICHTIG FÜR STICKY NAVIGATION
========================================= */

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-x: hidden;
    
    
/* =========================================
   FORMULAR
========================================= */
    
.kontaktformular {
  max-width: 600px;
  margin: 60px auto;
  padding: 30px;
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-family: 'Montserrat', sans-serif;
}

.kontaktformular label {
  font-weight: 600;
  margin-bottom: 5px;
  color: #333;
  font-size: 0.95rem;
}

.kontaktformular input,
.kontaktformular select,
.kontaktformular textarea {
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 1rem;
  transition: border 0.3s ease, box-shadow 0.3s ease;
  background-color: #f9f9f9;
}

.kontaktformular input:focus,
.kontaktformular select:focus,
.kontaktformular textarea:focus {
  border-color: #186c86;
  outline: none;
  box-shadow: 0 0 0 3px rgba(24, 108, 134, 0.15);
  background-color: #fff;
}

.kontaktformular textarea {
  resize: vertical;
  min-height: 120px;
}

.kontaktformular button {
  background-color: #186c86;
  color: white;
  border: none;
  padding: 14px;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.kontaktformular button:hover {
  background-color: #2193b0;
  transform: translateY(-1px);
}

.kontaktformular button:active {
  transform: scale(0.98);
}

@media (max-width: 480px) {
  .kontaktformular {
    padding: 20px;
  }
}

    
    

/* =========================================
   COOKIES
========================================= */
    
    
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  color: #333;
  z-index: 10000;
}

.cookie-banner p {
  margin: 0;
  flex: 1 1 auto;
}

.cookie-banner button {
  background-color: #2193b0;
  color: white;
  border: none;
  padding: 10px 20px;
  margin-left: 20px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.cookie-banner button:hover {
  background-color: #186c86;
}

.cookie-banner.hidden {
  display: none;
}
    
    .cookie-banner .cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.cookie-banner .cookie-link,
.cookie-banner button {
  background-color: #2193b0;
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.cookie-banner .cookie-link:hover,
.cookie-banner button:hover {
  background-color: #186c86;
}

.cookie-banner .decline {
  background-color: #999;
}

.cookie-banner .decline:hover {
  background-color: #666;
}


/* =========================================
   FAQ SECTION
========================================= */
.faq-section {
  padding: 80px 20px;
  background-color: #f7f9fa;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  background: linear-gradient(90deg, var(--grcs-green), var(--grcs-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.faq-item {
  margin-bottom: 20px;
  border: 1px solid #dceef4;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: #186c86;
  cursor: pointer;
  transition: background 0.2s ease;
}

.faq-question:hover {
  background-color: rgba(33, 147, 176, 0.05);
}

.faq-answer {
  padding: 0 24px 18px 24px;
  font-size: 0.95rem;
  color: #333;
  display: none;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  display: block;
}


    .faq-section {
  padding: 80px 20px;
  background-color: #f7f9fa;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  background: linear-gradient(90deg, var(--grcs-green), var(--grcs-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.faq-item {
  border: 1px solid #dceef4;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  margin-bottom: 20px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-item.active {
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 24px;
  font-size: 1rem;
  font-weight: 600;
  color: #186c86;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  background-color: rgba(33, 147, 176, 0.05);
}

.faq-answer {
  padding: 0 24px 18px 24px;
  font-size: 0.95rem;
  color: #333;
  display: none;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  display: block;
}

.arrow {
  transition: transform 0.3s ease;
  font-size: 1rem;
}

.faq-item.active .arrow {
  transform: rotate(180deg);
}
