/* --------------------------------------------------------------
   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: inherit;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body { 
  line-height: 1.6;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #273B59;
  background: #FFFDFB;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #49A79C;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #E88A24;
}
ul, ol {
  list-style: none;
}
input, button, select, textarea {
  font-family: inherit;
  font-size: 100%;
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}

/* --------------------------------------------------------------
   TYPOGRAPHY
-------------------------------------------------------------- */
h1, .h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #273B59;
  margin-bottom: 24px;
  letter-spacing: -.5px;
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #273B59;
  margin-bottom: 20px;
  letter-spacing: -.4px;
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: #273B59;
  margin-bottom: 16px;
  letter-spacing: -.3px;
}
p, li, .testimonial-content, .testimonial-author {
  font-size: 1rem;
  color: #273B59;
  font-weight: 400;
}
strong, b {
  font-weight: 600;
}
.section h2, .section h1 {
  margin-bottom: 18px;
}

/* For tagline/accent text */
.tag {
  display: inline-block;
  background: #FFF4E5;
  color: #BE5A14;
  border-radius: 16px;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 3px 16px;
  margin-top: 8px;
  letter-spacing: .01em;
}

/* --------------------------------------------------------------
   COLOR PALETTE -- Warm & Friendly
-------------------------------------------------------------- */
:root {
  --primary: #273B59;
  --secondary: #49A79C;
  --accent: #F5F7FA;
  --orange: #E88A24;
  --orange-light: #FFF4E5;
  --card-bg: #FFFFFF;
  --border-radius: 18px;
  --shadow-soft: 0 4px 22px rgba(224,173,80,0.07), 0 1.5px 3px 0 rgba(73,167,156,0.09);
  --footer-bg: #273B59;
  --footer-text: #F5F7FA;
  --hero-bg: #FFF7F0;
}

/* --------------------------------------------------------------
   LAYOUT HELPERS & CONTAINERS
-------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--card-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
}

/* --------------------------------------------------------------
   HEADER & NAVIGATION
-------------------------------------------------------------- */
header {
  width: 100%;
  background: #FFFDFB;
  box-shadow: 0px 2px 20px rgba(39, 59, 89, 0.05);
  position: relative;
  z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #273B59;
  padding: 6px 14px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
header nav a:hover, header nav a:focus {
  background: var(--orange-light);
  color: var(--orange);
}
.cta {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--secondary);
  color: white !important;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 24px;
  padding: 11px 28px;
  margin-left: 10px;
  box-shadow: 0 2px 8px rgba(73,167,156,0.13);
  transition: background 0.23s, box-shadow 0.23s;
  border: none;
  cursor: pointer;
  outline: none;
}
.cta:hover, .cta:focus {
  /* background: var(--primary); */
  box-shadow: 0 6px 18px rgba(73,167,156,0.13);
}
.cta p{
  color: #fff !important;
}

/* Hamburger menu */
.mobile-menu-toggle {
  display: none;
  background: var(--orange-light);
  color: var(--primary);
  font-size: 2rem;
  border: none;
  border-radius: 50%;
  padding: 6px 14px;
  cursor: pointer;
  margin-left: 12px;
  transition: background 0.2s;
  z-index: 50;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--orange);
  color: white;
}
/* Mobile nav overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(39,59,89,0.88);
  z-index: 999;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 40px;
  transform: translateX(-110%);
  transition: transform 0.38s cubic-bezier(.6,0,.25,1);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #FFF;
  font-size: 2.1rem;
  border: none;
  margin: 0 0 20px 18px;
  cursor: pointer;
  padding: 4px 13px;
  border-radius: 50%;
  transition: background 0.17s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 0 0 0 36px;
}
.mobile-nav a {
  font-size: 1.35rem;
  color: #FFF;
  padding: 12px 0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-radius: 12px;
  width: 100%;
  transition: background 0.13s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: #FFFDFB;
}
/* Hide regular nav on mobile */
@media (max-width: 1024px) {
  header nav {
    display: none;
  }
  .cta {
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  header .container {
    gap: 10px;
  }
}
/* --------------------------------------------------------------
   HERO SECTION
-------------------------------------------------------------- */
.hero {
  background: var(--hero-bg);
  border-radius: var(--border-radius);
  margin-top: 28px;
  margin-bottom: 60px;
  padding: 46px 0 38px 0;
  box-shadow: 0 1px 24px rgba(232, 138, 36, 0.08);
}
.hero .container {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
  max-width: 760px;
}
.hero h1 {
  color: var(--primary);
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: 0 2px 8px #fffbe8;
}
.hero p {
  font-size: 1.13rem;
  margin-bottom: 16px;
}
.hero .cta {
  margin-top: 14px;
}

/* --------------------------------------------------------------
   MAIN FEATURES, CARDS, PRODUCT LISTS
-------------------------------------------------------------- */
.features {
  margin-bottom: 60px;
}
.features .content-wrapper > ul, .features .content-wrapper > ol {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
  flex-direction: column;
}
/* Product List Styles */
.product-list {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.product-item {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
  min-width: 260px;
  flex: 1 1 260px;
  padding: 28px 18px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin-bottom: 20px;
  transition: box-shadow 0.19s, transform 0.19s;
}
.product-item:hover {
  box-shadow: 0 10px 34px rgba(232,138,36,0.16);
  transform: translateY(-5px) scale(1.03);
}
.product-item h3 {
  color: var(--secondary);
  font-size: 1.32rem;
  margin-bottom: 10px;
}
.product-item ul {
  gap: 6px;
  flex-direction: column;
  display: flex;
}

/* --------------------------------------------------------------
   CARD CONTAINERS & CARDS
-------------------------------------------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
  padding: 24px 18px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  transition: box-shadow 0.19s, transform 0.18s;
  position: relative;
}
.card:hover {
  box-shadow: 0 10px 34px rgba(232,138,36,0.16);
  transform: translateY(-3px) scale(1.01);
}

.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;
}

/* Feature icons */
.features ul li img,
.contact ul li img {
  width: 30px;
  height: 30px;
  margin-right: 13px;
  vertical-align: middle;
}
.features ul li,
.contact ul li {
  display: flex;
  align-items: center;
  background: #FFF7F0;
  padding: 14px 18px;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(232,138,36,0.06);
  margin-bottom: 10px;
  font-size: 1.07rem;
}

/* --------------------------------------------------------------
   TESTIMONIALS
-------------------------------------------------------------- */
.testimonials {
  margin-bottom: 60px;
}
.testimonials .content-wrapper {
  gap: 0px; /* To keep cards stacked neatly */
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 22px 14px 22px;
  margin-bottom: 24px;
  background: #FFF;
  border-radius: 18px;
  box-shadow: 0 6px 38px rgba(39,59,89,0.07);
  border: 1.5px solid #F1E3D6;
  transition: box-shadow 0.16s, transform 0.16s;
  max-width: 540px;
}
.testimonial-card:nth-child(odd) {
  border-color: #FFEBCC;
}
.testimonial-card:hover {
  box-shadow: 0 10px 42px rgba(232,138,36,0.13), 0 1.5px 3px 0 rgba(73,167,156,0.09);
  transform: scale(1.021);
}
.testimonial-content {
  font-size: 1.08rem;
  color: #273B59;
  font-style: italic;
  line-height: 1.7;
  padding-bottom: 5px;
}
.testimonial-author {
  font-size: 0.98rem;
  color: #BE5A14;
  font-weight: 600;
  letter-spacing: .01em;
}

/* --------------------------------------------------------------
   CTA SECTIONS
-------------------------------------------------------------- */
.cta.section, .cta {
  background: linear-gradient(90deg,#47a199 50%,
    #273b59 100%);
  box-shadow: 0 1.5px 32px #ffe9c2;
  border-radius: var(--border-radius);
  margin-bottom: 44px;
  text-align: center;
  align-items: center;
}
.cta.section .content-wrapper {
  align-items: center;
}
.cta.section h2 {
  color: #E88A24;
  font-size: 2rem;
}
.cta.section p {
  font-size: 1.1rem;
  color: #273B59;
}
.cta.section .cta {
  margin-top: 14px;
  font-size: 1.12rem;
}

/* --------------------------------------------------------------
   LEGAL/INFO SECTIONS
-------------------------------------------------------------- */
.legal {
  margin-bottom: 60px;
}
.legal .content-wrapper {
  background: #FFF;
  padding: 36px 26px;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 22px rgba(224,173,80,0.05);
  align-items: flex-start;
}
.legal h1 {
  font-size: 2.05rem;
  margin-bottom: 24px;
}
.legal h2 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: #E88A24;
}
.legal ul, .legal ol {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.legal p {
  font-size: 1rem;
  margin-bottom: 12px;
}

/* --------------------------------------------------------------
   CONTACT SECTIONS
-------------------------------------------------------------- */
.contact {
  margin-bottom: 60px;
}
.contact .content-wrapper {
  background: #FFF;
  box-shadow: var(--shadow-soft);
  border-radius: var(--border-radius);
  align-items: flex-start;
  padding: 36px 24px;
  gap: 20px;
}
.contact ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 8px;
}
.contact ul li {
  font-size: 1.08rem;
}

/* --------------------------------------------------------------
   THANK YOU PAGE LINKS
-------------------------------------------------------------- */
.thank-you-links {
  margin-top: 18px;
  font-size: 1.01rem;
}
.thank-you-links a {
  color: var(--secondary);
  margin: 0 7px;
  font-weight: 600;
  border-bottom: 1.5px solid var(--secondary);
  padding-bottom: 1.5px;
  transition: color .18s, border-bottom .18s;
}
.thank-you-links a:hover {
  color: var(--orange);
  border-bottom: 1.5px solid var(--orange);
}

/* --------------------------------------------------------------
   FOOTER
-------------------------------------------------------------- */
footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 28px 0 14px 0;
  box-shadow: 0 -1.5px 24px #e6e5e5;
  margin-top: 64px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}
.footer-nav a {
  color: var(--footer-text);
  font-size: 1rem;
  opacity: 0.92;
  transition: color 0.18s, opacity 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--orange);
  opacity: 1;
}
.social-links {
  display: flex;
  align-items: center;
  gap: 10px;
}
.social-links img {
  width: 44px;
  height: auto;
}
.disclaimer {
  width: 100%;
  font-size: 0.97rem;
  color: #FFF;
  margin-top: 18px;
  text-align: center;
  opacity: 0.84;
}

/* --------------------------------------------------------------
   COOKIE CONSENT BANNER & MODAL
-------------------------------------------------------------- */
#cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 2000;
  background: #FFE8C7;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  box-shadow: 0 -2px 18px rgba(39,59,89,0.07);
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  font-size: 1rem;
  color: #273B59;
  animation: cookieSlideIn 0.36s cubic-bezier(.61,0,.31,1);
}
@keyframes cookieSlideIn {
  from { transform: translateY(90px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.cookie-banner-buttons {
  display: flex;
  gap: 18px;
  margin-top: 6px;
}
.cookie-btn {
  padding: 8px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 600;
  box-shadow: 0 2px 9px rgba(232,138,36,0.06);
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
.cookie-btn-accept {
  background: var(--secondary);
  color: #FFF;
}
.cookie-btn-accept:hover,
.cookie-btn-accept:focus {
  background: #2c857a;
}
.cookie-btn-reject {
  background: #fff;
  color: var(--orange);
  border: 2px solid var(--orange);
}
.cookie-btn-reject:hover,
.cookie-btn-reject:focus {
  background: var(--orange-light);
  color: #BE5A14;
}
.cookie-btn-settings {
  background: var(--accent);
  color: #273B59;
  border: 1.5px solid #C1AE8E;
}
.cookie-btn-settings:hover, .cookie-btn-settings:focus {
  background: #FFF9F5;
}

/* Cookie modal overlay */
#cookie-modal {
  display: none;
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(39,59,89,0.67);
  z-index: 2300;
  align-items: center;
  justify-content: center;
  animation: cookieFadeIn 0.19s;
}
@keyframes cookieFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
#cookie-modal.open {
  display: flex;
}
.cookie-modal-content {
  background: #FFF;
  border-radius: 20px;
  box-shadow: 0 5px 55px rgba(232,138,36,0.19);
  padding: 38px 18px 24px 24px;
  width: 95%;
  max-width: 420px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 19px;
  animation: cookieContentIn 0.33s cubic-bezier(.61,0,.29,1);
}
@keyframes cookieContentIn {
  from { transform: scale(0.85) translateY(40px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal-title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.32rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0px;
}
.cookie-close {
  position: absolute;
  right: 17px;
  top: 16px;
  background: none;
  color: #273B59;
  font-size: 1.4rem;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  padding: 1px 7px;
}
.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1rem;
  background: #FAFAF7;
  padding: 9px 12px;
  border-radius: 12px;
}
.cookie-category input[type=checkbox] {
  accent-color: var(--secondary);
  width: 22px;
  height: 22px;
  border-radius: 6px;
}
.cookie-category .category-name {
  font-weight: 600;
  margin-right: 8px;
}
.cookie-category .category-always-on {
  color: var(--orange);
  font-size: 0.95rem;
  font-weight: 600;
}
/* Modal save/settings btns */
.cookie-modal-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 20px;
  justify-content: flex-end;
}

/* --------------------------------------------------------------
   UTILITIES & ANIMATIONS
-------------------------------------------------------------- */
.fade-in {
  animation: fadeIn .31s cubic-bezier(.60,0,.31,1);
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* --------------------------------------------------------------
   RESPONSIVE DESIGN
-------------------------------------------------------------- */
@media (max-width: 1024px) {
  .container {
    max-width: 95vw;
    padding: 0 10px;
  }
  .footer-nav, .social-links {
    gap: 9px;
  }
}
@media (max-width: 900px) {
  .hero h1 {
    font-size: 2.05rem;
  }
  .features .content-wrapper > ul, .features .content-wrapper > ol {
    flex-direction: column;
    gap: 14px;
  }
  .product-list {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .hero {
    padding: 32px 0 24px 0;
    margin-bottom: 38px;
  }
  .hero h1, .section h1 {
    font-size: 1.68rem;
  }
  h2 {
    font-size: 1.22rem;
  }
  .container {
    max-width: 99vw;
    padding: 0 5px;
  }
  footer .container {
    gap: 12px;
    flex-direction: column;
    align-items: flex-start;
  }
  .content-wrapper, .legal .content-wrapper, .contact .content-wrapper {
    padding: 18px 6px;
  }
  .product-item {
    min-width: unset;
    padding: 16px 10px 16px 10px;
  }
  .section, .legal .content-wrapper, .contact .content-wrapper, .card {
    padding: 20px 8px;
    margin-bottom: 38px;
    border-radius: 14px;
  }
  .testimonial-card {
    max-width: 100%;
    padding: 17px 8px 10px 8px;
    border-radius: 12px;
  }
}
@media (max-width: 600px) {
  .hero {
    padding: 15px 0 9px 0;
  }
  .footer-nav, .social-links, .disclaimer {
    text-align: left;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
@media (max-width: 520px) {
  .card-container, .card, .feature-item, .content-grid, .features .content-wrapper > ul {
    flex-direction: column !important;
    gap: 14px !important;
    align-items: stretch !important;
  }
  .section, .hero, .legal .content-wrapper, .contact .content-wrapper {
    padding: 12px 2px;
    margin-bottom: 22px;
  }
  .product-list {
    gap: 10px;
    flex-direction: column;
  }
  .testimonial-card {
    padding: 8px 6px 8px 6px;
    font-size: 0.97rem;
  }
}
@media (max-width: 420px) {
  .cookie-modal-content {
    padding: 22px 4px 16px 10px;
    border-radius: 13px;
  }
  .cookie-close {
    top: 7px;
    right: 4px;
  }
}

/* END */