/* CSS RESET & BASE TYPOGRAPHY */
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;
}
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #F7F8FA;
  color: #264653;
  font-size: 1rem;
  line-height: 1.7;
}
il, ol {
  list-style: none;
}
a {
  color: #2A9D8F;
  text-decoration: none;
  transition: color .18s cubic-bezier(.4,0,.2,1);
}
a:hover, a:focus {
  color: #F4A261;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Black', Arial, sans-serif;
  letter-spacing: 0.03em;
  font-weight: 700;
  line-height: 1.15;
}
h1 { font-size: 2.5rem; margin-bottom: 16px; }
h2 { font-size: 2rem; margin-bottom: 14px; }
h3 { font-size: 1.375rem; margin-bottom: 10px; }
p { margin-bottom: 1.1em; }
strong { font-weight: 700; }
em { font-style: italic; color: #2A9D8F; }

/* GEOMETRIC BUTTONS & CTA */
.cta-button, button, input[type="submit"], .content-wrapper a.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #2A9D8F;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 14px 32px;
  border: none;
  border-radius: 18px 2px 18px 2px;
  box-shadow: 0 4px 18px rgba(38,70,83,0.08);
  cursor: pointer;
  transition: background .2s cubic-bezier(.4,0,.2,1), color .15s cubic-bezier(.4,0,.2,1), box-shadow .2s cubic-bezier(.4,0,.2,1), transform .1s;
  outline: none;
  text-transform: uppercase;
  text-decoration: none;
}
.cta-button:hover, button:hover, input[type="submit"]:hover, .cta-button:focus {
  background: #F4A261;
  color: #264653;
  transform: translateY(-2px) scale(1.03) skew(-2deg);
  box-shadow: 0 7px 30px rgba(38,70,83,0.15);
}

/* LAYOUT CONTAINERS */
.container {
  width: 100%;
  max-width: 1184px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px 8px 24px 8px;
  box-shadow: 0 4px 16px rgba(38,70,83,0.06);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
  flex-wrap: wrap;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 20px 0 20px 0;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(38,70,83,0.09);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 24px 20px;
}
.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;
  background: #F5F7FA;
  border-radius: 18px 2px 18px 2px;
  box-shadow: 0 2px 14px rgba(38,70,83,0.09);
  margin-bottom: 20px;
  color: #264653;
  max-width: 490px;
  font-size: 1.1rem;
}
.testimonial-card blockquote {
  font-style: italic;
  margin: 0 0 6px 0;
  color: #264653;
}
.testimonial-card cite {
  font-size: 0.96rem;
  color: #2A9D8F;
  font-style: normal;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #FFF;
  border-radius: 18px 2px 18px 2px;
  box-shadow: 0 2px 10px rgba(38,70,83,0.09);
  padding: 18px 20px;
  margin-bottom: 20px;
}

/* MAIN NAVIGATION (DESKTOP) */
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0 24px 0;
  background: #fff;
  box-shadow: 0 4px 12px rgba(38,70,83,0.04);
  border-radius: 0 0 20px 20px;
  gap: 18px;
  z-index: 20;
  position: relative;
}
.main-nav img {
  width: 162px;
  height: auto;
  margin-right: 24px;
  display: block;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.06rem;
  letter-spacing: 0.03em;
  padding: 8px 16px;
  color: #264653;
}
.main-nav a.cta-button {
  margin-left: 20px;
  padding: 10px 22px;
}
.main-nav a:hover, .main-nav a:focus:not(.cta-button) {
  color: #2A9D8F;
  background: rgba(42,157,143,0.08);
  border-radius: 8px 0 8px 0;
  transition: background .16s, color .16s;
}
/* Hide Burger Button Desktop */
.mobile-menu-toggle {
  display: none;
}

/* SECTION & GRID LISTS */
.content-wrapper ul, .content-wrapper ol {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 0;
}
.content-wrapper ul li, .content-wrapper ol li {
  background: #F7F8FA;
  border-radius: 14px 0 14px 0;
  box-shadow: 0 2px 8px rgba(42,157,143,0.04);
  padding: 18px 18px 14px 18px;
  margin-bottom: 20px;
  font-size: 1.06rem;
  min-width: 225px;
  flex: 1 0 225px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.content-wrapper ul li img {
  width: 46px;
  height: 46px;
  margin-bottom: 10px;
}

/* BLOG & PAGINATION */
.content-wrapper label,
.content-wrapper input[type="search"],
.content-wrapper select {
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 10px;
}
.content-wrapper nav a {
  display: inline-block;
  background: #fff;
  color: #264653;
  font-weight: 600;
  border-radius: 8px 0 8px 0;
  margin-right: 6px;
  min-width: 34px;
  text-align: center;
  padding: 7px 11px;
  font-family: 'Montserrat', Arial, sans-serif;
  box-shadow: 0 1px 4px rgba(38,70,83,0.06);
  transition: background .16s, color .16s;
}
.content-wrapper nav a:hover, .content-wrapper nav a:focus {
  background: #2A9D8F;
  color: #fff;
}

/* FORMS */
form {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin: 20px 0 8px 0;
}
input[type="email"],
input[type="text"],
input[type="search"],
select {
  border: 2px solid #2A9D8F;
  border-radius: 8px 0 8px 0;
  background: #fff;
  padding: 10px 16px;
  font-size: 1rem;
  color: #264653;
  font-family: 'Roboto', Arial, sans-serif;
  transition: border .18s;
}
input[type="email"]::placeholder,
input[type="text"]::placeholder,
input[type="search"]::placeholder {
  color: #94b2c9;
  opacity: .95;
  font-style: italic;
}
input[type="email"]:focus,
input[type="text"]:focus,
input[type="search"]:focus,
select:focus {
  outline: none;
  border-color: #F4A261;
  background: #FFFDF6;
}
button[type="submit"] {
  min-width: 170px;
}

/* FOOTER */
footer {
  margin-top: 80px;
  background: #264653;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -4px 24px rgba(38,70,83,0.10);
  color: #fff;
  padding: 38px 0 18px 0;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  align-items: center;
  padding-bottom: 20px;
}
.footer-nav a {
  color: #F4A261;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.08rem;
  letter-spacing: 0.02em;
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 8px 0 8px 0;
  transition: background .16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #F4A261;
  color: #264653;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
}
.footer-brand img {
  width: 56px;
  margin-bottom: 5px;
}
.footer-brand p {
  font-size: 0.98rem;
  color: #fff;
  margin-bottom: 0;
}

/* SOCIAL ICONS */
.content-wrapper ul li img[alt^="Facebook"],
.content-wrapper ul li img[alt^="Instagram"],
.content-wrapper ul li img[alt^="Pinterest"] {
  width: 36px;
  height: 36px;
  margin-right: 12px;
  vertical-align: middle;
}
.content-wrapper ul li {
  align-items: center !important;
  flex-direction: row !important;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: flex;
  position: absolute;
  top: 26px;
  right: 30px;
  z-index: 101;
  background: none;
  border: 3px solid #2A9D8F;
  color: #2A9D8F;
  border-radius: 10px;
  width: 46px;
  height: 46px;
  justify-content: center;
  align-items: center;
  font-size: 2.04rem;
  cursor: pointer;
  transition: border .16s, color .16s, background .16s;
  display: none;
}
.mobile-menu-toggle:active {
  border-color: #F4A261;
  color: #F4A261;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(38,70,83,.96);
  transform: translateX(-100vw);
  transition: transform .36s cubic-bezier(.74,0,.19,1);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  will-change: transform;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #fff;
  margin: 24px 0 0 22px;
  cursor: pointer;
  transition: color .18s;
  align-self: flex-start;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #F4A261;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 40px 0 0 34px;
  width: 80vw;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 14px 0 14px 12px;
  border-radius: 12px 0 12px 0;
  line-height: 1.1;
  min-width: 140px;
  transition: background .16s, color .16s;
  text-transform: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F4A261;
  color: #264653;
}
@media (max-width: 1024px) {
  .main-nav a {
    font-size: 0.98rem;
    padding: 7px 10px;
  }
  .main-nav img { width: 128px; }
}
@media (max-width: 940px) {
  .main-nav {
    gap: 7px;
    flex-wrap: wrap;
    padding: 20px 0;
  }
}
@media (max-width: 800px) {
  .main-nav a.cta-button { margin-left: 6px; }
}
@media (max-width: 768px) {
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  /* Keep logo visible on mobile */
  header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    background: #fff;
    border-bottom: 2.5px solid #2A9D8F18;
  }
}
@media (max-width: 650px) {
  .container { padding: 0 10px; }
  .section { padding: 24px 10px; }
}

/* RESPONSIVE & FLEX LAYOUTS */
@media (max-width: 1024px) {
  .container { max-width: 98vw; }
  .card {
    padding: 18px 12px;
    font-size: 0.98rem;
  }
}
@media (max-width: 768px) {
  .section { margin-bottom: 36px; padding: 24px 8px; }
  .content-wrapper { gap: 1.05em; }
  .content-wrapper ul, .content-wrapper ol {
    gap: 14px;
  }
  .content-wrapper ul li, .content-wrapper ol li {
    min-width: 100%;
    max-width: 100%;
    padding: 15px 10px;
  }
  .testimonial-card {
    flex-direction: column;
    max-width: 100%;
    padding: 12px;
  }
  .card-container, .content-grid { gap: 12px; }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .footer-nav { flex-direction: column; gap: 7px; }
  .footer-brand { gap: 7px; }
}

@media (max-width: 510px) {
  h1 { font-size: 1.68rem; }
  h2 { font-size: 1.2rem; }
  h3 { font-size: 1.08rem; }
  .cta-button, button, input[type="submit"] {
    font-size: .97rem;
    padding: 14px 10px;
  }
  .footer-brand img {
    width: 38px;
  }
}

/* SCROLLBAR STYLES */
::-webkit-scrollbar {
  width: 10px;
  background: #FFF;
}
::-webkit-scrollbar-thumb {
  background: #2A9D8F33;
  border-radius: 7px;
}

/* HIGHLIGHT/SELECTION COLORS */
::selection {
  background: #F4A261;
  color: #264653;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100vw;
  z-index: 20000;
  background: #264653;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 24px 12px 18px 12px;
  box-shadow: 0 -8px 40px rgba(38,70,83,0.10);
  font-size: 1.02rem;
  animation: cookie-banner-slide .8s cubic-bezier(.75,0,.2,1);
}
@keyframes cookie-banner-slide {
  0% { transform: translateY(100px); opacity: 0.1; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}
.cookie-banner button {
  padding: 12px 22px;
  font-size: 1rem;
  border-radius: 12px 3px 12px 3px;
  border: none;
  cursor: pointer;
  background: #2A9D8F;
  color: #fff;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.03em;
  transition: background .15s, color .16s;
}
.cookie-banner button.reject {
  background: #F4A261;
  color: #264653;
}
.cookie-banner button.settings {
  background: #fff;
  color: #264653;
  border: 2px solid #2A9D8F;
}
.cookie-banner button:hover,.cookie-banner button:focus {
  background: #2A9D8F;
  color: #fff;
}
.cookie-banner button.settings:hover, .cookie-banner button.settings:focus {
  background: #F4A261;
  color: #fff;
  border-color: #F4A261;
}
.cookie-banner .cookie-policy-link {
  color: #F4A261;
  text-decoration: underline;
  margin-left: 4px;
  font-weight: 500;
}
@media (max-width: 550px) {
  .cookie-banner { font-size: .95rem; padding: 18px 5px; }
  .cookie-banner-actions { gap: 9px; }
  .cookie-banner button { font-size: .92rem; padding: 10px 10px; }
}

/* COOKIE SETTINGS MODAL */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(38,70,83,0.92);
  z-index: 20010;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fade-in .25s cubic-bezier(.66,0,.2,1);
}
@keyframes fade-in {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #264653;
  border-radius: 18px 4px 18px 4px;
  box-shadow: 0 5px 40px rgba(38,70,83,0.18);
  max-width: 96vw;
  width: 410px;
  padding: 40px 26px 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.cookie-modal h2 {
  font-size: 1.32rem;
  margin-bottom: 7px;
  color: #264653;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  border-bottom: 1px solid #e7e7ea;
  padding: 12px 0 8px 0;
  font-size: 1.05rem;
}
.cookie-modal-category input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: #2A9D8F;
}
.cookie-modal-category.essential label,
.cookie-modal-category.essential .always-on {
  color: #2A9D8F;
  font-weight: bold;
}
.cookie-modal-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 14px;
}
.cookie-modal-actions button {
  padding: 10px 22px;
  border-radius: 10px 2px 10px 2px;
  background: #2A9D8F;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fff;
  font-weight: 600;
  border: none;
  transition: background .15s, color .15s;
  cursor: pointer;
  font-size: 1rem;
}
.cookie-modal-actions button.secondary {
  background: #F4A261;
  color: #264653;
}
.cookie-modal-close {
  position: absolute;
  right: 18px; top: 20px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #2A9D8F;
  cursor: pointer;
  transition: color .14s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #F4A261;
}
@media (max-width: 510px) {
  .cookie-modal { padding: 16px 8px; width: 97vw; }
  .cookie-modal h2 { font-size: 1.12rem; }
}

/* MICRO-INTERACTIONS & SHADOWS */
.card, .feature-item, .testimonial-card, .content-wrapper ul li {
  transition: box-shadow .16s, transform .19s;
}
.card:hover, .feature-item:hover, .testimonial-card:hover, .content-wrapper ul li:hover {
  box-shadow: 0 6px 30px rgba(42,157,143,0.16);
  transform: translateY(-4px) scale(1.02) skew(-1.1deg);
}

/* GEOMETRIC/STRUCTURED THEMING */
.section, .card, .footer-nav a, .footer-brand, .testimonial-card, .feature-item, .content-wrapper ul li, .cookie-modal {
  border-radius: 18px 4px 18px 4px;
}
h1, h2, h3, h4, h5, h6, .cta-button, .footer-nav a {
  font-family: 'Montserrat', Arial Black, Arial, sans-serif;
  font-weight: 700;
}

/* FLEX LAYOUT ENFORCEMENT */
/* (Critical: No grid/column properties) */
/* All containers handled in layouts above */

/* Utilities */
.m-b-0 { margin-bottom: 0 !important; }
.m-t-0 { margin-top: 0 !important; }
.m-l-auto { margin-left: auto !important; }
.m-r-auto { margin-right: auto !important; }
.text-center { text-align: center !important; }

/* Hide visually but keep accessible */
.sr-only {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

