/* CSS RESET & BASELINE NORMALIZATION */
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.6;
  background: #F4F7F9;
  color: #215561;
  font-family: 'Open Sans', Arial, sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

ul, ol {
  margin-left: 1.5em;
  margin-bottom: 1em;
}
dt { font-weight: bold; }
dd { margin-bottom: 0.75em; }
a { color: #215561; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #FCB040; }
img { max-width: 100%; display: block; height: auto; border-radius: 6px; }

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.content-wrapper {
  width: 100%;
}

/* BRAND TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  color: #1C373E;
  font-weight: 700;
  letter-spacing: -0.01em;
}
h1 { font-size: 2.5rem; line-height: 1.15; margin-bottom: 25px; }
h2 { font-size: 2rem; line-height: 1.15; margin-bottom: 18px; }
h3 { font-size: 1.25rem; line-height: 1.25; margin-bottom: 14px; }
h4, h5, h6 { font-size: 1.08rem; margin-bottom: 12px; }
p, li, dd, blockquote, cite {
  font-size: 1rem;
  color: #215561;
  margin-bottom: 1em;
}
blockquote {
  font-style: italic;
  color: #215561;
  background: #F6F7F9;
  padding: 16px 24px;
  border-left: 4px solid #FCC960;
  border-radius: 0 8px 8px 0;
  margin: 0 0 12px 0;
}
cite {
  display: block;
  font-size: 0.95rem;
  color: #5A7680;
  margin-top: 4px;
}
strong { font-weight: 700; }

hr { border: 0; border-top: 1px solid #E0E4E8; margin: 32px 0; height: 0; }

/* HEADER */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 3px 12px 0 rgba(33,85,97,0.06);
  padding: 0 0 0 0;
  position: sticky;
  top: 0;
  z-index: 50;
}
header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px 16px 24px;
}
.logo-link img {
  width: 138px;
  height: auto;
  display: block;
  margin-right: 16px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 8px 0 8px 0;
  border-radius: 4px;
  color: #215561;
  transition: background 0.15s, color 0.18s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  color: #FCC960;
  background: rgba(33,85,97,0.08);
}
.main-nav .cta-primary {
  background: #215561;
  color: #fff;
  padding: 8px 18px;
  border-radius: 22px;
  font-weight: 600;
  margin-left: 12px;
  transition: background 0.22s, color 0.22s, box-shadow 0.18s;
  box-shadow: 0 2px 7px 0 rgba(33,85,97,0.08);
}
.main-nav .cta-primary:hover, .main-nav .cta-primary:focus {
  background: #FCC960;
  color: #215561;
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #215561;
  padding: 6px 12px;
  margin-left: 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.16s;
  z-index: 1002;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #F4F7F9;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(33,85,97,0.97);
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(0.75,0,0.25,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  z-index: 1200;
  box-shadow: 2px 0 20px 0 rgba(33,85,97,0.04);
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  padding: 14px 24px 8px 0;
  cursor: pointer;
  margin-top: 16px;
  margin-right: 14px;
  z-index: 1202;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  margin-top: 22px;
  padding: 0 36px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.15rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 10px 0;
  display: block;
  width: 100%;
  border-radius: 6px;
  transition: background 0.14s, color 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FCC960;
  color: #215561;
}

/* HERO SECTIONS */
.hero {
  background: #F4F7F9;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0 42px 0;
  position: relative;
  margin-bottom: 60px;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  max-width: 680px;
  margin: 0 auto;
}
.hero h1 { color: #215561; font-size: 2.2rem; }
.hero p { font-size: 1.18rem; color: #426978; }

/* SECTIONS, SPACING AND FLEX UTILITIES */
.section, .about, .values, .team, .features, .services,
.information, .shop-section, .about-intro, .services-overview, .cta, .contact, .thank-you, .legal {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 11px 0 rgba(33,85,97,0.04);
  margin-bottom: 20px;
  position: relative;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.18s, border-color 0.16s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 5px 28px 0 rgba(33,85,97,0.11);
  border-color: #FCC960;
}

.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;
  margin-bottom: 20px;
  background: #fff;
  box-shadow: 0 1px 8px 0 rgba(33,85,97,0.07);
  border-radius: 14px;
  border-left: 6px solid #FCC960;
  max-width: 680px;
  transition: box-shadow 0.17s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 24px rgba(33,85,97,0.10);
}
.testimonial-card blockquote {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  color: #215561;
  font-style: italic;
}
.testimonial-card cite {
  color: #958d61;
  font-size: 1rem;
  margin-left: 18px;
}

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

.features ul, .services ul, .shop-section ul, .about-intro ul, .about ul, .values ul, .information ul {
  list-style-type: disc;
  padding-left: 1.5em;
  margin-bottom: 1.5em;
}
.features ul li, .services ul li, .shop-section ul li, .about-intro ul li, .about ul li, .values ul li, .information ul li {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 5px 0 rgba(33,85,97,0.03);
  margin-bottom: 20px;
  padding: 20px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.features ul li img {
  width: 34px;
  margin-bottom: 10px;
  filter: grayscale(30%);
  opacity: 0.85;
}

/* CTA BUTTONS */
.cta-primary {
  background: #215561;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  font-size: 1.01rem;
  padding: 10px 34px;
  border-radius: 22px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 21px 0 rgba(33,85,97,0.07);
  transition: background 0.21s, color 0.18s, box-shadow 0.13s, transform 0.12s;
  margin-top: 10px;
  display: inline-block;
  outline: none;
}
.cta-primary:hover, .cta-primary:focus {
  background: #FCC960;
  color: #215561;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 7px 30px 0 rgba(33,85,97,0.15);
}
.cta-secondary {
  background: #FCC960;
  color: #1C373E;
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  font-size: 1rem;
  padding: 10px 24px;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  margin-top: 14px;
  display: inline-block;
  outline: none;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #215561;
  color: #fff;
}

/* TABLES */
table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
  background: #fff;
  margin-bottom: 24px;
  box-shadow: 0 1px 6px rgba(33,85,97,0.06);
  border-radius: 10px;
  overflow: hidden;
}
th, td {
  text-align: left;
  padding: 14px 18px;
  font-size: 1rem;
  border-bottom: 1px solid #E0E4E8;
}
th {
  background: #FCC960;
  color: #1C373E;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
tr:last-child td {
  border-bottom: none;
}

/* FOOTER */
footer {
  width: 100%;
  background: #fff;
  border-top: 1px solid #E0E4E8;
  padding: 48px 20px 32px 20px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 30px;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 40px;
}
footer img {
  width: 56px;
  margin-bottom: 6px;
  border-radius: 8px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.footer-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #215561;
  font-size: 1rem;
  opacity: 0.9;
  padding: 4px 8px;
  border-radius: 4px;
  transition: background 0.12s, color 0.14s;
}
.footer-nav a:hover, .footer-nav a:focus { background: #F4F7F9; color: #215561; }
.footer-contact {
  font-size: 0.98rem;
  color: #5A7680;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 10px;
}
footer address {
  font-style: normal;
  font-family: 'Open Sans', Arial, sans-serif;
  line-height: 1.6;
  color: #5A7680;
  margin-bottom: 6px;
}
footer a {
  color: #215561;
  transition: color 0.13s;
}
footer a:hover, footer a:focus {
  color: #FCB040;
}

/* LEGAL PAGE LAYOUTS */
.legal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 1px 18px 0 rgba(33,85,97,0.07);
  margin-bottom: 60px;
  padding: 40px 24px;
}

/* CONTACT PAGE */
.contact .text-section {
  margin-bottom: 24px;
}
.contact a {
  color: #215561;
  font-weight: 500;
  border-bottom: 1px dotted #FCC960;
  padding-bottom: 2px;
}
.contact a:hover, .contact a:focus {
  color: #FCC960;
  border-bottom: 1px solid #FCC960;
}

/* THANK YOU PAGE */
.thank-you {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 1px 18px 0 rgba(33,85,97,0.07);
  text-align: center;
}
.thank-you .content-wrapper {
  align-items: center;
}

/* RESPONSIVE DESIGN (Mobile-First) */
@media (max-width: 960px) {
  .container { max-width: 96vw; }
  .main-nav { gap: 14px; }
  .footer-nav { gap: 8px; }
}
@media (max-width: 768px) {
  header {
    flex-direction: row;
    flex-wrap: wrap;
    padding: 14px 12px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .hero {
    padding: 40px 0 26px 0;
  }
  .content-wrapper,
  .section,
  .about, .values, .team, .features, .services, .information, .shop-section, .about-intro, .services-overview, .cta, .contact, .thank-you, .legal {
    padding: 26px 6vw;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    max-width: 100%;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .features ul, .services ul, .shop-section ul {
    padding-left: 1em;
  }
  .card-container, .content-grid {
    gap: 12px;
  }
  footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 32px 10px 22px 10px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 1.58rem; }
  h2 { font-size: 1.24rem; }
  h3 { font-size: 1.05rem; }
  .container, .content-wrapper, .section,
  .about, .values, .team, .features, .services, .information, .shop-section, .about-intro, .services-overview, .cta, .contact, .thank-you, .legal {
    padding: 12px 2vw;
  }
  .cta-primary, .cta-secondary {
    width: 100%;
    text-align: center;
    padding: 10px 0;
  }
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #fff8ea;
  border-top: 2px solid #FCC960;
  box-shadow: 0 -2px 14px rgba(33,85,97,0.05);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
  padding: 22px 20px;
  z-index: 3000;
  transition: transform 0.3s cubic-bezier(.6,.6,0,1);
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner__desc {
  color: #215561;
  font-size: 1.04rem;
  max-width: 480px;
  margin-right: 18px;
}
.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  border: none;
  border-radius: 18px;
  padding: 8px 24px;
  cursor: pointer;
  margin-top: 0;
  transition: background 0.14s, color 0.17s;
  box-shadow: 0 1px 8px 0 rgba(33,85,97,0.07);
}
.cookie-btn.accept {
  background: #215561;
  color: #fff;
}
.cookie-btn.accept:hover { background: #FCC960; color: #215561; }
.cookie-btn.reject {
  background: #eee4c6;
  color: #215561;
}
.cookie-btn.reject:hover { background: #e5d18e; }
.cookie-btn.settings {
  background: #FCC960;
  color: #1C373E;
}
.cookie-btn.settings:hover { background: #215561; color: #fff; }

/* COOKIE MODAL POPUP*/
.cookie-modal {
  position: fixed;
  left: 50vw;
  top: 50vh;
  transform: translate(-50%,-52%) scale(1);
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 42px rgba(33,85,97,0.26);
  z-index: 3200;
  min-width: 310px;
  max-width: 92vw;
  padding: 36px 20px 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  transition: opacity 0.28s;
  opacity: 1;
}
.cookie-modal.hide { opacity: 0; pointer-events: none; }
.cookie-modal__header {
  font-size: 1.24rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #215561;
  margin-bottom: 14px;
}
.cookie-modal__body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 18px;
  color: #215561;
  font-size: 1rem;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-modal-category input[type="checkbox"] {
  accent-color: #FCC960;
  width: 22px;
  height: 22px;
}
.cookie-modal-category label {
  font-size: 1rem;
  color: #215561;
  font-weight: 600;
}
.cookie-modal .cookie-btn {
  margin-top: 14px;
}
@media (max-width: 480px) {
  .cookie-banner {
    flex-direction: column;
    gap: 12px;
    padding: 15px 7px;
  }
  .cookie-banner__desc { margin-right: 0; }
  .cookie-btn { width: 100%; padding: 8px 0; }
  .cookie-modal { padding: 16px 2vw; }
}

/* MICRO-INTERACTIONS */
.cta-primary, .cta-secondary, .main-nav a, .footer-nav a, .cookie-btn {
  transition: background 0.17s, color 0.13s, box-shadow 0.18s, transform 0.12s;
}
.cta-primary:active, .cta-secondary:active, .cookie-btn:active {
  transform: scale(.98);
  box-shadow: 0 1px 5px 0 rgba(33,85,97,0.10);
}
.main-nav a:active, .footer-nav a:active {
  color: #FCC960;
}

/* ENSURE 20PX+ BETWEEN ALL CARDS/ELEMENTS */
.features ul li, .services ul li, .shop-section ul li, .testimonial-card, .card {
  margin-bottom: 20px;
}
.section:not(:last-child), .about:not(:last-child), .information:not(:last-child), .shop-section:not(:last-child), .about-intro:not(:last-child), .services-overview:not(:last-child), .cta:not(:last-child), .contact:not(:last-child), .thank-you:not(:last-child), .legal:not(:last-child) {
  margin-bottom: 60px;
}

/* FOCUS STYLES */
a:focus, button:focus, .cta-primary:focus, .cta-secondary:focus, .cookie-btn:focus, .mobile-menu-close:focus, .mobile-menu-toggle:focus {
  outline: 2px solid #FCC960;
  outline-offset: 2px;
  box-shadow: 0 0 3px #FCC960;
  position: relative;
  z-index: 9;
}

/* SCROLLBAR (MODERN BROWSERS) */
::-webkit-scrollbar {
  width: 8px;
  background: #F4F7F9;
}
::-webkit-scrollbar-thumb {
  background: #E0E4E8;
  border-radius: 8px;
}

/* HIGH CONTRAST FOR TESTIMONIALS */
.testimonial-card, .testimonial-card blockquote, .testimonial-card cite {
  color: #215561;
  background: #fff;
}

/* NO GRID, ONLY FLEX! */
/* Layout is built 100% with ‘display:flex’ & spacing utilities as above */
