/* RESET & BASE STYLES */
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 {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  background: linear-gradient(135deg, #F6EAD1 0%, #8BB6D6 100%);
  color: #254064;
  min-height: 100vh;
  line-height: 1.7;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #254064;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #8BB6D6;
}
/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif, Arial;
  color: #254064;
  letter-spacing: 0.01em;
  line-height: 1.15;
  font-weight: 700;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.5rem;
}
p {
  margin-bottom: 16px;
  font-size: 1.125rem;
}
strong {
  font-weight: 700;
  color: #254064;
}
ul, ol {
  margin-bottom: 16px;
  padding-left: 28px;
}
li {
  margin-bottom: 8px;
  font-size: 1rem;
}
/* CONTAINERS & SPACING */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(37,64,100,0.11);
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.22s, transform 0.22s;
}
.card:hover, .card:focus {
  box-shadow: 0 6px 28px 0 rgba(37,64,100,0.20);
  transform: translateY(-4px) scale(1.015);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.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: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(37,64,100,0.08);
  margin-bottom: 20px;
  color: #254064;
  min-width: 0;
  transition: box-shadow 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 18px 0 rgba(37,64,100,0.18);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
/* BUTTONS (CTAs) */
.cta, .cta-secondary, .mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  border: 0;
  border-radius: 900px;
  padding: 12px 32px;
  font-size: 1.13rem;
  text-align: center;
  background: linear-gradient(90deg, #254064 0%, #8BB6D6 100%);
  color: #fff;
  transition: background 0.22s, box-shadow 0.18s, transform 0.22s;
  cursor: pointer;
  box-shadow: 0 4px 18px 0 rgba(37,64,100,0.11);
  margin-top: 10px;
  outline: none;
  min-width: 180px;
  text-decoration: none;
  display: inline-block;
}
.cta:hover, .cta:focus,
.cta-secondary:hover, .cta-secondary:focus,
.mobile-nav a:hover, .mobile-nav a:focus {
  background: linear-gradient(90deg, #8BB6D6 0%, #254064 100%);
  color: #fff;
  box-shadow: 0 4px 24px 0 rgba(37,64,100,0.20);
  transform: translateY(-2px) scale(1.03);
}
.cta-secondary {
  background: linear-gradient(90deg, #fff 0%, #F6EAD1 100%);
  color: #254064;
  border: 2px solid #8BB6D6;
  box-shadow: 0 0 0 0 rgba(0,0,0,0);
}
.cta-secondary:hover, .cta-secondary:focus {
  background: linear-gradient(90deg, #8BB6D6 0%, #F6EAD1 100%);
  color: #254064;
  border: 2px solid #254064;
  box-shadow: 0 2px 16px 0 rgba(139,182,214,0.12);
}
button {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
}
/* HEADER & NAVIGATION */
header {
  width: 100%;
  background: linear-gradient(90deg, #F6EAD1 50%, #8BB6D6 100%);
  box-shadow: 0 2px 12px 0 rgba(37,64,100,0.03);
  z-index: 20;
}
header .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 18px 20px 18px 20px;
}
header img {
  height: 44px;
  width: auto;
}
header nav {
  display: flex;
  flex-direction: row;
}
header nav a {
  padding: 7px 18px;
  font-family: 'Montserrat', sans-serif;
  color: #254064;
  font-size: 1rem;
  border-radius: 32px;
  background: none;
  transition: background 0.17s, color 0.17s;
}
header nav a:hover, header nav a:focus {
  background: #8BB6D6;
  color: #fff;
}
header .cta {
  margin: 0 0 0 18px;
  min-width: unset;
}
/* MOBILE BURGER MENU */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 18px;
  right: 22px;
  width: 48px;
  height: 48px;
  background: #254064;
  color: #fff;
  border-radius: 50%;
  z-index: 160;
  font-size: 2rem;
  justify-content: center;
  align-items: center;
  border: none;
  box-shadow: 0 2px 12px 0 rgba(37,64,100,0.13);
  transition: background 0.18s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #8BB6D6;
  color: #fff;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, #8BB6D6 0%, #F6EAD1 100%);
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0.2,0.2,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #254064;
  color: #fff;
  font-size: 2rem;
  align-self: flex-end;
  margin: 24px 24px 0 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.2s;
  z-index: 10001;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #8BB6D6;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 12px;
  margin-top: 16px;
  padding: 0 32px;
}
.mobile-nav a {
  background: #fff;
  color: #254064;
  font-size: 1.2rem;
  border-radius: 32px;
  padding: 18px 0 18px 28px;
  font-weight: 700;
  box-shadow: 0 2px 12px 0 rgba(37,64,100,0.09);
  margin: 0 0 4px 0;
  min-width: unset;
  width: 100%;
  text-align: left;
}
.mobile-nav a.active, .mobile-nav a:active {
  background: #8BB6D6;
  color: #fff;
}
/* MAIN & SECTIONS */
main {
  background: transparent;
  width: 100%;
  flex: 1 1 0;
}
section {
  width: 100%;
  min-width: 0;
  margin-bottom: 60px;
  padding: 40px 0;
}
section .container {
  align-items: stretch;
}
section .content-wrapper {
  background: rgba(255,255,255,0.90);
  border-radius: 18px;
  box-shadow: 0 6px 36px 0 rgba(37,64,100,0.07);
  padding: 36px 30px;
  gap: 20px;
}
@media (max-width: 768px) {
  .content-wrapper, section .content-wrapper {
    padding: 24px 8px;
    border-radius: 10px;
  }
}
/* TESTIMONIALS */
.testimonial-card p {
  font-size: 1.08rem;
  font-style: italic;
  color: #254064;
  margin: 0 0 2px 0;
}
.testimonial-card strong {
  font-size: 1rem;
  color: #254064;
}
.testimonial-card div {
  margin-left: 8px;
}
/* NEWSLETTER SIGNUP */
.newsletter-signup {
  display: flex;
  align-items: center;
  margin-top: 12px;
  font-size: 1rem;
  color: #254064;
}
.newsletter-signup p {
  margin: 0;
}
/* FOOTER */
footer {
  width: 100%;
  background: linear-gradient(90deg, #254064 40%, #8BB6D6 100%);
  color: #fff;
  font-size: 1rem;
  padding: 36px 0 16px 0;
}
footer .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 28px 20px;
  flex-wrap: wrap;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 24px;
  align-items: flex-start;
  width: 100%;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
footer nav a {
  color: #F6EAD1;
  padding: 3px 0;
  font-family: 'Montserrat', sans-serif;
  text-decoration: none;
  border-radius: 4px;
  font-size: 1rem;
  transition: background 0.14s, color 0.14s;
}
footer nav a:hover, footer nav a:focus {
  background: #F6EAD1;
  color: #254064;
}
footer .text-section {
  color: #fff;
  gap: 7px;
  font-size: 0.98rem;
}
footer img {
  height: 42px;
}
/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(90deg, #8BB6D6 0%, #F6EAD1 100%);
  color: #254064;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 24px;
  z-index: 11000;
  box-shadow: 0 -2px 12px 0 rgba(37,64,100,0.15);
  animation: cookieBannerIn 0.34s cubic-bezier(0.42,0,0.58,1);
  border-radius: 18px 18px 0 0;
  flex-wrap: wrap;
}
@keyframes cookieBannerIn {
  from {transform: translateY(100%); opacity: 0;}
  to {transform: translateY(0); opacity: 1;}
}
.cookie-banner-buttons {
  display: flex;
  gap: 12px;
}
.cookie-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 8px 24px;
  border-radius: 32px;
  border: none;
  cursor: pointer;
  margin: 0;
  color: #fff;
  background: #254064;
  transition: background 0.16s, box-shadow 0.17s;
  box-shadow: 0 2px 12px 0 rgba(37,64,100,0.08);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #8BB6D6;
  color: #fff;
}
.cookie-btn.secondary {
  background: #fff;
  color: #254064;
  border: 2px solid #8BB6D6;
}
.cookie-btn.secondary:hover, .cookie-btn.secondary:focus {
  background: #8BB6D6;
  color: #fff;
}
/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  z-index: 12000;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(37,64,100,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookieModalIn 0.28s cubic-bezier(0.42,0,0.58,1);
}
@keyframes cookieModalIn {
  from {opacity: 0;}
  to {opacity: 1;}
}
.cookie-modal {
  background: #fff;
  color: #254064;
  border-radius: 14px;
  padding: 34px 30px 22px 30px;
  max-width: 360px;
  width: 93vw;
  box-shadow: 0 6px 32px 0 rgba(37,64,100,0.13);
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 1.05rem;
  animation: cookieModalPop 0.32s cubic-bezier(0.42,0,0.58,1);
}
@keyframes cookieModalPop {
  from {transform: scale(0.89); opacity: 0;}
  to {transform: scale(1.0); opacity: 1;}
}
.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 22px;
  background: #254064;
  color: #fff;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #8BB6D6;
}
.cookie-modal h3 {
  margin-top: 0;
  font-size: 1.13rem;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 10px 0;
  font-size: 1rem;
}
.cookie-toggle {
  width: 42px;
  height: 28px;
  background: #8BB6D6;
  border-radius: 14px;
  position: relative;
  cursor: pointer;
  border: none;
  outline: none;
  transition: background 0.2s;
}
.cookie-toggle[aria-checked="true"] {
  background: #254064;
}
.cookie-toggle:before {
  content: '';
  display: block;
  position: absolute;
  top: 4px;
  left: 4px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.19s;
}
.cookie-toggle[aria-checked="true"]:before {
  left: 18px;
}
.cookie-category.disabled {
  opacity: 0.5;
  pointer-events: none;
}
/* RESPONSIVE STYLES */
@media (max-width: 1024px) {
  .container {
    max-width: 96vw;
  }
}
@media (max-width: 900px) {
  .container, header .container, footer .container {
    max-width: 100vw;
    padding: 0 10px;
  }
  footer .content-wrapper {
    flex-direction: column;
    gap: 16px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.48rem; }
  .container {
    padding: 0 6px;
  }
  header .container {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 9px;
    padding: 11px 7px;
  }
  header nav {
    display: none;
  }
  header .cta {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .footer .content-wrapper, footer .content-wrapper {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  section, .section {
    margin-bottom: 40px;
    padding: 24px 0;
  }
  .content-wrapper, section .content-wrapper {
    padding: 14px 0;
    border-radius: 8px;
  }
  .card-container, .content-grid, .testimonial-section {
    flex-direction: column;
    gap: 20px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  h1 { font-size: 1.35rem; }
  h2 { font-size: 1.12rem; }
  .cta, .cta-secondary {
    font-size: 1rem;
    padding: 9px 16px;
    min-width: 120px;
  }
  .mobile-menu-toggle {
    width: 40px;
    height: 40px;
    font-size: 1.4rem;
    top: 7px;
    right: 8px;
  }
  .mobile-menu-close {
    width: 32px;
    height: 32px;
    font-size: 1.2rem;
    margin: 14px 12px 0 0;
  }
  .cookie-modal {
    padding: 18px 10px 16px 10px;
    font-size: 0.98rem;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 7px;
    gap: 13px;
    font-size: 0.98rem;
    border-radius: 14px 14px 0 0;
  }
}
/* UTILITIES */
.mt-16 { margin-top: 16px; }
.mb-32 { margin-bottom: 32px; }
.mb-20 { margin-bottom: 20px; }
.mt-8  { margin-top: 8px;  }
.pt-20 { padding-top: 20px; }
.pb-20 { padding-bottom: 20px; }
.gap-24 { gap: 24px; }
.gap-16 { gap: 16px; }
.text-center { text-align: center; }
/* Hide scroll on mobile menu */
body.mobile-menu-open {
  overflow: hidden;
}
/* Hide cookie modal by default (use .open to show) */
.cookie-modal-overlay {
  display: none;
}
.cookie-modal-overlay.open {
  display: flex;
}
/* Accessibility focus outline */
a:focus, button:focus, .cta:focus, .cta-secondary:focus, .cookie-btn:focus {
  outline: 2px solid #8BB6D6;
  outline-offset: 2px;
}
