/* == RESET & NORMALIZE == */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.7;
  background: #FAF7F2;
  color: #183153;
  font-family: 'Open Sans', Arial, sans-serif;
  min-height: 100vh;
  font-size: 16px;
  font-weight: 400;
}
img {
  max-width: 100%;
  height: auto;
  display: inline-block;
  border: 0;
}
a {
  color: #2F8673;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #183153;
}
ul, ol {
  list-style: none;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  padding: 12px 10px;
  text-align: left;
}

/* === ROOT & UTILITIES === */
:root {
  --color-primary: #183153;
  --color-secondary: #2F8673;
  --color-accent: #FAF7F2;
  --color-fun1: #FFD84E; /* playful yellow */
  --color-fun2: #F24686; /* lively pink */
  --color-fun3: #36D6E6; /* bright cyan */
  --radius-lg: 32px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --shadow-sm: 0 2px 8px rgba(24,49,83,0.10);
  --shadow-md: 0 4px 22px rgba(31,170,162,0.12);
  --shadow-lg: 0 8px 32px rgba(43,122,183,0.12);
  --cta-gradient: linear-gradient(90deg, #2F8673 0%, #36D6E6 100%);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* == TYPOGRAPHY == */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #183153;
  margin-bottom: 8px;
}
h1 {
  font-size: 2.75rem;
  line-height: 1.1;
  color: #2F8673;
  margin-bottom: 16px;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  color: #F24686;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: #2F8673;
}
p, li, blockquote {
  font-size: 1rem;
  margin-bottom: 8px;
  word-break: break-word;
}
blockquote {
  font-style: italic;
  color: #183153;
  background: #FFF8DE;
  border-left: 6px solid #FFD84E;
  padding: 16px 24px 16px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  margin-bottom: 8px;
}
strong {
  font-weight: 700;
}
.text-section ul {
  padding-left: 18px;
  margin-bottom: 8px;
}
.text-section ul li {
  list-style: disc;
  margin-bottom: 6px;
}

/* == HEADER & NAVIGATION == */
header {
  background: #FFF;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 990;
  min-height: 60px;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 32px;
  position: relative;
}
.main-nav > a img {
  height: 46px;
  transition: transform 0.25s cubic-bezier(.6,2,0,.9);
}
.main-nav > a img:hover {
  transform: rotate(-6deg) scale(1.06);
}
.main-nav ul {
  display: flex;
  gap: 18px;
  align-items: center;
}
.main-nav ul li a {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #2F8673;
  padding: 9px 16px;
  border-radius: 20px;
  position: relative;
  background: none;
  transition: background 0.18s, color 0.18s;
}
.main-nav ul li a:hover, .main-nav ul li a:focus {
  background: #36D6E6;
  color: #FFF;
}
.cta-btn {
  background: var(--cta-gradient);
  color: #FFF;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  padding: 11px 32px 11px 24px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  margin-left: 18px;
  transition: transform 0.19s cubic-bezier(.8,2,.1,1), box-shadow 0.16s, background 0.22s;
  position: relative;
  outline: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, #F24686 5%, #36D6E6 95%);
  transform: translateY(-2px) scale(1.04) rotate(-1.5deg);
  box-shadow: var(--shadow-lg);
}

/* ===== MOBILE BURGER MENU ===== */
.mobile-menu-toggle {
  display: none;
  font-size: 2.0rem;
  background: #FFD84E;
  color: #183153;
  border: none;
  padding: 9px 14px;
  border-radius: 50%;
  margin-left: 18px;
  cursor: pointer;
  z-index: 995;
  transition: background 0.2s, color 0.2s, transform 0.16s;
  box-shadow: 0 1px 6px rgba(24,49,83,0.16);
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #F24686;
  color: #FFF;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 100%;
  width: 100vw;
  height: 100vh;
  background: #FAF7F2;
  box-shadow: -12px 0 64px rgba(43,122,183,.10);
  z-index: 998;
  transition: transform 0.32s cubic-bezier(.66,-0.01,.18,1.1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 36px 28px 24px 24px;
  overflow-y: auto;
}
.mobile-menu.open {
  left: 0;
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2rem;
  background: #FFF;
  border: 2px solid #FFD84E;
  color: #F24686;
  border-radius: 100%;
  padding: 4px 12px 4px 12px;
  margin-bottom: 18px;
  margin-right: 3px;
  transition: color 0.2s, border 0.2s, background 0.2s;
  cursor: pointer;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #36D6E6;
  border-color: #36D6E6;
  background: #FFF8DE; 
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 21px;
  width: 100%;
}
.mobile-nav a {
  display: block;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  padding: 13px 0 13px 12px;
  border-radius: 22px;
  color: #2F8673;
  background: none;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FFD84E;
  color: #183153;
}

@media (max-width: 1020px) {
  .main-nav ul { gap: 10px; }
  .cta-btn { padding: 10px 22px; font-size: 1rem; }
}
@media (max-width: 850px) {
  .container { padding-left: 10px; padding-right: 10px; }
}
@media (max-width: 768px) {
  .main-nav ul, .main-nav .cta-btn {
    display: none;
  }
  .main-nav {
    gap: 0;
  }
  .mobile-menu-toggle { display: inline-block; }
  .content-wrapper {
    gap: 18px;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.2rem; }
}

/* == HERO SECTION == */
.hero {
  background: #36D6E6;
  background-image: linear-gradient(114deg, #2F8673 0%, #FFD84E 83%, #F24686 100%);
  color: #183153;
  padding: 68px 0 54px 0;
  position: relative;
  min-height: 300px;
  margin-bottom: 0;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: 0 10px 32px rgba(31,170,162,0.09);
}
.hero .container,
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
}
.hero h1 {
  color: #2F8673;
  text-shadow: 2px 2px 0 #FFF8DE;
  font-size: 2.5rem;
  letter-spacing: 2px;
}
.hero p {
  font-size: 1.14rem;
  color: #183153;
  font-weight: 500;
}
.hero .cta-btn {
  margin-top: 15px;
  letter-spacing: 0.5px;
}
@media (max-width: 768px) {
  .hero {
    padding: 38px 0 34px 0;
    min-height: 220px;
    border-radius: 0 0 22px 22px;
  }
  .content-wrapper { gap: 13px; }
}

/* == FEATURES == */
.features {
  background: #FAF7F2;
}
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.feature-card {
  background: #FFF;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 28px 22px 22px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  min-width: 260px;
  max-width: 340px;
  flex: 1 1 260px;
  margin-bottom: 20px;
  position: relative;
  border-top: 5px solid #F24686;
  transition: box-shadow 0.16s, transform 0.22s;
  will-change: transform, box-shadow;
}
.feature-card:hover, .feature-card:focus-within {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px) scale(1.03) rotate(-1.5deg);
}
.feature-card img {
  height: 52px; width: 52px;
  margin-bottom: 6px;
  filter: drop-shadow(1px 2px 0 #FFD84E) drop-shadow(1px 1px .1px #FAF7F2);
  animation: card-pop 1.1s cubic-bezier(.66,.04,.18,1.4) alternate infinite;
}
@keyframes card-pop {
  0% { transform: translateY(0); filter: drop-shadow(0 1px 0 #FFD84E); }
  60% { transform: translateY(-2px) scale(1.06); filter: drop-shadow(2px 3px 2px #36D6E6); }
  100% { transform: translateY(0.5px); }
}
.feature-card h3 {
  font-size: 1.18rem;
  font-weight: 700;
  color: #2F8673;
  margin-bottom: 4px;
}
.feature-card p {
  color: #183153;
  font-size: 1rem;
}
@media (max-width: 1100px) {
  .features .feature-grid { justify-content: flex-start; }
}
@media (max-width: 900px) {
  .features .feature-grid {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
}

/* == CARD PATTERNS == */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #FFF8DE;
  margin-bottom: 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 30px 24px;
  position: relative;
  transition: box-shadow 0.17s, transform 0.19s;
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: scale(1.02) rotate(-1deg);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}

/* == TESTIMONIALS == */
.testimonials {
  background: #FAF7F2;
  padding: 30px 0;
}
.testimonials .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 16px;
}
.testimonial-card {
  background: #FFF;
  border-radius: 22px;
  box-shadow: var(--shadow-md);
  padding: 26px 24px 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  min-width: 250px;
  max-width: 410px;
  flex: 1 1 256px;
  border-left: 7px solid #FFD84E;
  transition: box-shadow 0.14s, border-color 0.14s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: var(--shadow-lg);
  border-color: #F24686;
}
.testimonial-card blockquote {
  background: none;
  border: none;
  color: #183153;
  font-size: 1.14rem;
  font-style: italic;
  font-weight: 500;
  box-shadow: none;
  padding: 0;
}
.testimonial-card p {
  color: #2F8673;
  margin-bottom: 0;
  font-weight: 700;
}

/* == SERVICES == */
.services .service-overview {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: flex-start;
  margin-top: 10px;
}
.services .service-overview li {
  background: #36D6E6;
  color: #183153;
  border-radius: 18px;
  font-size: 1.05rem;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  display: inline-block;
  padding: 13px 22px;
  margin-bottom: 10px;
  font-weight: 700;
  margin-right: 11px;
  box-shadow: 0 2px 8px rgba(54,214,230,0.06);
  transition: background 0.14s, color 0.14s, transform 0.15s;
}
.services .service-overview li a {
  color: inherit;
  text-decoration: none;
}
.services .service-overview li:hover {
  background: #F24686;
  color: #FFF;
  transform: scale(1.05) rotate(2deg);
}
/* Angebote/Services cards (angebote.html) */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.service-card {
  background: #FFF;
  border-radius: 22px;
  box-shadow: var(--shadow-md);
  padding: 30px 20px 24px 20px;
  min-width: 220px;
  max-width: 330px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  border-bottom: 5px solid #36D6E6;
  position: relative;
  transition: box-shadow 0.16s, transform 0.18s;
}
.service-card img {
  width: 48px; height: 48px;
  margin-bottom: 3px;
}
.service-card strong {
  color: #F24686;
  font-weight: 800;
  font-size: 1.05rem;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: scale(1.04) rotate(-1deg);
  border-bottom: 5px solid #F24686;
}

@media (max-width: 1000px) {
  .feature-grid, .service-cards { flex-direction: column; gap: 18px; }
}
@media (max-width: 700px) {
  .testimonial-card, .feature-card, .service-card { min-width: 130px; max-width: 100%; padding: 20px 10px; }
  .testimonials .content-wrapper { gap: 14px; }
  .feature-grid,.service-cards { gap: 14px; }
}

/* == PRICING TABLE == */
.pricing-table {
  margin-top: 8px;
  background: #FFF8DE;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  width: 100%;
  margin-bottom: 22px;
}
.pricing-table thead tr {
  background: #FFD84E;
}
.pricing-table th {
  color: #183153;
  font-size: 1.03rem;
  font-weight: 700;
}
.pricing-table tbody tr {
  background: #FFF;
  border-bottom: 1px solid #E5E9EC;
}
.pricing-table tbody tr:hover {
  background: #FAF7F2;
}
.pricing-table td {
  color: #2F8673;
}

.feature-list {
  margin-top: 10px;
  list-style: disc;
  padding-left: 26px;
  color: #183153;
}
.feature-list li {
  margin-bottom: 6px;
  font-size: 1rem;
  font-weight: 500;
}

/* == FAQ == */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-item {
  background: #F3F9F9;
  border: 1.5px solid #36D6E6;
  border-radius: var(--radius-sm);
  padding: 20px 18px 13px 18px;
  box-shadow: 0 2px 8px rgba(54,214,230,0.06);
  position: relative;
  transition: box-shadow .14s, background 0.13s;
}
.faq-item h3 {
  color: #2F8673;
  font-size: 1.08rem;
  margin-bottom: 8px;
  font-weight: 700;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
}
.faq-item p {
  font-size: 1rem;
  color: #183153;
}
.faq-item:hover, .faq-item:focus-within {
  background: #FFD84E;
  box-shadow: var(--shadow-md);
}

/* == EVENT/RETREAT LISTS == */
.event-overview, .retreat-overview {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.event-item, .retreat-item {
  background: #FFF;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 24px 20px 18px 20px;
  min-width: 245px;
  max-width: 400px;
  flex: 1 1 245px;
  margin-bottom: 20px;
  transition: box-shadow 0.13s, transform 0.17s;
}
.event-item h3, .retreat-item h3 {
  color: #F24686;
  font-size: 1.14rem;
  margin-bottom: 4px;
  font-weight: 700;
}
.event-item p, .retreat-item p {
  color: #183153;
  font-size: .98rem;
}
.event-item:hover, .retreat-item:hover {
  box-shadow: var(--shadow-lg);
  transform: scale(1.03) rotate(-1deg);
}
.benefit-highlights {
  margin-top: 16px;
  padding: 14px 18px 14px 18px;
  background: #FAF7F2;
  border-radius: var(--radius-md);
}
.benefit-highlights h3 {
  color: #2F8673;
  font-size: 1.10rem;
  margin-bottom: 10px;
}
.benefit-highlights ul {
  margin: 0 0 1px 18px;
  padding: 0;
}
.benefit-highlights li {
  font-size: 1rem;
  color: #183153;
  margin-bottom: 6px;
}
@media (max-width: 900px) {
  .event-overview, .retreat-overview { flex-direction: column; gap: 14px; }
}

/* == CTA SECTIONS == */
.cta {
  background: #FFD84E;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  margin: 50px 0 28px 0;
  padding: 35px 0;
  display: flex;
  align-items: center;
  min-height: 120px;
}
.cta .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 14px;
  justify-content: center;
}
.cta h2 {
  color: #F24686;
}
.cta p {
  color: #183153;
  font-size: 1.08rem;
}
.cta .cta-btn {
  margin-top: 10px;
}
@media (max-width: 700px) {
  .cta { margin: 24px 0 16px 0; padding: 18px 0; }
}

/* == CONTACT DETAILS & FOOTER == */
.contact-details {
  font-size: .98rem;
  color: #2F8673;
  margin-top: 18px;
}
.contact-details a {
  color: #F24686;
}
.footer-nav {
  margin-bottom: 10px;
  font-size: .95rem;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: #183153;
}
.footer-nav a {
  color: #36D6E6;
  font-weight: 600;
  transition: color 0.12s;
  padding: 2px 7px;
  border-radius: 13px;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #F24686;
  color: #FFF;
}
.social-media-links {
  margin-top: 18px;
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.social-media-links img {
  width: 32px;
  height: 32px;
  filter: drop-shadow(1px 1px 0 #FFD84E);
  transition: transform 0.18s;
  cursor: pointer;
}
.social-media-links img:hover {
  transform: scale(1.11) rotate(-6deg);
  filter: drop-shadow(0 0 6px #2F8673); 
}
footer {
  margin-top: 40px;
  background: #2F8673;
  color: #FFF;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
footer .container {
  padding: 34px 24px 26px 24px;
}
footer .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
footer .footer-nav a { color: #FFD84E; }
footer .footer-nav a:hover { color: #FFF; background: #F24686; }
footer .contact-details { color: #FFF; }
@media (max-width: 700px) {
  footer .container { padding: 18px 7px; }
  footer { border-radius: 20px 20px 0 0; }
}

/* == LEGAL / TEXT PAGES == */
.legal {
  background: #FAF7F2;
  padding: 30px 0;
}
.legal .content-wrapper {
  margin-top: 14px;
}
.legal h1, .legal h2 {
  color: #2F8673;
}
.legal .text-section {
  background: #FFF;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 22px 16px 12px 20px;
  margin-bottom: 8px;
}
.legal .text-section ul { margin-left: 18px; }
.legal .text-section ul li { margin-bottom: 4px; }

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; width: 100vw;
  background: #FFD84E;
  color: #183153;
  box-shadow: 0 -4px 18px rgba(31,170,162,.09);
  z-index: 9999;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  padding: 18px 38px 18px 22px;
  font-size: 1rem;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  animation: banner-slide-up 0.5s cubic-bezier(.62,1.2,.19,1);
}
@keyframes banner-slide-up {
  0% { transform: translateY(120%); opacity: 0; }
  80% { opacity: .9; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  margin-bottom: 0;
  font-size: 1.01rem;
}
.cookie-banner button,
.cookie-banner .cookie-settings-btn {
  background: #2F8673;
  color: #FFF;
  border: none;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  border-radius: 20px;
  padding: 8px 24px;
  margin-left: 9px;
  margin-right: 2px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(54,214,230,0.08);
  transition: background 0.19s, color 0.19s, box-shadow 0.14s;
}
.cookie-banner .cookie-settings-btn {
  background: #F24686;
  color: #FFF;
}
.cookie-banner button:hover, .cookie-banner .cookie-settings-btn:hover {
  background: #FAF7F2;
  color: #2F8673;
  box-shadow: 0 6px 18px rgba(54,214,230,0.12);
}
@media (max-width: 710px) {
  .cookie-banner { flex-direction: column; align-items:flex-start; gap: 13px; padding: 14px 10px 14px 10px; font-size: .95rem; }
  .cookie-banner button, .cookie-settings-btn { margin-bottom: 6px; }
}

/* == COOKIE MODAL == */
.cookie-modal {
  position: fixed;
  left: 0;
  top: 0; right: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(24,49,83,0.30);
  z-index: 10001;
  padding: 30px 10px 10px 10px;
  opacity: 1;
  pointer-events: all;
  animation: cookie-modal-fadein .34s cubic-bezier(.62,1.2,.19,1);
}
@keyframes cookie-modal-fadein {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal .cookie-modal-content {
  background: #FFF8DE;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 440px;
  width: 100%;
  padding: 38px 26px 28px 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  animation: card-pop .85s cubic-bezier(.62,1.3,.19,1);
}
.cookie-modal h3 {
  color: #2F8673;
  font-size: 1.2rem;
}
.cookie-category {
  margin-top: 12px;
  background: #FFF;
  padding: 15px 12px;
  border-radius: 13px;
  margin-bottom: 10px;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items:center;
  gap: 18px;
}
.cookie-category .cookie-toggle {
  margin-left: auto;
}
.cookie-modal label {
  font-weight: 500;
  color: #183153;
}
.cookie-toggle input[type="checkbox"] {
  accent-color: #F24686;
  width: 24px;
  height: 24px;
  margin-right: 5px;
  vertical-align: bottom;
}
.cookie-modal .close-cookie-modal {
  position: absolute;
  top: 16px; right: 14px;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: #F24686;
  cursor: pointer;
  transition: color 0.19s;
}
.cookie-modal .close-cookie-modal:hover {
  color: #36D6E6;
}
.cookie-modal .cookie-modal-actions {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}
.cookie-modal .cookie-modal-actions button {
  background: #FFD84E;
  color: #183153;
  font-weight: 700;
  border-radius: 16px;
  border: none;
  padding: 8px 22px;
  font-size: 1rem;
  margin: 0;
}
.cookie-modal .cookie-modal-actions button.primary {
  background: #2F8673;
  color: #FFF; 
}
.cookie-modal .cookie-modal-actions button.reject {
  background: #F24686;
  color: #FFF;
}

@media (max-width: 500px) {
  .cookie-modal .cookie-modal-content {
    padding: 20px 6px 18px 8px;
    max-width: 97vw;
  }
}

/* == RESPONSIVENESS == */
@media (max-width: 450px) {
  h1 { font-size: 1.4rem; }
  h2 { font-size: 1.05rem; }
  th, td { font-size: .94rem; }
}

/* == MICRO-INTERACTIONS == */
.cta-btn, .feature-card, .service-card, .testimonial-card, .event-item, .footer-nav a, .mobile-nav a {
  transition: box-shadow 0.17s, background 0.17s, color 0.15s, transform 0.15s;
}

/* == MISC == */
::-webkit-scrollbar {
  width: 9px;
  background: #FFF8DE;
}
::-webkit-scrollbar-thumb {
  background: #FFD84E;
  border-radius: 18px;
}
::-webkit-scrollbar-thumb:hover { background: #2F8673; }

@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal { display: none !important; }
}

/* Fallback for CSS vars */
html {
  background: #FAF7F2;
}