/* =======================
   RESET & BASE STYLES
======================= */
html {
  box-sizing: border-box;
  font-size: 100%;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #25324a;
  background: #F2F6F5;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  letter-spacing: 0.02em;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
ul, ol {
  list-style: none;
  margin: 0 0 16px 0;
  padding: 0;
}
ul li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 0;
}

address {
  font-style: normal;
  color: #526070;
  font-size: 14px;
  margin: 16px 0 0 0;
}
a {
  color: #275883;
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 500;
}
a:hover, a:focus {
  color: #28A88B;
  text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #275883;
  text-rendering: optimizeLegibility;
  margin-bottom: 12px;
  line-height: 1.15;
}
h1 { font-size: 2.5rem; font-weight: 800; margin-bottom: 24px; letter-spacing: 0.01em; }
h2 { font-size: 2rem; font-weight: 700; margin-bottom: 20px; letter-spacing: 0; }
h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 14px; }
h4, h5, h6 { font-size: 1rem; font-weight: 600; }

/* =========================
  CONTAINER & SECTIONS
========================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
section {
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 4px 30px rgba(51,68,102,0.10);
  margin-bottom: 60px;
  padding: 40px 20px;
  transition: box-shadow 0.2s;
  position: relative;
  z-index: 1;
}
@media (max-width: 600px) {
  section {
    padding: 28px 8px;
    border-radius: 18px;
  }
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 24px;
}

/*===========================
   HEADER & NAVIGATION
============================*/
header {
  width: 100%;
  background: #fff;
  padding: 0;
  box-shadow: 0 2px 12px rgba(100,146,191,0.07);
  position: sticky;
  top: 0;
  z-index: 20;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  height: 72px;
  min-height: 72px;
}
.logo img {
  height: 42px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 16px;
  padding: 8px 13px;
  border-radius: 9px;
  transition: background 0.2s, color 0.2s;
  color: #275883;
}
.main-nav a.button-primary {
  background: #28A88B;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 3px 10px rgba(40,168,139,0.14);
  border-radius: 16px;
  margin-left: 14px;
  letter-spacing: 0.04em;
}
.main-nav a.button-primary:hover {
  background: #275883;
  color: #F2F6F5;
}
.main-nav a:hover {
  background: #F2F6F5;
  color: #28A88B;
}

.mobile-menu-toggle {
  display: none;
  border: none;
  background: #F2F6F5;
  color: #275883;
  font-size: 2rem;
  border-radius: 10px;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow:  0 3px 8px rgba(51,128,130,0.09);
}

/* Responsive navbar */
@media (max-width: 980px) {
  .main-nav { display: none; }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* ====================
   MOBILE MENU/OVERLAY
======================*/
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: #FFF;
  box-shadow: 0 8px 40px rgba(39,88,131,0.15);
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.53,.23,0,1.02);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  margin: 24px 24px 8px auto;
  background: #F2F6F5;
  color: #275883;
  border: none;
  font-size: 2rem;
  border-radius: 10px;
  width: 48px;
  height: 48px;
  cursor: pointer;
  align-items: center;
  display: flex;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(40,168,139,0.08);
  transition: background 0.2s;
  overflow: visible !important;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: #28A88B;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin: 40px 30px;
  width: calc(100vw - 60px);
  max-width: 450px;
  font-size: 1.2rem;
}
.mobile-nav a {
  color: #275883;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 14px 0;
  width: 100%;
  border-radius: 7px;
  transition: color 0.18s, background 0.18s;
}
.mobile-nav a:hover {
  background: #F2F6F5;
  color: #28A88B;
}

@media (max-width: 480px) {
  .mobile-nav {
    font-size: 1rem;
    margin: 32px 12px;
    width: calc(100vw - 24px);
  }
  .mobile-menu-close {
    margin: 16px 12px 8px auto;
  }
}

/* ============
   BUTTON STYLES
================ */
.button-primary, .button-secondary, .newsletter-signup button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: none;
  border-radius: 18px;
  padding: 12px 28px;
  font-size: 1.08rem;
  cursor: pointer;
  transition: background 0.20s, color 0.20s, box-shadow 0.20s, transform 0.14s;
  box-shadow: 0 2px 7px rgba(39,88,131,0.08);
  margin-top: 6px;
  display: inline-block;
  letter-spacing: 0.03em;
}
.button-primary,
.newsletter-signup button {
  background: #28A88B;
  color: #fff;
}
.button-primary:hover,
.button-primary:focus, .newsletter-signup button:hover, .newsletter-signup button:focus {
  background: #275883;
  color: #F2F6F5;
  box-shadow: 0 4px 20px rgba(39,88,131,0.13);
  transform: translateY(-2px) scale(1.025);
}
.button-secondary {
  background: #fff;
  color: #28A88B;
  border: 2px solid #28A88B;
}
.button-secondary:hover,
.button-secondary:focus {
  background: #28A88B;
  color: #fff;
  border-color: #275883;
  transform: translateY(-2px) scale(1.03);
}

/* =====================
    CARD & FEATURE STYLES
===================== */
.features-grid, .features,
.card-container,
.card-grid,
.content-grid,
.testimonials-group {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.features-grid {
  margin-top: 8px;
  flex-wrap: wrap;
  align-items: stretch;
}
.feature, .feature-item {
  background: #F2F6F5;
  border-radius: 22px;
  box-shadow: 0 2px 8px rgba(39,88,131,0.07);
  padding: 24px 20px;
  min-width: 190px;
  flex: 1 1 230px;
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: box-shadow 0.15s, transform 0.15s;
  margin-bottom: 20px;
}
.feature:hover {
  box-shadow: 0 8px 28px rgba(40,168,139, 0.13);
  transform: translateY(-3px) scale(1.03) rotate(-1deg);
  background: #e9fcf6;
}
.feature img {
  height: 48px;
  margin-bottom: 8px;
}

.card, .event-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(39,88,131,0.09);
  margin-bottom: 20px;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: box-shadow 0.18s, transform 0.18s;
}
.event-card {
  border-left: 6px solid #28A88B;
  background: #f8faf9;
  margin-bottom: 28px;
  animation: fadeInUp 1.2s cubic-bezier(.47,1.64,.41,.8);
}
.event-card:hover {
  box-shadow: 0 10px 30px rgba(40,168,139,0.15);
  transform: translateY(-3px) scale(1.01);
  background: #eefbfd;
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(24px) scale(0.97); }
  100% { opacity: 1; transform: none; }
}

/* =======================
   TESTIMONIALS
======================= */
.testimonials-group {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 26px;
  background: #fff;
  border-radius: 24px;
  min-width: 220px;
  max-width: 380px;
  box-shadow: 0 2px 14px rgba(39,88,131,0.12);
  border-left: 6px solid #28A88B;
  font-size: 1.04em;
  color: #25324a;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.15s, border-color 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 24px rgba(39,88,131,0.14);
  border-color: #275883;
  background: #F2F6F5;
}
.testimonial-card p {
  color: #25324a;
  font-size: 1.10em;
  margin-bottom: 2px;
}
.testimonial-name {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #275883;
  font-weight: bold;
  font-size: 1em;
  margin-right: 8px;
}
.testimonial-card img {
  height: 22px;
  display: inline-block;
}

/* ======================
   CONTENT, LAYOUT, UTILS
====================== */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* List markers for artistic touch */
ul li:before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 8px;
  border-radius: 50%;
  background: #28A88B;
  vertical-align: middle;
  position: relative;
  top: -1px;
}
ol li {
  counter-increment: item;
  margin-left: 20px;
  margin-bottom: 10px;
}
ol {
  counter-reset: item;
}
ol li:before {
  content: counter(item)'. ';
  color: #275883;
  font-weight: bold;
  margin-right: 8px;
}

/* FAQ styles */
dl {
  border-left: 3px solid #28A88B;
  padding-left: 20px;
  margin-bottom: 22px;
  margin-top: 8px;
}
dt {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #275883;
  font-weight: 600;
  margin-top: 16px;
  font-size: 1.08em;
}
dd {
  color: #25324a;
  font-size: 1em;
  margin-left: 0;
  margin-bottom: 8px;
}

/* Contact details */
.contact-details ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #25324a;
  font-size: 1.07em;
}
.contact-details img {
  width: 20px;
  height: 20px;
}

/* Newsletter signup */
.newsletter-signup {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  margin-bottom: 6px;
}
.newsletter-signup label {
  font-weight: 500;
  color: #275883;
}
.newsletter-signup input[type=email] {
  font-size: 1rem;
  padding: 8px 14px;
  border-radius: 12px;
  border: 1px solid #28A88B;
  outline: none;
  margin-right: 2px;
  transition: border-color 0.18s;
}
.newsletter-signup input[type=email]:focus {
  border-color: #275883;
}
.newsletter-signup button {
  background: #28A88B;
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 14px;
  padding: 8px 20px;
  font-size: 1rem;
}

/* Social Media */
.social-media {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 18px 0 0 0;
}
.social-media a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f2f6f5;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  transition: background 0.18s;
}
.social-media a:hover {
  background: #28A88B;
  box-shadow: 0 4px 18px rgba(40,168,139,0.18);
}
.social-media img {
  width: 20px;
  height: 20px;
}

/* ===================
     FOOTER
=================== */
footer {
  background: #f8faf9;
  border-top: 4px solid #28A88B;
  padding: 38px 0 26px 0;
  margin-top: 24px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  font-size: 15px;
  color: #275883;
  margin-bottom: 0;
}
.footer-links a {
  color: #275883;
  font-weight: 700;
  text-decoration: underline;
  transition: color 0.17s;
  margin-right: 3px;
}
.footer-links a:hover {
  color: #28A88B;
  text-decoration: underline;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .newsletter-signup {
    margin-top: 16px;
  }
}

/* =========================
   COOKIE CONSENT BANNER
========================== */
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0;
  width: 100vw;
  background: #fff;
  color: #25324a;
  box-shadow: 0 -3px 22px rgba(40,168,139,0.11);
  z-index: 9999;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 20px 10px 20px 10px;
  gap: 24px;
  animation: cookie-slidein 0.8s cubic-bezier(.46,1.35,.6,1);
}
@keyframes cookie-slidein {
  0% { transform: translateY(100%); opacity: 0.2; }
  100% { transform: none; opacity: 1; }
}
.cookie-banner-message {
  max-width: 540px;
  font-size: 1.07em;
}
.cookie-banner-buttons {
  display: flex;
  gap: 18px;
  align-items: center;
}
.cookie-banner .button-consent,
.cookie-banner .button-settings {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 12px;
  padding: 10px 20px;
  font-size: 1.05em;
  cursor: pointer;
  border: none;
  transition: background 0.16s, color 0.16s, box-shadow 0.14s;
}
.cookie-banner .button-consent {
  background: #28A88B;
  color: #fff;
  border: none;
  box-shadow: 0 1px 8px rgba(40,168,139,0.11);
}
.cookie-banner .button-consent:hover {
  background: #275883;
  color: #fff;
}
.cookie-banner .button-settings {
  background: #F2F6F5;
  color: #28A88B;
  border: 2px solid #28A88B;
}
.cookie-banner .button-settings:hover {
  background: #28A88B;
  color: #fff;
}

@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
    padding: 20px 6px 24px 6px;
  }
}


/* Cookie Modal Styles */
.cookie-modal-overlay {
  position: fixed;
  z-index: 10000;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(21,49,76,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  border-radius: 20px;
  max-width: 420px;
  width: 98vw;
  box-shadow: 0 7px 38px rgba(39,88,131,0.15);
  padding: 40px 28px 30px 28px;
  position: relative;
  animation: cookie-pop 0.33s cubic-bezier(.48,2.1,.57,.89);
}
@keyframes cookie-pop {
  0% { transform: scale(0.88); opacity: 0; }
  100% { transform: none; opacity: 1; }
}
.cookie-modal-title {
  font-family: 'Montserrat';
  font-size: 1.36rem;
  color: #275883;
  font-weight: 800;
  margin-bottom: 16px;
}
.cookie-category {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1.11em;
}
.cookie-category .category-name {
  font-weight: 600;
  color: #28A88B;
  font-family: 'Montserrat';
  margin-right: 10px;
}
.cookie-category .category-toggle {
  width: 40px;
  height: 22px;
  border-radius: 11px;
  background: #f2f6f5;
  border: 1.5px solid #28A88B;
  position: relative;
  cursor: pointer;
  transition: background 0.11s;
}
.cookie-category .category-toggle[aria-checked="true"] {
  background: #28A88B;
  border-color: #275883;
}
.cookie-category .category-toggle-knob {
  height: 18px;
  width: 18px;
  border-radius: 100%;
  background: #fff;
  border: 1px solid #28A88B;
  position: absolute;
  left: 2px;
  top: 1px;
  transition: left 0.19s, border-color 0.13s;
}
.cookie-category .category-toggle[aria-checked="true"] .category-toggle-knob {
  left: 20px;
  border-color: #275883;
}
.cookie-category .category-description {
  font-size: 0.97em;
  color: #526070;
  margin-left: 12px;
}
.cookie-modal-buttons {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 24px;
}
.cookie-modal .category-toggle[disabled] {
  opacity: 0.66;
  cursor: not-allowed;
}
.cookie-modal-close {
  position: absolute;
  right: 22px; top: 18px;
  background: #f2f6f5;
  color: #275883;
  border: none;
  border-radius: 50px;
  font-size: 1.5em;
  width: 38px;
  height: 38px;
  cursor: pointer;
  transition: background 0.12s;
}
.cookie-modal-close:hover { background: #28A88B; color: #fff; }
@media (max-width:600px) {
  .cookie-modal {
    padding: 28px 7vw 16px 7vw;
    min-width: 0;
  }
  .cookie-modal-title {
    font-size: 1.11rem;
  }
}

/* ====================
    RESPONSIVENESS
==================== */
@media (max-width:800px) {
  .container {
    padding: 0 4vw;
  }
  .features-grid,
  .testimonials-group,
  .content-grid,
  .card-container {
    gap: 16px;
  }
  .feature,
  .event-card,
  .testimonial-card {
    min-width: 0;
    flex: 1 1 100%;
    max-width: 96vw;
    padding: 17px 10px;
  }
}
@media (max-width:600px) {
  h1 {font-size:2rem;}
  h2 {font-size:1.35rem;}
  .footer-links { flex-direction: column; gap: 6px; }
  .content-wrapper, .text-section { gap:14px; }
}
@media (max-width: 500px) {
  .feature,
  .event-card,
  .testimonial-card {
    padding: 12px 4vw;
  }
}

/* Artistic heading underline */
h1, h2 {
  position: relative;
  z-index: 1;
}
h1:after, h2:after {
  content: '';
  display: block;
  height: 5px;
  width: 72px;
  border-radius: 12px;
  background: #28A88B;
  opacity: 0.18;
  position: absolute;
  left: 0; bottom: -11px;
  pointer-events: none;
  z-index: -1;
}

/* Artistic colorful dot */
h3:before {
  content: '';
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 8px;
  border-radius: 50%;
  background: #28A88B;
}

/* ===============
  MICRO-INTERACTIONS
================ */
.button-primary, .button-secondary, .newsletter-signup button,
.mobile-menu-toggle, .mobile-menu-close,
.cookie-banner .button-consent, .cookie-banner .button-settings,
.cookie-modal-close
{
  outline: none;
  box-shadow: 0 0 0 0 #28A88B;
}
.button-primary:focus, .button-secondary:focus, .newsletter-signup button:focus,
.mobile-menu-toggle:focus, .mobile-menu-close:focus {
  box-shadow: 0 0 0 3px #28A88b66;
}

.main-nav a.active, .mobile-nav a.active {
  background: #28A88B;
  color: #fff;
}

/* ===============
    ARTISTIC FONTS
=============== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700;800&family=Roboto:wght@400;500;700&display=swap');

body {
  --primary: #275883;
  --secondary: #28A88B;
  --accent: #F2F6F5;
  --danger: #d32f2f;
  --success: #28A85B;
  --radius-card: 22px;
  --radius-btn: 16px;
}

/* Decorative brush shadow under buttons */
.button-primary, .button-secondary {
  position: relative;
}
.button-primary:after, .button-secondary:after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -7px;
  width: 56px;
  height: 8px;
  transform: translateX(-50%) scale(.84);
  background: #28A88B;
  opacity: 0.09;
  border-radius: 7px;
  pointer-events: none;
}

/* Artistic transitions */
.card, .event-card, .feature, .testimonial-card {
  transition: box-shadow 0.19s, transform 0.19s, background 0.19s;
}

/* -------------
   PRINT STYLES
-------------- */
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none!important; }
  section, .container { box-shadow: none!important; background: none!important; }
  body { background: #fff; }
}
