/* 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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F7F8FA;
  color: #25436B;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  min-height: 100vh;
}
ul, ol {
  margin-left: 1.2em;
  margin-bottom: 1.5em;
  padding-left: 1.2em;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #25436B;
  text-decoration: underline;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #E5B200;
  outline: none;
}

/* VARIABLES — Pastel Palette */
:root {
  --primary: #25436B;
  --secondary: #F7F8FA;
  --accent: #E5B200;
  --pastel-blue: #CED8F6;
  --pastel-lilac: #F0DFFD;
  --pastel-yellow: #FEF4D7;
  --pastel-green: #DAF6ED;
  --pastel-pink: #FCE1EA;
  --soft-shadow: 0 4px 24px rgba(80, 90, 190, 0.07);
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --header-height: 72px;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #25436B;
  font-weight: 600;
  line-height: 1.18;
}
h1 {
  font-size: 2.6rem;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  font-weight: 500;
}
h4, h5, h6 {
  font-size: 1.16rem;
  font-weight: 500;
}
p, address {
  font-size: 1.12rem;
  margin-bottom: 16px;
  color: #3C5478;
  font-family: 'Source Sans Pro', Arial, sans-serif;
}
strong {
  font-weight: 700;
}

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

/* MAIN SECTIONS SPACING */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--pastel-blue);
  border-radius: var(--radius-lg);
  box-shadow: var(--soft-shadow);
}
section:nth-child(even) {
  background: var(--pastel-green);
}
section:last-child {
  margin-bottom: 0;
}
.text-section, .content-wrapper {
  width: 100%;
}

/* CARDS & FEATURES */
.feature-grid, .card-container, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  margin-top: 16px;
  margin-bottom: 20px;
  justify-content: flex-start;
}
.card-container {
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 26px 24px 22px 24px;
  box-shadow: var(--soft-shadow);
  margin-bottom: 20px;
  position: relative;
  min-width: 220px;
  flex: 1 1 240px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 32px 0 rgba(39, 84, 168, 0.14);
  transform: translateY(-4px) scale(1.025);
}
.feature-grid > div {
  flex: 1 1 260px;
  background: var(--pastel-yellow);
  border-radius: var(--radius-md);
  box-shadow: var(--soft-shadow);
  min-width: 220px;
  padding: 24px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
  transition: box-shadow 0.18s, transform 0.18s;
}
.feature-grid > div:hover, .feature-grid > div:focus-within {
  box-shadow: 0 8px 32px rgba(39, 84, 168, 0.14);
  transform: translateY(-2px) scale(1.015);
}

/* TESTIMONIALS */
.testimonial-card {
  background: #fff;
  color: #25436B;
  border-radius: var(--radius-lg);
  box-shadow: var(--soft-shadow);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 24px;
  position: relative;
  min-width: 260px;
}
.testimonial-card p {
  margin: 0;
  color: #2A3B4D;
  font-size: 1.14rem;
  flex: 1 1 auto;
  font-family: 'Source Sans Pro', Arial, sans-serif;
}
.testimonial-card strong {
  font-size: 1rem;
  color: #25436B;
}

/* BUTTONS & LINK CTAs */
.cta, .cta.primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  min-width: 64px;
  padding: 0.64em 1.5em;
  border-radius: var(--radius-sm);
  border: none;
  background: var(--pastel-pink);
  color: var(--primary);
  box-shadow: 0 2px 14px 0 rgba(70, 100, 180, 0.09);
  font-weight: 600;
  text-decoration: none;
  transition: background 0.18s, color 0.18s, box-shadow 0.2s, transform 0.16s;
  cursor: pointer;
  margin-top: 13px;
}
.cta.primary {
  background: var(--accent);
  color: #25436B;
}
.cta:hover, .cta:focus {
  background: var(--pastel-lilac);
  color: #25436B;
  box-shadow: 0 4px 28px 0 rgba(39, 84, 168, 0.12);
  transform: translateY(-2px) scale(1.03);
}
.cta.primary:hover, .cta.primary:focus {
  background: #FFE6A7;
  color: #25436B;
}

/* HEADER & NAVIGATION */
header {
  background: #fff;
  box-shadow: 0 2px 8px 0 rgba(70, 100, 180, 0.07);
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: var(--header-height);
  width: 100%;
}
header .container {
  padding-top: 0;
  padding-bottom: 0;
}
header .content-wrapper {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: var(--header-height);
}
header nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  color: #25436B;
  text-decoration: none;
  padding: 7px 12px;
  border-radius: var(--radius-sm);
  transition: background 0.14s, color 0.14s;
}
header nav a:hover, header nav a:focus {
  background: var(--pastel-blue);
  color: var(--accent);
}
header img {
  height: 45px;
  width: auto;
}
header .cta.primary {
  margin-left: 15px;
}

/* MOBILE MENU (burger + overlay) */
.mobile-menu-toggle {
  display: none;
  background: var(--pastel-yellow);
  border:none;
  color: #25436B;
  font-size: 2rem;
  border-radius: var(--radius-md);
  padding: 8px 14px;
  margin-left: auto;
  transition: background 0.18s;
  z-index: 120;
  box-shadow: 0 2px 8px 1px rgba(70,100,180,0.06);
  cursor: pointer;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--pastel-lilac);
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 92vw;
  max-width: 340px;
  height: 100vh;
  background: #fff;
  box-shadow: -2px 0 38px 0 rgba(45,60,100,0.16);
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.6,.17,.52,.92);
  z-index: 3000;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 28px 22px 20px 22px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: var(--pastel-pink);
  border: none;
  font-size: 2rem;
  color: var(--primary);
  border-radius: var(--radius-md);
  padding: 4px 15px 8px 15px;
  cursor: pointer;
  margin-bottom: 21px;
  transition: background 0.18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--pastel-yellow);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 21px;
}
.mobile-nav a {
  color: #25436B;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.22rem;
  font-weight: 500;
  text-decoration: none;
  background: var(--pastel-blue);
  border-radius: var(--radius-sm);
  padding: 12px;
  transition: background 0.14s, color 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--pastel-pink);
  color: var(--primary);
}

/* MAIN LAYOUT UTILITY FLEX CONTAINERS */
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding-bottom: 10px;
}

/* CARDS VERSATILE LAYOUT */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 13px;
}

/* FOOTER */
footer {
  background: var(--primary);
  color: #fff;
  width: 100%;
  padding: 32px 0 18px 0;
}
footer .container {
  padding-left: 12px;
  padding-right: 12px;
}
footer .content-wrapper {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 35px;
  flex-wrap: wrap;
}
footer img {
  height: 40px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
footer nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  text-decoration: underline;
  margin-bottom: 0;
  opacity: 0.94;
  transition: color 0.16s, opacity 0.15s;
}
footer nav a:hover, footer nav a:focus {
  color: var(--accent);
  opacity: 1;
}
footer address {
  font-size: 1rem;
  margin-top: 0;
  color: #dde8fc;
  line-height: 1.6;
}
footer address a {
  color: #FFD50A;
  text-decoration: underline;
  font-family: 'Source Sans Pro', Arial, sans-serif;
}
footer address img {
  height: 1.12em;
  width: auto;
  margin-right: 4px;
  vertical-align: -3px;
  display: inline;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1050px) {
  .container {
    max-width: 98vw;
    padding-left: 8px;
    padding-right: 8px;
  }
  .feature-grid > div, .card {
    min-width: 185px;
  }
  footer .content-wrapper {
    gap: 20px;
  }
}
@media (max-width: 900px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 815px) {
  header .content-wrapper, footer .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
@media (max-width: 768px) {
  section, .section {
    padding: 29px 7px;
    margin-bottom: 38px;
  }
  .feature-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 11px;
    padding: 16px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
  header .content-wrapper {
    flex-direction: row;
    gap: 7px;
    flex-wrap: wrap;
  }
  header nav, header .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .mobile-menu {
    display: flex;
  }
}
@media (max-width: 530px) {
  section, .section {
    padding: 16px 2px;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.18rem;
  }
}

/* MICRO-INTERACTIONS */
button, .cta, .cta.primary {
  outline: none;
  box-shadow: none;
  transition: background 0.16s, color 0.14s, box-shadow 0.16s, transform 0.13s;
}
button:active, .cta:active, .cta.primary:active {
  transform: scale(0.97);
}

/* COOKIE CONSENT BANNER */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fff4fc;
  color: #25436B;
  box-shadow: 0 -2px 18px rgba(70, 100, 180, 0.14);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  z-index: 9999;
  padding: 18px 8vw 18px 8vw;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  opacity: 1;
  transition: opacity 0.25s, transform 0.3s;
}
.cookie-consent-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(50px);
}
.cookie-consent-banner p {
  margin: 0;
  font-size: 1rem;
  color: #25436B;
  flex: 1 1 auto;
}
.cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-actions button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  background: var(--pastel-blue);
  color: #25436B;
  transition: background 0.18s, color 0.18s;
  font-weight: 500;
}
.cookie-actions .accept {
  background: var(--accent);
  color: #25436B;
}
.cookie-actions .accept:hover,
.cookie-actions .accept:focus {
  background: #FFE6A7;
}
.cookie-actions .reject {
  background: var(--pastel-pink);
  color: #A5456D;
}
.cookie-actions .reject:hover,
.cookie-actions .reject:focus {
  background: var(--pastel-lilac);
  color: #25436B;
}
.cookie-actions .settings {
  background: var(--pastel-yellow);
  color: #7F6E2D;
}
.cookie-actions .settings:hover,
.cookie-actions .settings:focus {
  background: var(--pastel-green);
}

/* COOKIE SETTINGS MODAL */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  width: 92vw;
  max-width: 420px;
  background: #fff;
  color: #25436B;
  border-radius: 22px;
  box-shadow: 0 4px 44px rgba(80,90,190,0.20);
  padding: 36px 26px 22px 26px;
  z-index: 12000;
  transform: translate(-50%,-50%) scale(1);
  opacity: 1;
  transition: opacity 0.23s, transform 0.25s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%,-40%) scale(0.97);
}
.cookie-modal h3 {
  color: #25436B;
  font-weight: 600;
  margin-bottom: 11px;
  font-size: 1.32rem;
}
.cookie-modal .category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 13px;
  margin-bottom: 16px;
}
.cookie-modal .category label {
  font-weight: 500;
  font-size: 1.07rem;
  flex: 1;
}
.cookie-modal .category input[type="checkbox"] {
  accent-color: var(--accent);
  width: 22px;
  height: 22px;
}
.cookie-modal .category.essential label {
  color: #aaa;
}
.cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  gap: 13px;
  margin-top: 10px;
  justify-content: flex-end;
}
.cookie-modal button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border: none;
  border-radius: var(--radius-sm);
  background: var(--pastel-yellow);
  color: #735221;
  padding: 9px 17px;
  transition: background 0.18s, color 0.14s;
  font-weight: 500;
  cursor: pointer;
}
.cookie-modal button.save {
  background: var(--accent);
  color: #25436B;
}
.cookie-modal button.save:hover,
.cookie-modal button.save:focus {
  background: #FFE6A7;
}
.cookie-modal button.close {
  background: var(--pastel-pink);
  color: #A5456D;
}
.cookie-modal button.close:hover, .cookie-modal button.close:focus {
  background: var(--pastel-lilac);
  color: #25436B;
}

/* UTILITIES: Misc. alignment, spacing, visuals */
hr {
  border: none;
  height: 1px;
  background: var(--pastel-lilac);
  margin: 36px 0 20px 0;
}
form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 10px;
}
input, textarea, select {
  font-family: 'Source Sans Pro', Arial, sans-serif;
  border-radius: var(--radius-sm);
  border: 1px solid #E9E4FE;
  background: #fff;
  font-size: 1rem;
  color: #27436B;
  padding: 12px 14px;
  margin-bottom: 10px;
  transition: border 0.18s, box-shadow 0.14s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid var(--accent);
  outline: none;
  box-shadow: 0 0 1px 2px #ffe6a4b7;
}
label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.01rem;
  color: #25436B;
  margin-bottom: 4px;
}

/* LISTS */
ul, ol {
  margin-bottom: 18px;
  color: #456590;
  font-size: 1.07rem;
  line-height: 1.62;
}
ul li, ol li {
  margin-bottom: 9px;
}
ul li strong, ol li strong {
  color: #25436B;
}

/* Additional visual details – Dreamy, Pastel Effects */
section, .card, .feature-grid > div, .testimonial-card {
  box-shadow: var(--soft-shadow);
}

/* Decorative details for dreamy pastel style */
section {
  position: relative;
  overflow: hidden;
}
section::after {
  content: '';
  display: block;
  position: absolute;
  z-index: 0;
  pointer-events: none;
  right: -55px;
  bottom: -45px;
  width: 200px;
  height: 150px;
  background: radial-gradient(ellipse at bottom right, #FCE1EA 50%, transparent 90%);
  opacity: 0.13;
}
section:nth-child(2n)::after {
  background: radial-gradient(ellipse at bottom right, #CED8F6 46%, transparent 100%);
}

/* Hide content visually for accessibility (when needed) */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  border: 0 !important;
}

/* END OF CSS */
