/* CSS RESET & BASES */
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, main, 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 { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body {
  background: #F4FAF9;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #222;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #E95D3F;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #0D3846;
  outline: none;
}
ul, ol {
  margin-left: 1.3em;
  margin-top: 8px;
  margin-bottom: 16px;
}

/* BRAND VARIABLES (No custom prop, just fallback) */
:root {
  /* Fonts */
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;
  /* Colors */
  --primary: #0D3846;
  --secondary: #E95D3F;
  --accent: #F4FAF9;
  --bg-dark: #17343D;
  --light: #fff;
  --shadow: 0 4px 20px rgba(13,56,70,0.08);
  --shadow-card: 0 2px 10px rgba(13,56,70,0.10);
  --border-radius: 18px;
}

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

/* TYPOGRAPHY */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.15;
  letter-spacing: -.5px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 12px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 8px;
}
h4 { font-size: 1.15rem; }
h5 { font-size: 1rem; }
p, ul, ol, li, strong {
  font-family: var(--font-body);
}
.subheadline {
  font-size: 1.2rem;
  color: var(--secondary);
  margin-bottom: 16px;
  line-height: 1.45;
  font-style: italic;
}

/* HEADER */
header {
  background-color: #fff;
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 102;
}
header .container {
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  gap: 0;
  padding: 12px 16px;
}
header img {
  max-height: 56px;
  margin-right: 16px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: 24px;
}
header nav a {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--primary);
  font-size: 1.05rem;
  padding: 8px 6px;
  border-radius: 16px;
  transition: background .18s, color .18s;
}
header nav a:hover, header nav a:focus {
  background: var(--secondary);
  color: #fff;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(90deg, #E95D3F 55%, #FFA964 100%);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
  border: none;
  padding: 12px 28px;
  border-radius: 32px;
  box-shadow: 0 2px 8px rgba(233,93,63,0.10);
  cursor: pointer;
  margin-left: auto;
  transition: background .2s, box-shadow .2s, transform .08s;
  text-shadow: 0 1px 6px rgba(13,56,70,0.09);
  outline: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, #FF8749, #E95D3F 95%);
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 18px rgba(233,93,63,0.18);
}
.cta-btn.primary {
  background: linear-gradient(90deg, #0D3846 70%, #37A6D1 100%);
  color: #fff;
}
.cta-btn.primary:hover, .cta-btn.primary:focus {
  background: linear-gradient(90deg, #37A6D1 60%, #0D3846 100%);
  color: #fff;
  letter-spacing: 2px;
}

/* SECTION SPACING & SPECIAL FLEX LAYOUTS */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: var(--border-radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-card);
  transition: box-shadow .2s;
}
.card:hover { box-shadow: 0 8px 24px rgba(13,56,70,0.12); }
.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;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 2px 14px rgba(13,56,70,0.08);
  margin-bottom: 20px;
  min-width: 240px;
  max-width: 430px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 16px;
  padding: 28px 22px;
  box-shadow: var(--shadow-card);
  transition: box-shadow .18s, background .18s;
}
.feature-item img {
  width: 48px;
  height: 48px;
  margin-bottom: 6px;
}
.feature-item:hover {
  background: #FFE7DE;
  box-shadow: 0 6px 20px rgba(233,93,63,0.08);
}

/* FLEX GRID OVERRIDES FOR EACH MODULE */
.feature-grid, .team-grid, .topic-grid, .tip-grid, .highlight-grid, .recipe-listing {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-item, .team-member, .topic-item, .tip-item, .highlight-item, .recipe-item {
  flex: 1 1 270px;
  min-width: 230px;
  max-width: 340px;
}
.recipe-listing {
  gap: 20px 24px;
}
.category-tabs, .filters {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 16px;
  align-items: center;
}
.category-tabs button, .filters button, .search-bar button {
  font-family: var(--font-display);
  background: #fff;
  border: 2px solid var(--secondary);
  color: var(--secondary);
  padding: 9px 26px;
  border-radius: 22px;
  font-weight: 600;
  cursor: pointer;
  transition: background .17s, color .17s, border-color .17s;
  font-size: 1rem;
}
.category-tabs button:hover, .filters button:hover, .search-bar button:hover {
  background: var(--secondary);
  color: #fff;
  border-color: var(--secondary);
}
.search-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 24px 0 12px 0;
}
.search-bar input {
  font-family: var(--font-body);
  border-radius: 18px;
  padding: 10px 20px;
  border: 2px solid #DDE4E3;
  background: #fff;
  font-size: 1rem;
  outline: none;
  transition: border .16s;
  min-width: 190px;
}
.search-bar input:focus {
  border-color: var(--secondary);
}

/* TESTIMONIALS & QUOTES */
.testimonial-card p {
  color: #17343D;
  font-family: var(--font-body);
  font-size: 1.16rem;
  font-style: italic;
  margin-bottom: 3px;
}
.testimonial-card strong { color: var(--secondary); }
.testimonial-card img {
  width: 20px;
  height: 20px;
  display: inline-block;
}

/* TEAM, VALUE, HIGHLIGHT, ETC GRIDS */
.team-member, .tip-item, .highlight-item, .topic-item {
  background: #fff;
  border-radius: 15px;
  box-shadow: var(--shadow-card);
  padding: 23px 19px;
  transition: box-shadow .19s;
  margin-bottom: 20px;
}
.team-member:hover, .tip-item:hover, .highlight-item:hover, .topic-item:hover {
  box-shadow: 0 8px 24px rgba(13,56,70,0.13);
}
.value-icons, .benefit-icons {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 6px 0 22px 0;
}
.value-icons img, .benefit-icons img {
  width: 36px;
  height: 36px;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.04));
}
.quick-facts ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  list-style: disc inside;
  font-size: 1.07rem;
  color: var(--secondary);
  margin-top: 12px;
}
.howto-steps {
  margin: 20px 0 6px 0;
  padding-left: 22px;
  color: #0D3846;
  font-size: 1.09rem;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 1.05rem;
  padding-bottom: 10px;
  color: #233840;
}
.thank-you-message, .next-steps-info {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  padding: 24px 24px;
  margin-bottom: 22px;
}

/* CONTACT INFO */
.contact-info {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex-direction: column;
  font-size: 1.08rem;
  margin: 18px 0 0 0;
}
.contact-info ul {
  margin: 6px 0 6px 0;
  padding-left: 0;
}
.contact-info li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 5px;
}
.contact-info img {
  width: 18px;
  height: 18px;
  margin-right: 6px;
}

/* FOOTER */
footer {
  background: #0D3846;
  color: #fff;
  padding: 42px 0 18px 0;
  font-family: var(--font-body);
  font-size: 1rem;
  letter-spacing: 0;
  box-shadow: 0 -4px 24px rgba(13,56,70,0.11);
  margin-top: 60px;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  gap: 35px;
  padding: 0 16px;
}
footer a {
  color: #FFE7DE;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.05rem;
  margin-right: 22px;
  padding: 6px 0;
  transition: color .18s;
}
footer a:hover {
  color: #FFA964;
}
footer nav {
  display: flex;
  gap: 14px;
  margin-top: 8px;
}
footer img {
  max-width: 48px;
  max-height: 48px;
  margin-bottom: 10px;
}

/* MOBILE MENU STYLES */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 18px;
  right: 20px;
  z-index: 999;
  background: var(--secondary);
  color: #fff;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 2rem;
  box-shadow: 0 2px 12px rgba(13,56,70,0.09);
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background .21s, transform .12s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #ff8449;
  transform: scale(1.10);
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 310px;
  background: #fff;
  box-shadow: -2px 0 24px rgba(13,56,70,0.20);
  z-index: 1200;
  transform: translateX(100%);
  transition: transform .36s cubic-bezier(.4,1.6,.35,1);
  display: flex;
  flex-direction: column;
  padding: 28px 22px 14px 22px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  color: var(--secondary);
  border: none;
  font-size: 1.9rem;
  margin-bottom: 16px;
  cursor: pointer;
  transition: color .18s;
}
.mobile-menu-close:hover { color: var(--primary); }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 26px;
  align-items: flex-start;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.18rem;
  color: var(--primary);
  padding: 12px 5px;
  border-radius: 8px;
  transition: background .15s, color .15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: #fff;
}
/* Overlay for body when menu is open */
body.mobile-menu-active {
  overflow: hidden;
  position: fixed;
  width: 100vw;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 1080px) {
  .container { max-width: 960px; }
  .feature-item, .team-member, .tip-item, .highlight-item, .topic-item, .recipe-item {
    min-width: 180px;
    max-width: 44vw;
  }
}
@media (max-width: 900px) {
  header .container, footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  footer .contact-info {
    margin-top: 18px;
  }
}
@media (max-width: 768px) {
  .section {
    padding: 30px 2vw;
    margin-bottom: 44px;
  }
  .container { padding: 0 5vw; }
  header .container {
    flex-direction: row;
    align-items: center;
    padding: 10px 10px;
  }
  footer .container {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  main section {
    padding-bottom: 18px;
  }
  .content-wrapper {
    gap: 14px;
  }
  .feature-grid, .team-grid, .topic-grid, .tip-grid, .highlight-grid, .recipe-listing {
    gap: 16px;
  }
  .feature-item, .team-member, .tip-item, .highlight-item, .topic-item, .recipe-item {
    min-width: 150px;
    max-width: 100%;
    flex: 1 1 100%;
    padding: 18px 13px;
  }
  .card { padding: 20px 12px; }
}
@media (max-width: 600px) {
  h1 { font-size: 2.0rem; }
  h2 { font-size: 1.4rem; }
  .content-wrapper { gap: 8px; }
  .testimonial-card {
    padding: 12px;
    gap: 10px;
    min-width: 85vw;
    max-width: 98vw;
  }
  .section {
    margin-bottom: 36px;
    padding: 20px 0;
  }
  .cta-btn {
    padding: 10px 15px;
    font-size: 1.01rem;
  }
  footer {
    padding: 30px 0 12px 0;
  }
  .search-bar input {
    width: 100%;
    min-width: 0;
  }
  .mobile-menu {
    width: 90vw;
    padding: 15px 10px 7px 16px;
  }
}
@media (max-width: 900px) {
  header nav,
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width:901px) {
  .mobile-menu-toggle,
  .mobile-menu {
    display: none !important;
  }
}
@media (max-width: 900px) {
  .mobile-menu {
    display: flex;
  }
}
@media (max-width: 500px) {
  .container {
    padding-right: 4vw;
    padding-left: 4vw;
  }
}
/* SPECIAL FLEX OVERRIDES */
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* BUTTON & INTERACTIVE MICRO-INTERACTIONS */
button, .cta-btn, .category-tabs button, .filters button, .search-bar button {
  transition: background .18s, color .13s, border-color .14s, box-shadow .14s, transform .09s;
}
button:active, .cta-btn:active, .category-tabs button:active, .filters button:active {
  transform: scale(0.97);
}
input:focus, button:focus, .cta-btn:focus {
  outline: 3px solid #E95D3F40;
}

/* COOKIE CONSENT BANNER (STATIC, always at bottom) */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #fff;
  border-top: 3px solid var(--secondary);
  box-shadow: 0 -8px 28px rgba(13,56,70,0.11);
  z-index: 1239;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 22px 5vw 18px 5vw;
  gap: 20px;
  font-family: var(--font-body);
  justify-content: space-between;
}
.cookie-banner__desc {
  font-size: 1.1rem;
  color: #222;
  max-width: 500px;
}
.cookie-banner__actions {
  display: flex;
  gap: 16px;
}
.cookie-btn {
  background: var(--secondary);
  color: #fff;
  border: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 16px;
  padding: 9px 25px;
  margin-left: 0;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(233,93,63,0.09);
  transition: background .14s, color .10s, box-shadow .13s, transform .07s;
}
.cookie-btn.settings {
  background: #fff;
  color: var(--secondary);
  border: 2px solid var(--secondary);
  margin-left: 3px;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #FF8749;
  color: #fff;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--secondary);
  color: #fff;
}
/* Hide banner on small screens if necessary */
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    gap: 13px;
    padding: 12px 4vw 9px 4vw;
    align-items: flex-start;
  }
  .cookie-banner__actions { gap: 10px; }
  .cookie-banner__desc { font-size: .98rem; }
}

/* COOKIE CONSENT MODAL (simple modal example) */
.cookie-modal-backdrop {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(13,56,70,0.10);
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn .38s ease;
}
@keyframes fadeIn { from { opacity: 0;} to {opacity: 1; } }
.cookie-modal {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 10px 38px rgba(13,56,70,0.18);
  padding: 36px 28px 28px 28px;
  min-width: 280px;
  max-width: 96vw;
  animation: scaleUp .36s cubic-bezier(.44,1.38,.33,1);
  display: flex;
  flex-direction: column;
  gap: 25px;
  z-index: 1320;
}
@keyframes scaleUp { from{ transform: scale(.86);} to { transform: scale(1);} }
.cookie-modal-header {
  font-size: 1.36rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 4px;
}
.cookie-modal-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1.12rem;
  font-family: var(--font-body);
}
.cookie-modal-category input[type=checkbox] {
  accent-color: var(--secondary);
  width: 19px; height: 19px;
}
.cookie-modal-footer {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 18px;
}
.cookie-modal-close {
  background: none;
  border: none;
  color: var(--secondary);
  font-size: 2rem;
  align-self: flex-end;
  margin-top: -14px;
  cursor: pointer;
}
.cookie-modal-close:hover { color: var(--primary); }
@media (max-width: 650px) {
  .cookie-modal {
    padding: 14px 7vw 14px 7vw;
    gap: 16px;
  }
  .cookie-modal-header { font-size: 1.08rem; }
  .cookie-modal-footer { gap: 11px; }
}

/* ARTISTIC TOUCHES */
h1, h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  text-shadow: 1px 2px 0 #f9e0d3, 0 1px 14px rgba(13,56,70,0.07);
}
h1::after, h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 4px;
  border-radius: 2px;
  background: var(--secondary);
  margin: 8px 0 0 0;
  opacity: 0.70;
}
h1::after { width: 64px; height: 5px; }
.subheadline, h3 {
  letter-spacing: .5px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.feature-item h3, .team-member h3, .tip-item h3, .highlight-item h3, .topic-item h3, .recipe-item h3 {
  color: var(--secondary);
}
/* Unique artistic bullet for lists */
ul li::marker {
  color: var(--secondary);
  font-size: 1.08em;
}

/* DECORATIVE WAVES (e.g. section backgrounds) */
.section-art {
  background: linear-gradient(110deg,#FFF8F3 63%, #FFE2DA 100%);
  border-radius: 22px;
  box-shadow: 0 2px 14px rgba(233,93,63,0.03);
}

/* Micro-animations for cards */
.card, .feature-item, .team-member, .tip-item, .highlight-item, .topic-item {
  transition: box-shadow .16s, transform .13s;
}
.card:hover, .feature-item:hover, .team-member:hover, .tip-item:hover, .highlight-item:hover, .topic-item:hover {
  transform: translateY(-2px) scale(1.01);
}

/* FLARE: Artistic underline on hover for nav */
header nav a:hover, .mobile-nav a:hover {
  position: relative;
}
header nav a:hover::after, .mobile-nav a:hover::after {
  content: '';
  display: block;
  position: absolute;
  left: 0; bottom: -3px;
  width: 100%; height: 3px;
  background: var(--secondary);
  border-radius: 2px;
  opacity: .64;
  pointer-events: none;
  animation: navUnderline .17s;
}
@keyframes navUnderline { from {width:5%; opacity:0;} to {width:100%; opacity:.64;} }
/* Misc form styles */
input, textarea {
  font-family: var(--font-body);
  background: #FFF;
  border: 1.5px solid #D3E3E0;
  padding: 9px 15px;
  font-size: 1rem;
  border-radius: 8px;
  margin-bottom: 10px;
  color: #16323A;
  transition: border .13s;
}
input:focus, textarea:focus {
  border-color: var(--secondary);
}

/* ACCESSIBILITY & VISIBILITY */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Additional whitespace for unique, artistic look */
.section, .card, .feature-item, .team-member, .tip-item, .highlight-item, .topic-item, .testimonial-card {
  margin-bottom: 24px;
}

/* Decorative accent line */
.decorative-accent {
  height: 3px;
  background: linear-gradient(108deg,#E95D3F 25%, #0D3846 100%);
  border-radius: 1.5px;
  width: 55px;
  opacity: 0.8;
  margin-bottom: 18px;
}

/* END OF STYLE SHEET */
