/* 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;
  vertical-align: baseline;
  font-size: 100%;
  font: inherit;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  line-height: 1.6;
  background: #F4F8F7;
  color: #204B57;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 400;
  min-height: 100vh;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  vertical-align: middle;
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  color: #204B57;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #E6B464;
  outline: none;
}
strong, b {
  font-weight: 700;
}
/* BRAND FONTS */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  color: #204B57;
}
h1 { font-size: 2.25rem; margin-bottom: 20px; letter-spacing: -1.5px; line-height: 1.15; }
h2 { font-size: 1.75rem; margin-bottom: 16px; letter-spacing: -1px; line-height: 1.2; }
h3 { font-size: 1.25rem; margin-bottom: 12px; letter-spacing: -0.5px; }
p, li, span {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
}

/*** LAYOUT STRUCTURE ***/
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
main {
  margin-top: 80px;
  margin-bottom: 40px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #ffffff;
  border-radius: 28px;
  box-shadow: 0 4px 18px rgba(35,51,55,0.07), 0 0px 0px rgba(0,0,0,0.01);
  transition: box-shadow 0.3s;
}
.section:hover {
  box-shadow: 0 8px 32px rgba(35,51,55,0.12), 0 3px 12px rgba(230,180,100,0.06);
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  /* If text-image-section inside, style from below */
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.card-container,
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.card {
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 320px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 12px rgba(32,75,87,0.12);
  padding: 32px 24px;
  transition: box-shadow 0.3s, transform 0.22s;
  z-index: 1;
}
.card:hover {
  box-shadow: 0 8px 28px rgba(32,75,87,0.16);
  transform: translateY(-6px) scale(1.025);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  background: #ffeecb;
  box-shadow: 0 3px 28px rgba(32,75,87,0.07);
  margin-bottom: 20px;
  padding: 20px;
  border-radius: 18px;
  border: 2px dashed #E6B464;
  transition: box-shadow 0.25s, border 0.2s;
}
.testimonial-card blockquote {
  color: #204B57;
  font-style: italic;
  font-size: 1.15rem;
  padding: 0 14px;
}
.testimonial-card span {
  font-size: 1rem;
  color: #835e18;
  letter-spacing: 0.02em;
}
.testimonial-card:hover {
  box-shadow: 0 8px 16px rgba(230,180,100,0.22);
  border: 2px solid #E6B464;
}
.brand-ratings {
  margin-top: 12px;
  color: #FFB400;
  font-size: 1.14rem;
  font-weight: bold;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 18px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 22px;
  justify-content: center;
  align-items: center;
}
footer {
  background: #204B57;
  color: #fff;
  padding: 48px 0 24px 0;
  border-radius: 26px 26px 0 0;
  margin-top: 60px;
}
footer .footer-nav a {
  color: #fff;
  font-weight: 500;
  font-size: 1.06rem;
}
footer .footer-nav a:hover {
  color: #E6B464;
}
footer .text-section {
  text-align: center;
  color: #fff;
  font-size: 0.98rem;
}

/* HEADER & NAVIGATION */
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 90;
  background: #fff;
  box-shadow: 0 2px 16px rgba(32,75,87,0.10);
  padding: 0 0;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header > a img {
  height: 44px;
  margin-left: 24px;
}
nav {
  display: flex;
  gap: 26px;
  align-items: center;
  margin-left: 22px;
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #204B57;
  border-radius: 14px;
  padding: 8px 14px;
  transition: background 0.21s, color 0.16s;
}
nav a:hover, nav a:focus {
  background: #E6B464;
  color: #204B57;
  outline: none;
}
.cta-button {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #E6B464;
  color: #204B57;
  border: none;
  border-radius: 22px;
  font-size: 1.08rem;
  font-weight: 700;
  padding: 12px 32px;
  margin-right: 24px;
  margin-left: 18px;
  cursor: pointer;
  box-shadow: 0 3px 16px rgba(230,180,100,0.08);
  transition: background 0.22s, color 0.16s, box-shadow 0.18s, transform 0.12s;
  letter-spacing: 0.03em;
  outline: none;
  position: relative;
  overflow: hidden;
}
.cta-button:hover, .cta-button:focus {
  background: #204B57;
  color: #fff;
  box-shadow: 0 6px 18px rgba(32,75,87,0.13);
  transform: translateY(-2px) scale(1.03);
}

/* Hamburger menu (mobile) */
.mobile-menu-toggle {
  display: none;
  background: #E6B464;
  border: none;
  border-radius: 14px;
  font-size: 2.1rem;
  padding: 4px 16px;
  color: #204B57;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(230,180,100,0.13);
  margin-right: 18px;
  transition: background 0.18s, color 0.16s, transform 0.15s;
  z-index: 100;
}
.mobile-menu-toggle:active {
  background: #204B57;
  color: #fff;
  transform: scale(0.95);
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(255,255,255,0.97);
  box-shadow: 0 7px 38px rgba(32,75,87,0.23);
  transform: translateX(-100vw);
  transition: transform 0.33s cubic-bezier(0.5,0,0,1), opacity 0.19s;
  z-index: 250;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  background: #204B57;
  color: #fff;
  border: none;
  border-radius: 15px;
  font-size: 2.2rem;
  margin: 18px 0 18px 22px;
  padding: 4px 18px;
  cursor: pointer;
  align-self: flex-start;
  transition: background 0.23s, color 0.19s;
}
.mobile-menu-close:hover {
  background: #E6B464;
  color: #204B57;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 18px 0 0 26px;
  width: 90vw;
  align-items: flex-start;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #204B57;
  border-radius: 12px;
  padding: 10px 20px;
  width: 100%;
  transition: background 0.2s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E6B464;
  color: #204B57;
}

/* Hide desktop nav and show burger on mobile */
@media (max-width: 920px) {
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .cta-button {
    margin-right: 10px;
  }
}
@media (max-width: 600px) {
  header > a img {
    margin-left: 8px;
    height: 38px;
  }
  .cta-button {
    padding: 10px 20px;
    font-size: 0.98rem;
  }
}

/* MAIN SECTIONS SPACING & LAYOUT (MOBILE-FIRST) */
section {
  width: 100%;
  margin-bottom: 60px;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 4px 18px rgba(35,51,55,0.07);
}

/* GAPS and FLEX SPACING for cards, etc. */
.card-container,
.content-grid {
  gap: 20px;
}
.feature-item,
ul > li {
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  font-size: 1.08rem;
}
ul > li:last-child {
  margin-bottom: 0;
}

/* Typography & Fun Elements */
h1, h2 {
  background: linear-gradient(90deg,#E6B464 40%,#fff9ea 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.04em;
  text-shadow: 2px 2px 0 #ffe9b6, 0 4px 14px #fffbe5;
  font-size: 2.2rem;
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.45rem;
  letter-spacing: -0.02em;
  text-shadow: 1px 1px 0 #fff0cc;
}
@media (min-width: 600px) {
  h1 { font-size: 2.75rem; }
  h2 { font-size: 1.95rem; }
}
@media (min-width: 900px) {
  h1 { font-size: 3.1rem; }
  h2 { font-size: 2.2rem; }
  h3 { font-size: 1.34rem; }
}

/* Section Items and List Icons */
ul > li:before {
  content: '\1F431'; /* playful cat emoji as a fun bullet by default */
  display: inline-block;
  margin-right: 9px;
  font-size: 1.05em;
  color: #E6B464;
  vertical-align: middle;
}
/* Override for checkmark lines (features) */
ul > li:contains('✔️'):before {
  content: '✔️';
  margin-right: 9px;
  color: #368b5f;
}

/* Form and Content Details */
.text-section img {
  height: 24px;
  margin-right: 6px;
  vertical-align: middle;
  display: inline-block;
}
.text-section p {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  font-size: 1.05rem;
}

/* Animations & Micro-interactions */
.cta-button {
  position: relative;
  animation: pop-in 0.6s cubic-bezier(0.35,0.85,0.37,1.45);
}
@keyframes pop-in {
  0% { transform: scale(0.85); opacity: 0; }
  70% { transform: scale(1.11); opacity: 1; }
  100% { transform: scale(1); }
}
section, .card, .testimonial-card {
  animation: fadefrombottom 0.85s cubic-bezier(0.5,0.1,0.34,1.2);
}
@keyframes fadefrombottom {
  from { opacity: 0; transform: translateY(60px); }
  to { opacity: 1; transform: translateY(0); }
}
section:hover {
  animation: hover-bounce 0.20s;
}
@keyframes hover-bounce {
  0% { transform: scale(1); }
  60% { transform: scale(1.025); }
  100% { transform: scale(1); }
}

/* Responsive Layout Adjustments */
@media (max-width: 900px) {
  .container {
    max-width: 96vw;
    padding-left: 4vw;
    padding-right: 4vw;
  }
  .content-wrapper {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 768px) {
  main {
    margin-top: 58px;
  }
  header {
    height: 60px;
  }
  .section, section {
    padding: 24px 7px;
    margin-bottom: 34px;
  }
  .testimonial-card {
    padding: 14px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}

/***** COOKIE CONSENT BANNER & MODAL *****/
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #204B57;
  color: #fffbe6;
  box-shadow: 0 -4px 22px rgba(32,75,87,0.17);
  padding: 22px 12px 18px 12px;
  z-index: 500;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  font-size: 1.08rem;
  animation: fadeInCookie .6s;
}
@keyframes fadeInCookie {
  from { opacity: 0; transform: translateY(80px); }
  to { opacity: 1; transform: translateY(0);}
}
.cookie-banner p {
  color: #ffecc7;
  font-size: 0.94rem;
  font-weight: 400;
  flex: 1 1 210px;
  margin-bottom: 8px;
  margin-right: 10px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-banner button {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  padding: 8px 24px;
  border: none;
  border-radius: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.17s, color 0.12s, transform 0.14s;
  margin-bottom: 4px;
}
.cookie-banner .accept {
  background: #E6B464;
  color: #204B57;
}
.cookie-banner .accept:hover {
  background: #368b5f;
  color: #fff;
}
.cookie-banner .reject {
  background: #fff;
  color: #204B57;
  border: 2px solid #E6B464;
}
.cookie-banner .reject:hover {
  background: #e88372;
  color: #fff;
  border: 2px solid #e88372;
}
.cookie-banner .settings {
  background: #204B57;
  color: #fff;
  border: 2px solid #E6B464;
}
.cookie-banner .settings:hover {
  background: #E6B464;
  color: #204B57;
}

.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(32,75,87,0.44);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  animation: fadeInBg .37s;
}
@keyframes fadeInBg {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #204B57;
  border-radius: 22px;
  box-shadow: 0 7px 54px rgba(32,75,87,0.20);
  max-width: 410px;
  width: 98vw;
  padding: 36px 24px 28px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  animation: modalPopUp .43s cubic-bezier(0.3,1.75,0.37,1.15);
}
@keyframes modalPopUp {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}
.cookie-modal h3 {
  font-size: 1.36rem;
  margin-bottom: 12px;
  font-family: 'Montserrat', Arial, sans-serif;
  background: none;
  -webkit-text-fill-color: initial;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #e3e3e3;
}
.cookie-modal-category:last-child {
  border-bottom: none;
}
.cookie-modal-category label {
  font-size: 1.06rem;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 600;
}
.cookie-modal-category input[type="checkbox"] {
  width: 24px;
  height: 24px;
}
.cookie-modal .cookie-modal-buttons {
  display: flex;
  justify-content: flex-end;
  margin-top: 32px;
  gap: 12px;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: #204B57;
  border: none;
  color: #fff;
  border-radius: 16px;
  font-size: 1.3rem;
  width: 32px;
  height: 32px;
  cursor: pointer;
  transition: background 0.18s;
}
.cookie-modal .modal-close:hover {
  background: #E6B464;
  color: #204B57;
}

@media (max-width: 600px) {
  .cookie-modal {
    padding: 20px 7px 16px 7px;
    max-width: 99vw;
  }
}

/* MISC/UTIL */
::-webkit-input-placeholder { color: #b8c2c9; }
::-moz-placeholder   { color: #b8c2c9; }
:-ms-input-placeholder { color: #b8c2c9; }
::placeholder { color: #b8c2c9; }

/* Accessibility outline */
:focus-visible {
  outline: 2px dashed #204B57;
}

/* ==== PLAYFUL DECORATIVE EFFECTS ==== */
.section, .card, .testimonial-card {
  /* Subtle bounce on hover, already handled above, just reinforce visually */
  transition: box-shadow 0.25s, transform 0.17s;
}
.section:after, .card:after, .testimonial-card:after {
  content: '';
  display: block;
  position: absolute;
  bottom: 18px;
  right: 18px;
  width: 24px;
  height: 24px;
  background: url('assets/icons/paw.svg') no-repeat center/contain;
  opacity: 0.08;
  z-index: 0;
  pointer-events: none;
  animation: float-paw 3.3s infinite alternate ease-in-out;
}
@keyframes float-paw {
  0% { transform: translateY(0px) scale(1); }
  100% { transform: translateY(-10px) scale(1.12) rotate(10deg); }
}

/* Hide paw effects on mobile for performance */
@media (max-width: 600px) {
  .section:after, .card:after, .testimonial-card:after {
    display: none;
  }
}

/**** UTILITIES FOR SPACING & FLEX ****/
.mb-0 { margin-bottom: 0!important; }
.mt-0 { margin-top: 0!important; }
.mb-8 { margin-bottom: 8px!important; }
.mb-16 { margin-bottom: 16px!important; }
.mb-20 { margin-bottom: 20px!important; }
.mb-24 { margin-bottom: 24px!important; }
.mt-24 { margin-top: 24px!important; }
.gap-16 { gap: 16px!important; }
.gap-20 { gap: 20px!important; }
.gap-24 { gap: 24px!important; }
.flex-center { justify-content: center; align-items: center; }
.flex-start { justify-content: flex-start; align-items: flex-start; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }

/* ===== PRINT FRIENDLY ===== */
@media print {
  header, footer, .cookie-banner, .cookie-modal-overlay, .mobile-menu { display: none !important; }
}
