/* --------------------------------------------------
   CSS 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 {
  border: 0;
  margin: 0;
  padding: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html { box-sizing: border-box; font-size: 16px; }
*, *:before, *:after { box-sizing: inherit; }
body {
  background: #F7F7F7;
  color: #2B3659;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; transition: color .2s; }
ul, ol { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font-family: inherit; }

/* --------------------------------------------------
   BRAND FONTS
-----------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&family=Roboto:wght@400;500;700&display=swap');

h1, h2, h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #2B3659;
  margin-bottom: 20px;
  line-height: 1.15;
  font-weight: 800;
  text-wrap: balance;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.15rem; font-weight: 700; color: #19B67B; margin-bottom: 12px; }
p, ul, ol, li { font-size: 1rem; color: #2B3659; }
p { margin-bottom: 16px; }
strong { font-weight: 700; }

@media (min-width: 700px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.3rem; }
  h3 { font-size: 1.25rem; }
}

/* --------------------------------------------------
   GLOBAL LAYOUT & CONTAINERS
-----------------------------------------------------*/
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ---------------------------
   FLEX UTILS & MANDATORY LAYOUTS
---------------------------*/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 26px 0 rgba(43,54,89,0.08);
  padding: 24px 20px;
  transition: box-shadow 0.22s, transform 0.19s;
  min-width: 250px;
}
.card:hover { box-shadow: 0 12px 38px 0 rgba(25,182,123,0.18); transform: translateY(-4px); }
.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: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px 0 rgba(43,54,89,0.08);
  margin-bottom: 20px;
  flex-direction: column;
}
.testimonial-card p {
  color: #2B3659;
  font-size: 1.1rem;
  margin-bottom: 10px;
  line-height: 1.5;
}
.testimonial-author {
  font-size: 1rem;
  color: #19B67B;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --------------------------------------------------
   HERO & SECTIONS GRADIENTS
-----------------------------------------------------*/
section:nth-of-type(1) {
  background: linear-gradient(120deg, #E5F9F4 0%, #F7F7F7 100%);
  border-radius: 0 0 48px 48px;
  box-shadow: 0 8px 28px rgba(25,182,123,0.04);
}
section:not(:first-of-type) {
  background: #fff;
  border-radius: 32px;
  margin-top: 36px;
  box-shadow: 0 3px 14px 0 rgba(43,54,89,0.05);
}
@media (max-width: 768px) {
  .section, section { padding: 24px 8px; margin-bottom: 40px; }
  section:not(:first-of-type) { border-radius: 16px; }
}

/* --------------------------------------------------
   HEADER & NAVIGATION
-----------------------------------------------------*/
header {
  width: 100%;
  background: linear-gradient(95deg, #19B67B 0%, #2B3659 120%);
  color: #fff;
  box-shadow: 0 2px 24px 0 rgba(43,54,89,0.09);
  position: relative;
  z-index: 10;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 18px;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
}
header nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.04rem;
  letter-spacing: 0.02em;
  padding: 6px 12px;
  border-radius: 8px;
  transition: background .16s;
}
header nav a:hover,
header nav a:focus {
  background: rgba(25,182,123,0.18);
  color: #fff;
}
.cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 30px;
  background: linear-gradient(90deg, #19B67B 10%, #2B3659 95%);
  color: #fff;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 18px 0 rgba(25,182,123,0.10);
  transition: background .21s, box-shadow .22s, transform .18s;
  border: none;
  display: inline-block;
  margin: 0 0 0 8px;
  cursor: pointer;
  outline: none;
  text-align: center;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, #2B3659 10%, #19B67B 95%);
  box-shadow: 0 8px 28px 0 rgba(25,182,123,0.16);
  transform: translateY(-2px) scale(1.03);
}

/* --------------------------------------------------
   MOBILE MENU
-----------------------------------------------------*/
.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #fff;
  margin-left: 18px;
  cursor: pointer;
  transition: color .15s;
  z-index: 1002;
  display: none;
}
.mobile-menu-toggle:focus { outline: 2px solid #19B67B; }
.mobile-menu {
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(100deg,#19B67B 0%, #2B3659 100%);
  box-shadow: 0 8px 32px 0 rgba(25,182,123,0.22);
  z-index: 1001;
  transform: translateX(-100vw);
  transition: transform .38s cubic-bezier(.66,.05,.35,1);
  padding: 0;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2rem;
  color: #fff;
  margin: 18px 28px 0 0;
  cursor: pointer;
  z-index: 1003;
  transition: color 0.17s;
}
.mobile-menu-close:focus { outline: 2px solid #fff; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
  margin-top: 48px;
  margin-left: 40px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.19rem;
  font-weight: 700;
  padding: 10px 0;
  border-radius: 8px;
  transition: background .17s, color .18s;
  width: 100%;
  display: block;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: rgba(43,54,89,0.14);
  color: #19B67B;
}

@media (max-width: 1024px) {
  header nav { display: none; }
  .mobile-menu-toggle { display: block; }
}
@media (min-width: 1025px) {
  .mobile-menu { display: none !important; }
  .mobile-menu-toggle { display: none !important; }
}

/* --------------------------------------------------
   FEATURE GRIDS & FLEX SECTIONS
-----------------------------------------------------*/
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 10px;
  width: 100%;
}
.feature-grid > div {
  background: #F7F7F7;
  border-radius: 18px;
  box-shadow: 0 4px 20px 0 rgba(43,54,89,0.07);
  padding: 28px 20px;
  flex: 1 1 280px;
  min-width: 220px;
  max-width: 370px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow .2s, transform .16s;
  margin-bottom: 20px;
}
.feature-grid > div:hover {
  box-shadow: 0 10px 32px 0 rgba(25,182,123,0.18);
  transform: translateY(-3px);
}
.feature-grid img {
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.text-section ul, .text-section ol {
  margin-top: 10px;
  margin-left: 18px;
  padding-left: 0px;
}
.text-section ul li,
.text-section ol li {
  margin-bottom: 9px;
  font-size: 1rem;
  color: #2B3659;
  list-style-type: disc;
}
.text-section ul li strong { font-weight: 700; }

@media (max-width: 900px) {
  .feature-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature-grid > div {
    max-width: 100%;
    padding: 22px 14px;
  }
}

/* --------------------------------------------------
   BUTTONS & LINK INTERACTIONS
-----------------------------------------------------*/
a, button {
  transition: color .21s, background .17s, box-shadow .19s, transform .17s;
}

.cta-btn:active {
  background: #19B67B;
  color: #fff;
  transform: scale(0.97);
}

/* --------------------------------------------------
   TESTIMONIALS
-----------------------------------------------------*/
.testimonial-card {
  background: #fff;
  color: #222;
  border-left: 6px solid #19B67B;
}
.testimonial-author {
  color: #19B67B;
  font-weight: 700;
  font-size: 1rem;
  margin-top: 2px;
}
h3 + ul, h3 + ol {
  margin-top: -8px;
  margin-bottom: 16px;
}

/* --------------------------------------------------
   FOOTER
-----------------------------------------------------*/
footer {
  background: linear-gradient(90deg, #2B3659 85%, #19B67B 120%);
  color: #fff;
  padding: 46px 0 26px 0;
  font-size: 1rem;
  border-radius: 36px 36px 0 0;
  box-shadow: 0 -2px 17px 0 rgba(43,54,89,0.05);
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
footer nav {
  display: flex;
  flex-direction: row;
  gap: 22px;
  margin-bottom: 8px;
}
footer nav a {
  color: #fff;
  opacity: 0.93;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-radius: 8px;
  padding: 6px 12px;
  transition: background .12s;
}
footer nav a:hover, footer nav a:focus {
  background: rgba(25,182,123,0.26);
}
.contact-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 12px;
}
.contact-footer > div {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #F7F7F7;
  font-size: 0.97rem;
}
.contact-footer a { color: #19B67B; font-weight: 500; }
footer p {
  color: #F7F7F7;
  font-size: 0.92rem;
  margin-top: 16px;
  opacity: 0.7;
}

/* --------------------------------------------------
   COOKIE CONSENT BANNER
-----------------------------------------------------*/
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  z-index: 3000;
  background: #2B3659;
  box-shadow: 0 -6px 24px 0 rgba(43,54,89,0.14);
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 26px;
  font-size: 1rem;
  transition: transform .36s;
}
.cookie-banner.hide {
  transform: translateY(160px);
}
.cookie-banner p {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 0;
}
.cookie-btns {
  display: flex;
  gap: 14px;
  align-items: center;
}
.cookie-banner button {
  padding: 8px 22px;
  border-radius: 22px;
  font-weight: 600;
  border: none;
  font-size: 1rem;
  background: #19B67B;
  color: #fff;
  transition: background .12s, color .12s;
  cursor: pointer;
}
.cookie-banner button:hover,
.cookie-banner button:focus {
  background: #fff;
  color: #19B67B;
}
.cookie-banner .cookie-settings-btn {
  background: #F7F7F7;
  color: #2B3659;
  border: 1px solid #19B67B;
}
.cookie-banner .cookie-settings-btn:hover {
  background: #19B67B;
  color: #fff;
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  width: 100vw; height: 100vh;
  background: rgba(43,54,89,0.32);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3002;
  opacity: 1;
  transition: opacity .32s;
}
.cookie-modal {
  background: #fff;
  color: #2B3659;
  border-radius: 24px;
  box-shadow: 0 12px 40px 0 rgba(25,182,123,0.14);
  max-width: 420px;
  width: 94%;
  padding: 36px 26px 32px 26px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  animation: fadeYIn .35s cubic-bezier(.7,.16,.5,1);
}
@keyframes fadeYIn { from { opacity:0; transform:translateY(60px);} to { opacity:1; transform:translateY(0);} }
.cookie-modal h2 {
  font-size: 1.35rem;
  color: #19B67B;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 8px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 16px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cookie-category label {
  font-size: 1rem;
}
.cookie-category input[type="checkbox"] {
  width: 18px; height: 18px;
  accent-color: #19B67B;
}
.cookie-modal-buttons {
  margin-top: 16px;
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal-buttons button {
  padding: 8px 22px;
  border-radius: 20px;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  background: #19B67B;
  color: #fff;
  transition: background .18s, color .14s;
}
.cookie-modal-buttons button:hover { background: #2B3659; }
.cookie-modal .close-modal {
  position: absolute;
  top: 12px; right: 13px;
  background: none;
  border: none;
  color: #19B67B;
  font-size: 1.6rem;
  cursor: pointer;
}

/* Essential cookies always enabled */
.cookie-category-essential {
  color: #aaa;
  font-weight: 500;
  opacity: 0.7;
}
.cookie-category-essential input[type="checkbox"] {
  accent-color: #19B67B;
}

/* --------------------------------------------------
   RESPONSIVE DESIGN
-----------------------------------------------------*/
@media (max-width: 1100px) {
  .container {
    max-width: 98vw;
    padding: 0 8px;
  }
  .feature-grid {
    gap: 16px;
  }
}
@media (max-width: 900px) {
  h1 { font-size: 2.0rem; }
  h2 { font-size: 1.5rem; }
  .content-wrapper { gap: 16px; }
}
@media (max-width: 768px) {
  header .container { flex-direction: row; gap: 10px; }
  .feature-grid { flex-direction: column; }
  .card-container { flex-direction: column; gap: 18px; }
  .content-grid { flex-direction: column; gap: 14px; }
  .testimonial-card { flex-direction: column; gap: 12px; }
  .contact-footer { flex-direction: column; gap: 10px; align-items: flex-start; }
  .text-image-section { flex-direction: column; gap: 18px; }
}

@media (max-width: 600px) {
  .container,
  footer .container {
    padding: 0 4px;
  }
  h1 { font-size: 1.35rem; }
  h2 { font-size: 1.1rem; }
  p, li { font-size: 0.97rem; }
  header .container { padding: 6px 1vw; }
  section,
  .section { padding: 12px 2px; margin-bottom: 20px; }
  .content-wrapper { gap: 10px; }
  .cta-btn { padding: 11px 18px; font-size: 0.97rem; }
  .cookie-banner { padding: 15px 6px; flex-direction: column; align-items: flex-start; gap: 10px; font-size: 0.93rem; }
  .cookie-btns { gap: 9px; }
}

/* --------------------------------------------------
   MISCELLANEOUS AND UTILITY
-----------------------------------------------------*/
hr {
  border: 0;
  border-bottom: 1.5px solid #19B67B;
  margin: 32px 0 14px 0;
  opacity: 0.22;
}
::-webkit-input-placeholder { color: #B1C0D9; opacity: 1; }
::-moz-placeholder { color: #B1C0D9; opacity: 1; }
:-ms-input-placeholder { color: #B1C0D9; opacity: 1; }
::placeholder { color: #B1C0D9; opacity: 1; }

/* Accessibility: focus ring */
a:focus, button:focus {
  outline: 2px solid #19B67B;
  outline-offset: 2px;
}

/* --------------------------------------------------
   END OF STYLE.CSS
-----------------------------------------------------*/
