/* CSS 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;
}
html { box-sizing: border-box; }
*, *::before, *::after { box-sizing: inherit; }
body {
  background: #F4F7FB;
  color: #353730;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}
img { max-width: 100%; height: auto; display: block; border: 0; }
a { color: #20488A; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #27AE60; }
ul, ol { list-style: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; background: none; border: none; padding: 0; }

/* TYPOGRAPHY: Brand-like, organic */
h1, .h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.18;
  color: #20488A;
  margin-bottom: 24px;
  letter-spacing: -1px;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #20488A;
  margin-bottom: 20px;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: #20488A;
  margin-bottom: 12px;
}
h4, .h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 8px;
}
p, ul, ol, li, blockquote {
  font-size: 1em;
  color: #353730;
  margin-bottom: 1em;
}
blockquote {
  border-left: 4px solid #27AE60;
  padding-left: 16px;
  font-style: italic;
  color: #165032;
  margin-bottom: 8px;
  background: #e6f7ec;
  border-radius: 8px 32px 32px 8px;
}
cite {
  font-style: normal;
  font-size: 0.98em;
  font-weight: 500;
  color: #20488A;
}
strong { font-weight: 600; color: #20488A; }

/* CONTAINER & LAYOUT */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  max-width: 1100px;
}
.content-wrapper {
  width: 100%;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px 64px 44px 32px;
  box-shadow: 0 2px 12px 0 rgba(44, 62, 80, 0.06), 0 1.5px 9px 0 rgba(39, 174, 96, 0.06);
}

@media (max-width: 900px) {
  .container { max-width: 100%; }
}
@media (max-width: 600px) {
  .container { padding-left: 7px; padding-right: 7px; }
  .content-wrapper { padding: 0; }
  .section { padding: 22px 7px; margin-bottom: 38px; border-radius: 16px 28px 18px 12px; }
}

/* FLEXBOX UTILITY CLASSES */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 24px 36px 24px 36px;
  box-shadow: 0 2px 12px rgba(110, 130, 90, 0.12);
  margin-bottom: 20px;
  padding: 24px 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 260px;
  min-height: 180px;
  flex: 1 1 260px;
  transition: box-shadow 0.22s, transform 0.18s;
}
.card:hover { box-shadow: 0 8px 28px rgba(39,174,96,0.16); transform: translateY(-3px) scale(1.01); }

.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;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F4F7FB;
  border-radius: 20px 52px 24px 24px;
  box-shadow: 0 1.8px 10px 0 rgba(44, 62, 80, 0.064);
  margin-bottom: 21px;
  min-width: 240px;
  min-height: 120px;
  transition: box-shadow 0.19s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 32px rgba(39,174,96,0.13);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .text-image-section { flex-direction: column; align-items: flex-start; gap: 18px; }
  .content-grid { flex-direction: column; gap: 16px; }
  .card-container { flex-direction: column; gap: 14px; }
}

/* HEADER NAVIGATION */
header {
  background: #fff4e0; /* very light organic earth tint */
  position: sticky; top: 0; left: 0; right: 0;
  z-index: 30;
  box-shadow: 0 2px 10px rgba(44, 62, 80, 0.045);
}
header > .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding-top: 12px; padding-bottom: 12px;
}
header .main-nav {
  display: flex;
  gap: 20px;
}
header .main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.06em;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 16px;
  color: #20488A;
  transition: background 0.14s, color 0.13s;
  letter-spacing: 0.01em;
}
header .main-nav a:hover, header .main-nav a:focus {
  background: #e6f7ec;
  color: #27AE60;
}

header a.cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.05em;
  padding: 9px 28px;
  background: #27AE60;
  color: #fff;
  border-radius: 24px 52px 28px 34px;
  box-shadow: 0 1.5px 12px #27AE6014;
  transition: background 0.22s, color 0.14s, box-shadow 0.15s, transform 0.14s;
  margin-left: 8px;
  border: none;
}
header a.cta-btn:hover, header a.cta-btn:focus {
  background: #20488A;
  color: #fff;
  box-shadow: 0 4px 28px rgba(32,72,138,0.20);
  transform: scale(1.03);
}

header .mobile-menu-toggle {
  display: none;
  background: #27AE60;
  color: #fff;
  font-size: 2.1rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 102;
  box-shadow: 0 1.5px 8px #27AE6010;
  margin-left: 8px;
  transition: background 0.18s, color 0.18s, box-shadow 0.2s;
}
header .mobile-menu-toggle:active {
  background: #20488A;
  color: #fff;
}
@media (max-width: 1020px) {
  header > .container { gap: 15px; }
  header .main-nav { gap: 11px; }
}
@media (max-width: 800px) {
  header .main-nav { display: none; }
  header .mobile-menu-toggle { display: flex; }
  header a.cta-btn { padding: 8px 15px; font-size: 0.97em; }
}

/* MOBILE NAV MENU OVERLAY ANIMATION */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; height: 100vh; width: 100vw;
  background: rgba(32,72,138, 0.95);
  z-index: 110;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(-110%);
  transition: transform 0.36s cubic-bezier(0.7,0.1,0.4,1.12);
  padding: 42px 32px 26px 22px;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 2rem;
  color: #fff;
  background: #27AE60;
  border-radius: 50%;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border: none; z-index: 112;
  transition: background 0.18s, color 0.12s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #20488A;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 48px;
  width: 100%;
}
.mobile-nav a {
  display: block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18em;
  font-weight: 600;
  padding: 14px 8px;
  margin-bottom: 2px;
  color: #fff;
  border-radius: 18px;
  transition: background 0.12s, color 0.13s;
  letter-spacing: 0.01em;
  outline: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #e6f7ec;
  color: #27AE60;
}
@media (min-width: 801px) {
  .mobile-menu, .mobile-menu-close { display: none !important; }
}

/************************************/
/* HOME PAGE HERO/SECTION/ELEMENTS  */
/************************************/
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px 64px 44px 32px;
  box-shadow: 0 2px 10px 0 rgba(44, 62, 80, 0.04);
}
section .cta-btn {
  margin-top: 20px;
}
@media (max-width: 600px) {
  section { padding: 18px 6px; border-radius: 13px 22px 14px 8px; margin-bottom: 34px; }
}

/* LISTS & ICONS */
ul li, ol li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 1em;
}
ul li img, ol li img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: contain;
  background: #e6f7ec;
  margin-top: 1px;
  margin-right: 8px;
}
.pricing-summary ul, .pricing-overview ul {
  margin-top: 8px;
  margin-bottom: 0;
  padding-left: 0;
}
.pricing-summary li, .pricing-overview li { font-size: 0.975em; color: #2e4e39; font-weight: 400; }

/* CTA BUTTON & INTERACTIVE */
.cta-btn {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  font-size: 1.02em;
  padding: 10px 32px;
  border-radius: 20px 40px 28px 40px;
  background: #27AE60;
  color: #fff;
  transition: background 0.18s, transform 0.18s, box-shadow 0.14s;
  box-shadow: 0px 1.5px 8px #27AE6012;
  text-align: center;
  border: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: #20488A;
  color: #fff;
  transform: scale(1.035);
  box-shadow: 0 4px 22px rgba(32,72,138,0.16);
}

/* CARDS, FEATURES, TESTIMONIALS SHAPES */
.card { border-radius: 24px 36px 24px 36px; }
.feature-item {
  background: #e6f7ec;
  border-radius: 16px 36px 18px 12px;
  padding: 18px 20px;
  box-shadow: 0 1px 6px #20488A12;
}
.testimonial-card {
  background: #F4F7FB;
  color: #20488A;
  border-left: 6px solid #27AE60;
  font-size: 1.08em;
  font-style: normal;
  box-shadow: 0 2px 10px #20488A16;
}
.testimonial-card blockquote {
  border: none;
  background: none;
  padding-left: 0;
  font-size: 1.03em;
}
.testimonial-card cite { color: #27AE60; }

/****************************/
/* RATINGS STYLES           */
/****************************/
.ratings {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.11em;
  color: #20488A;
  font-weight: 500;
  margin-bottom: 14px;
}
.ratings img {
  width: 23px; height: 23px;
}

/****************************/
/* FOOTER ORGANIC DESIGN    */
/****************************/
footer {
  background: #20488A;
  color: #fff;
  padding: 44px 0 24px 0;
  border-radius: 64px 0 0 0;
  margin-top: 48px;
  box-shadow: 0 -2px 16px #20488A30;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-navigation,
.footer-legal,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-navigation a,
.footer-legal a {
  color: #e6f7ec;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.00em;
  margin-bottom: 3px;
  transition: color 0.15s;
}
.footer-navigation a:hover, .footer-legal a:hover { color: #27AE60; }
.footer-contact ul { list-style: none; padding: 0; margin: 0; }
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.98em;
  margin-bottom: 7px;
  color: #e6f7ec;
}
.footer-contact li img {
  width: 22px; height: 22px;
  background: #e6f7ec;
  border-radius: 5px;
  margin: 0 5px 0 0;
}
.footer-contact a {
  color: #e6f7ec;
  font-size: 1em;
}
.footer-contact a:hover { color: #27AE60; }
.footer-contact img[alt*='Akademie'] {
  width: 38px; height: auto; margin-bottom: 7px;
}
@media (max-width: 900px) {
  footer .container { gap: 18px; }
  footer { padding: 34px 0 14px 0; }
}
@media (max-width: 700px) {
  footer .container { flex-direction: column; gap: 14px; }
}

/************************************/
/* COOKIE CONSENT BANNER STYLES     */
/************************************/
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; width: 100vw;
  background: #20488A;
  color: #fff;
  box-shadow: 0 -1.5px 10px #20488A60;
  z-index: 1000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 19px 16px;
  gap: 16px;
  flex-wrap: wrap;
  animation: bannerIn 0.6s cubic-bezier(0.7,0.1,0.45,1.13);
}
@keyframes bannerIn {
  0% { transform: translateY(110%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  color: #fff;
  margin-bottom: 0;
  font-size: 1em;
  max-width: 420px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 13px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 7px 20px;
  border: none;
  border-radius: 16px 30px 16px 20px;
  cursor: pointer;
  font-size: 1.04em;
  transition: background 0.14s, color 0.14s;
}
.cookie-banner .accept {
  background: #27AE60;
  color: #fff;
}
.cookie-banner .accept:hover { background: #1d7042; }
.cookie-banner .reject {
  background: #e2e6db;
  color: #20488A;
}
.cookie-banner .reject:hover { background: #acb6ad; color: #fff; }
.cookie-banner .settings {
  background: #fff;
  color: #20488A;
  border: 1px solid #27AE60;
}
.cookie-banner .settings:hover {
  background: #e6f7ec;
}
@media (max-width: 700px) {
  .cookie-banner { flex-direction: column; align-items: stretch; gap: 7px; padding: 13px 3px; }
  .cookie-banner .cookie-actions { justify-content: flex-end; gap: 7px; }
}

/* COOKIE POPUP STYLES */
.cookie-modal {
  display: none;
  position: fixed;
  z-index: 1200;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(44, 62, 80, 0.32);
  align-items: center;
  justify-content: center;
  animation: modalIn 0.45s cubic-bezier(0.7,0.2,0.32,1.05);
}
@keyframes modalIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal.active {
  display: flex;
}
.cookie-modal-content {
  background: #fff;
  color: #2e4e39;
  border-radius: 30px 64px 32px 14px;
  padding: 36px 32px 24px 32px;
  max-width: 420px;
  width: 95vw;
  min-width: 210px;
  box-shadow: 0 1.5px 28px #20488A40;
  display: flex;
  flex-direction: column;
  gap: 21px;
  animation: modalContentIn 0.33s cubic-bezier(0.65,0.2,0.32,1.02);
}
@keyframes modalContentIn {
  from { transform: translateY(40px) scale(0.96); opacity: 0; }
  to { transform: none; opacity: 1; }
}
.cookie-modal-content h2 {
  font-size: 1.34em;
  color: #20488A;
  margin-bottom: 3px;
}
.cookie-modal-content label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1em;
  margin-bottom: 12px;
}
.cookie-modal-content input[type=checkbox] {
  width: 17px; height: 17px;
  accent-color: #27AE60;
}
.cookie-modal-content .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 8px;
  justify-content: flex-end;
}
.cookie-modal-actions button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1em;
  padding: 7px 20px;
  border-radius: 16px 30px 16px 20px;
  border: none;
  background: #27AE60;
  color: #fff;
  font-weight: 600;
  transition: background 0.14s;
}
.cookie-modal-actions button.secondary {
  background: #e6f7ec;
  color: #20488A;
}
.cookie-modal-actions button.secondary:hover {
  background: #acb6ad;
}
.cookie-modal-actions button:hover {
  background: #20488A;
  color: #fff;
}
@media (max-width: 480px) {
  .cookie-modal-content { padding: 17px 8px 14px 8px; }
}

/**********************/
/* Misc Responsive    */
/**********************/
@media (max-width: 450px) {
  h1, .h1 {font-size: 1.74rem;}
  h2, .h2 {font-size: 1.22rem;}
}

/* Accessibility utility for visually-hidden but accessible text */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/********************************************/
/* Extra: Utility classes for whitespace     */
/********************************************/
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 8px !important; }
.mb-2 { margin-bottom: 16px !important; }
.mb-3 { margin-bottom: 24px !important; }
.mb-4 { margin-bottom: 32px !important; }
.mt-1 { margin-top: 8px !important; }
.mt-2 { margin-top: 16px !important; }
.mt-3 { margin-top: 24px !important; }
.mt-4 { margin-top: 32px !important; }

/* END OF VIVID MODULES AKADEMIE ORGANIC CSS */