/* --- 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: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  box-sizing: border-box;
  font-size: 100%;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  font-family: 'Source Sans Pro', Arial, sans-serif;
  background: #FFFFFF;
  color: #123C69;
  min-height: 100vh;
  font-size: 16px;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #AC3B61;
  text-decoration: none;
  transition: color 0.25s;
}
a:hover, a:focus {
  color: #922046;
  text-decoration: underline;
}
ul, ol {
  margin-left: 1.5em;
  margin-bottom: 1em;
}
li {
  margin-bottom: 0.5em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Source Sans Pro', Arial, sans-serif;
  font-weight: 700;
  color: #123C69;
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.1;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}
h4 { font-size: 1.2rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }
p {
  font-size: 1.09rem;
  margin-bottom: 16px;
}
strong, b {
  font-weight: bold;
}
em, i {
  font-style: italic;
}

/* --- LAYOUT CONTAINERS --- */
.container {
  width: 100%;
  max-width: 1172px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
}

.content-wrapper {
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.text-section {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FBF4F1;
  border-radius: 32px;
  box-shadow: 0 4px 16px rgba(18,60,105,0.06);
  transition: box-shadow 0.3s;
}
.section:last-child {
  margin-bottom: 0;
}

/* --- NAVIGATION AND HEADER --- */
header {
  background: #123C69;
  color: #fff;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 30;
  box-shadow: 0 2px 8px rgba(18,60,105,0.09);
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 30px;
}
.logo {
  display: flex;
  align-items: center;
  height: 56px;
}
.logo img {
  max-height: 48px;
  filter: drop-shadow(2px 2px 0 #E2D4B7);
  transition: transform 0.25s;
}
.logo:hover img {
  transform: scale(1.07) rotate(-3deg) skewY(1deg);
}
nav.main-nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
nav.main-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.04rem;
  font-weight: 500;
  padding: 7px 15px;
  border-radius: 20px;
  transition: background 0.25s, color 0.22s;
}
nav.main-nav a:hover, nav.main-nav a.active {
  background: #E2D4B7;
  color: #123C69;
}

.cta, .cta.primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #AC3B61;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  font-size: 1.07rem;
  padding: 11px 26px;
  border-radius: 26px;
  border: none;
  box-shadow: 0 2px 8px rgba(172,59,97,0.08);
  margin-left: 15px;
  transition: background 0.22s, transform 0.18s, box-shadow 0.22s;
  cursor: pointer;
  text-shadow: 0 1px 2px rgba(18,60,105,0.13);
  position: relative;
  outline: none;
}
.cta.primary {
  background: #922046;
}
.cta:hover, .cta:focus, .cta.primary:hover, .cta.primary:focus {
  background: #FBB040;
  color: #123C69;
  transform: translateY(-2px) scale(1.05) rotate(-2deg);
  box-shadow: 0 6px 16px rgba(251,176,64,0.12);
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.2rem;
  line-height: 1;
  color: #FBB040;
  padding: 6px 14px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.22s, color 0.20s;
  z-index: 101;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #E2D4B7;
  color: #AC3B61;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #123C69;
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.25s cubic-bezier(0.8,0.3,0.4,1);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 0;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  background: #FBB040;
  color: #123C69;
  border: none;
  font-size: 2rem;
  margin-top: 18px;
  margin-right: 24px;
  border-radius: 50%;
  padding: 6px 15px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(172,59,97,0.08);
  transition: background 0.21s, color 0.20s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #922046;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px 28px;
  margin-top: 34px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.34rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 14px 5px;
  margin-bottom: 10px;
  border-radius: 18px;
  width: 100%;
  transition: background 0.17s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus, .mobile-nav a.active {
  background: #FBB040;
  color: #123C69;
}
/* --- Main Responsive Navigation --- */
@media (max-width: 1020px) {
  nav.main-nav {
    gap: 9px;
  }
  header .container {
    gap: 10px;
  }
}
@media (max-width: 900px) {
  nav.main-nav, .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
/* --- HERO & HEADINGS ANIMATION --- */
@keyframes heading-bounce {
  0% { transform: scale(1) rotate(-1deg); }
  24% { transform: scale(1.035) rotate(1.3deg); }
  60% { transform: scale(0.99) rotate(-2deg); }
  100% { transform: scale(1) rotate(-1deg); }
}
h1, .hero-title {
  animation: heading-bounce 2.3s cubic-bezier(.68,-0.55,.27,1.55) 1;
}

/* --- FEATURES & CARDS --- */
.features-grid, .features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  flex-direction: column;
  margin-bottom: 28px;
}
@media (min-width: 700px) {
  .features-grid, .features {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
  }
}
.feature {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 18px rgba(172,59,97,0.06);
  flex: 1 1 210px;
  min-width: 230px;
  max-width: 325px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 32px 20px 24px 20px;
  transition: box-shadow 0.27s, transform 0.24s;
  margin-bottom: 20px;
  text-align: center;
  position: relative;
}
.feature img {
  height: 54px;
  margin-bottom: 10px;
  filter: drop-shadow(0 2px 0 #FBB040);
  animation: icon-bounce 1.6s ease-in-out;
}
@keyframes icon-bounce {
  0% { transform: scale(1.06) translateY(-10px); }
  40% { transform: scale(1) translateY(0); }
  100% { transform: scale(1.10) translateY(-2px); }
}
.feature:hover, .feature:focus-within {
  box-shadow: 0 10px 36px rgba(251,176,64,0.17);
  transform: translateY(-3px) scale(1.01) rotate(-1deg);
}
.feature h3 {
  color: #AC3B61;
  font-size: 1.2rem;
}
.feature p {
  color: #336699;
  font-size: 1rem;
}

/* --- Cards (if used) --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  margin-bottom: 20px;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(18,60,105,0.09);
  position: relative;
  transition: box-shadow 0.21s, transform 0.20s;
  overflow: hidden;
  flex: 1 1 250px;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 36px rgba(172,59,97,0.13);
  transform: translateY(-2px) scale(1.015);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 20px 22px;
}

/* --- Content Grid / Text-Image Section --- */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
  }
  .features-grid {
    flex-direction: column;
  }
  .container {
    padding: 0 6px;
  }
}

/* --- Testimonial Cards --- */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fffbe7;
  border-radius: 23px;
  margin-bottom: 20px;
  box-shadow: 0 1px 8px rgba(18,60,105,0.07);
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  border-left: 8px solid #FBB040;
  color: #123C69;
  transition: box-shadow 0.20s;
  font-size: 1.10rem;
}
.testimonial-card p {
  font-size: 1.15rem;
  font-weight: 500;
  color: #123C69;
  margin-bottom: 9px;
}
.testimonial-card span {
  font-size: 1rem;
  color: #922046;
  font-style: italic;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 6px 30px rgba(251,176,64,0.26);
  background: #fff7cf;
}

/* --- Feature Items --- */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- Footer --- */
footer {
  background: #123C69;
  color: #fff;
  padding: 48px 0 24px 0;
}
footer .container {
  align-items: flex-start;
  gap: 42px;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 18px;
}
.footer-menu a {
  color: #fff;
  font-size: 0.98rem;
  opacity: 0.86;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: opacity 0.18s;
}
.footer-menu a:hover, .footer-menu a:focus {
  opacity: 1;
  text-decoration: underline;
  color: #FBB040;
}
.footer-contact {
  font-size: 0.97rem;
  opacity: 0.95;
  margin-top: 10px;
}
.footer-contact strong {
  color: #FBB040;
}
.footer-contact a {
  color: #FBB040;
  font-weight: 600;
}
@media (max-width: 700px) {
  .footer-menu {
    flex-direction: column;
    gap: 7px;
  }
  footer .container {
    gap: 15px;
  }
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: fixed;
  bottom: 0;
  left: 0;
  min-width: 100vw;
  background: #fffbe7;
  color: #123C69;
  z-index: 2000;
  padding: 22px 12px 18px 12px;
  box-shadow: 0 -4px 22px rgba(172,59,97,0.11);
  animation: cookie-slide-in 0.5s;
  font-size: 1.01rem;
  gap: 13px;
}
@keyframes cookie-slide-in {
  from { transform: translateY(160px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 4px;
}
.cookie-banner button {
  padding: 8px 19px;
  border-radius: 22px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.19s, color 0.18s, transform 0.15s;
  box-shadow: 0 1px 3px rgba(251,176,64,0.12);
}
.cookie-banner .accept-btn {
  background: #FBB040;
  color: #123C69;
}
.cookie-banner .accept-btn:hover, .cookie-banner .accept-btn:focus {
  background: #922046;
  color: #fff;
}
.cookie-banner .reject-btn {
  background: #fff;
  color: #AC3B61;
  border: 1.5px solid #AC3B61;
}
.cookie-banner .reject-btn:hover, .cookie-banner .reject-btn:focus {
  background: #AC3B61;
  color: #fff;
}
.cookie-banner .settings-btn {
  background: #E2D4B7;
  color: #123C69;
  border: 1.5px solid #E2D4B7;
}
.cookie-banner .settings-btn:hover, .cookie-banner .settings-btn:focus {
  background: #FBB040;
  color: #123C69;
}

/* --- COOKIE MODAL --- */
.cookie-modal-overlay {
  position: fixed;
  z-index: 2050;
  inset: 0;
  background: rgba(18,60,105,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  animation: modal-in 0.3s;
}
.cookie-modal {
  background: #fffbe7;
  color: #123C69;
  border-radius: 32px;
  padding: 36px 28px 30px 28px;
  min-width: 320px;
  max-width: 95vw;
  box-shadow: 0 8px 44px rgba(18,60,105,0.22);
  display: flex;
  flex-direction: column;
  gap: 25px;
  animation: modal-in 0.38s cubic-bezier(.43,1.47,.22,.91);
  position: relative;
  align-items: center;
  margin: 10px;
}
.cookie-modal-close {
  position: absolute;
  top: 15px;
  right: 23px;
  background: #FBB040;
  color: #123C69;
  border: none;
  border-radius: 50%;
  width: 33px;
  height: 33px;
  font-size: 1.3rem;
  cursor: pointer;
  transition: background 0.17s, color 0.15s;
  z-index: 2;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #AC3B61;
  color: #fff;
}
@keyframes modal-in {
  from { opacity: 0; transform: scale(0.90) translateY(50px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal h2 {
  font-size: 1.28rem;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 17px;
  width: 100%;
  margin-bottom: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 15px;
}
.cookie-category label {
  font-weight: bold;
  font-size: 1.05rem;
}
.cookie-category input[type="checkbox"] {
  width: 19px; height: 19px;
  accent-color: #FBB040;
  cursor: pointer;
}
.cookie-category.essential label {
  opacity: 0.63;
  font-style: italic;
}
.cookie-category.essential input {
  display: none;
}
.cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  justify-content: center;
  margin-top: 11px;
}
.cookie-modal-actions button {
  padding: 7px 18px;
}

/* --- SPACING, WHITE SPACE, FLEXBOX GAPS --- */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border: none;
  background: none;
}
section:last-child {
  margin-bottom: 0;
}
@media (max-width: 600px) {
  section {
    padding: 34px 6px 18px 6px;
  }
  .section {
    border-radius: 16px;
    padding: 22px 8px;
  }
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 700px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.44rem; }
  .feature { min-width: 92vw; max-width: none; }
  .section { padding: 18px 4px; }
  .testimonial-card { max-width: 99vw; }
}
@media (max-width: 568px) {
  body, p { font-size: 15px; }
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.12rem; }
}

/* --- PLAYFUL DYNAMIC EFFECTS --- */
.cta::after {
  content: '\2726';
  margin-left: 9px;
  font-size: 1.13em;
  color: #FBB040;
  animation: twinkle 2s infinite alternate both;
}
@keyframes twinkle {
  from { opacity: 0.8; filter: blur(0); }
  to { opacity: 1; filter: blur(1.5px); }
}
.feature:hover::before {
  content: '\1F3C1';
  position: absolute;
  top: -18px; left: 48%;
  font-size: 1.6rem;
  animation: flag-pop 1s linear;
}
@keyframes flag-pop {
  from { transform: scale(0.75); opacity: 0; }
  to { transform: scale(1.12); opacity: .98; }
}

/* --- LISTS --- */
ul > li, ol > li {
  padding-left: 2px;
  margin-bottom: 7px;
  font-size: 1.07rem;
}
ul > li strong, ol > li strong {
  color: #AC3B61;
}

/* --- MICRO-INTERACTIONS --- */
section, .feature, .testimonial-card, .card {
  transition-property: box-shadow, background, color, transform;
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.43,1.47,.22,.91);
}

/* --- FORMS (if any in the future) --- */
input, textarea, select {
  font-family: inherit;
  padding: 9px 13px;
  border-radius: 8px;
  border: 1.6px solid #E2D4B7;
  font-size: 1rem;
  margin-bottom: 16px;
  width: 100%;
  transition: border 0.23s, box-shadow 0.15s;
}
input:focus, textarea:focus, select:focus {
  border-color: #AC3B61;
  box-shadow: 0 2px 8px rgba(18,60,105,0.10);
  outline: none;
}
button:focus-visible, .cta:focus-visible, .mobile-menu-close:focus-visible {
  outline: 2.5px solid #FBB040;
  outline-offset: 2px;
}

/* --- TYPOGRAPHY SCALE & FUN FONTS --- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,400&amp;display=swap');
@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,600&amp;display=swap');

body, .content-wrapper, .card-content {
  font-family: 'Source Sans Pro', Arial, sans-serif;
}
h1, h2, .hero-title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.cta, .cta.primary, .mobile-nav a, .main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
}

/* --- SELECTION COLOR --- */
::selection {
  background: #FBB040;
  color: #123C69;
}

/* --- SCROLLBAR --- */
::-webkit-scrollbar { width: 12px; background: #E2D4B7; }
::-webkit-scrollbar-thumb {
  background: #AC3B61;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: #FBB040;
}

/* --- UTILITY SPACING CLASSES --- */
.mt-1 { margin-top: 12px !important; }
.mb-1 { margin-bottom: 12px !important; }
.mt-2 { margin-top: 20px !important; }
.mb-2 { margin-bottom: 24px !important; }
.gap-2 { gap: 20px !important; }

/* --- ACCESSIBLE VISIBILITY --- */
.sr-only {
  position: absolute !important;
  border: 0 !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
}

/* --- MANDATORY SPACING & ALIGNMENT CLASSES --- */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.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; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* --- DYNAMIC COLORFUL BACKGROUND CIRCLES --- */
.section::before {
  content: '';
  position: absolute;
  top: -38px; right: 3vw;
  width: 72px; height: 72px;
  background: #FBB040;
  opacity: 0.18;
  filter: blur(16px);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  display: block;
}
.section::after {
  content: '';
  position: absolute;
  left: 0vw; bottom: -46px;
  width: 39px; height: 39px;
  background: #922046;
  opacity: 0.16;
  filter: blur(12px);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  display: block;
}
.section {
  position: relative;
  z-index: 1;
}

/* --- REMOVE GRIDS/COLUMNS (NO grid-* or column-*!) --- */
/* No forbidden properties used anywhere above */
