/* RESET & 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.5;
  background: #F2F2F2;
  color: #222;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border: 0;
}
a {
  color: #22577A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #80ED99;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 20px;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}
th, td {
  padding: 12px 8px;
  border-bottom: 1px solid #d7e5eb;
  text-align: left;
}
strong {
  font-weight: bold;
}
hr {
  border: none;
  border-bottom: 1px solid #D7E5EB;
  margin: 32px 0;
}

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

h1, h2, h3, h4, .cta-button, .main-nav a, .mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  letter-spacing: 0.5px;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.15;
  color: #22577A;
  margin-bottom: 24px;
  text-shadow: 0 2px 0 #80ED99;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #22577A;
}
h3 {
  font-size: 1.375rem;
  color: #14C38E;
  margin-bottom: 10px;
}
h4 {
  font-size: 1.125rem;
  color: #2898FF;
  margin-bottom: 10px;
}
p, li, td, th, label, input, button, span, em, small {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #222;
}

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

.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 16px 0 rgba(34,87,122,0.07);
  min-width: 0;
}

/* FLEX REUSABLE CLASSES & MANDATORY PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(34,87,122,0.10);
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 6px 20px rgba(34,87,122,0.15);
  transform: translateY(-4px) scale(1.03);
}
.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: flex-start;
  gap: 20px;
  padding: 20px;
  background: #F2F2F2;
  border-left: 6px solid #80ED99;
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(34,87,122,0.06);
}
.testimonial-card .testimonial-name {
  color: #22577A;
  font-weight: 700;
  font-size: 1.05rem;
}
.testimonial-card p {
  font-size: 1.15rem;
  color: #111;
}
.testimonial-card .star-rating {
  color: #FFB700;
  font-size: 1.1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #EFFFFC;
  border-radius: 13px;
  box-shadow: 0 2px 10px 0 rgba(128,237,153,0.14);
  padding: 26px 22px;
  margin-bottom: 20px;
  min-width: 220px;
  transition: background 0.25s, box-shadow 0.18s, transform 0.18s;
}
.feature-item:hover {
  background: #A0FFD0;
  box-shadow: 0 6px 24px 0 rgba(128,237,153,0.23);
  transform: translateY(-4px) scale(1.03);
}
.feature-item img {
  height: 42px;
  width: 42px;
  object-fit: contain;
  margin-bottom: 10px;
}

/* HERO SECTION */
.hero {
  background: #80ED99;
  box-shadow: 0 10px 20px 0 rgba(34,87,122,0.05);
  padding: 64px 20px;
  border-radius: 0 0 28px 28px;
}
.hero h1 {
  font-size: 2.6rem;
  color: #22577A;
  margin-bottom: 18px;
  line-height: 1.1;
  text-shadow: 0 3px 0 #fff;
}
.hero p {
  font-size: 1.23rem;
  color: #196070;
  margin-bottom: 28px;
}
.hero .cta-button {
  font-size: 1.16rem;
  padding: 15px 38px;
  border-radius: 40px;
}

/* BUTTONS/INTERACTIVES */
.cta-button {
  display: inline-block;
  background: #22577A;
  color: #fff !important;
  padding: 12px 32px;
  border: none;
  border-radius: 32px;
  font-size: 1.1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 2px 16px 0 rgba(128,237,153,0.17);
  transition: background 0.22s, box-shadow 0.25s, transform 0.19s, color 0.15s;
  cursor: pointer;
  letter-spacing: 1px;
}
.cta-button:hover, .cta-button:focus {
  background: #14C38E;
  color: #222 !important;
  box-shadow: 0 6px 32px 0 rgba(20,195,142,0.17);
  transform: translateY(-3px) scale(1.06);
}
button[disabled], .cta-button[disabled] {
  background: #BCCCDC;
  color: #fff;
  cursor: not-allowed;
  opacity: 0.7;
}

/* NAVIGATION (DESKTOP) */
.main-nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
.main-nav a {
  font-size: 1.05rem;
  color: #22577A;
  padding: 7px 16px;
  border-radius: 24px;
  font-weight: 800;
  letter-spacing: 0.2px;
  transition: background 0.18s, color 0.19s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: #80ED99;
  color: #222;
}
.main-nav .cta-button {
  margin-left: 12px;
  background: #80ED99;
  color: #22577A !important;
  font-weight: 900;
  border: 2px solid #22577A;
  padding: 10px 28px;
}
.main-nav .cta-button:hover {
  background: #14C38E;
  color: #fff !important;
  border-color: #14C38E;
}

header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(34,87,122,0.04);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-top: 22px;
  padding-bottom: 22px;
}
.brand-logo img {
  height: 48px;
  width: auto;
  display: block;
}

/* MOBILE MENU (BURGER) */
.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  color: #22577A;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 102;
}
.mobile-menu {
  display: none;
}

/* FOOTER */
footer {
  background: #22577A;
  color: #fff;
  padding: 48px 0 24px 0;
  margin-top: 60px;
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: #fff;
  opacity: 0.98;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  transition: color 0.20s, text-decoration 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #80ED99;
  text-decoration: underline;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.95rem;
}
.footer-contact img {
  height: 18px;
  width: 18px;
  margin-right: 9px;
  vertical-align: middle;
}
footer .brand-logo img {
  height: 42px;
}

/* BLOG LIST & NEWSLETTER */
.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}
.blog-post {
  background: #fff;
  border-left: 4px solid #80ED99;
  border-radius: 13px;
  box-shadow: 0 2px 8px rgba(34,87,122,0.08);
  padding: 22px 16px;
  min-width: 230px;
  flex: 1 1 260px;
  margin-bottom: 20px;
  transition: box-shadow 0.17s, transform 0.17s;
}
.blog-post:hover {
  box-shadow: 0 6px 24px rgba(34,87,122,0.13);
  transform: translateY(-3px) scale(1.03);
}
.category-tag {
  background: #22577A;
  color: #fff;
  font-size: 0.87rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  border-radius: 8px;
  padding: 4px 11px;
  margin-top: 10px;
  display: inline-block;
}
.newsletter-form {
  display: flex;
  gap: 10px;
  margin-bottom: 6px;
}
.newsletter-form input[type="email"] {
  border-radius: 22px;
  border: 1px solid #D7E5EB;
  padding: 10px 18px;
  font-size: 1rem;
  outline: none;
  box-shadow: none;
}
.newsletter-form input[disabled], .newsletter-form button[disabled] {
  background: #EEE;
  opacity: 0.7;
  cursor: not-allowed;
}

/* SEARCH DISABLED LOOK */
.search-section input[disabled] {
  background: #EFEFEF;
  color: #999;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  padding: 8px 17px;
  outline: none;
  opacity: 0.6;
}
.search-section label {
  margin-right: 6px;
  font-weight: 600;
}

/* TABLES */
table th {
  background: #22577A;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: bold;
}
table tr:nth-child(even) td {
  background: #F8FFF8;
}

/* MAP */
.map-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #EFFFFC;
  border-radius: 12px;
  padding: 26px 12px;
  margin: 22px 0;
  min-height: 140px;
  box-shadow: 0 1px 5px rgba(128,237,153,0.10);
}
.map-placeholder img {
  width: 60px;
  height: 60px;
  opacity: 0.78;
}

/* CONTENT TEXT/SECTION */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 12px;
}
.text-section ul {
  margin-bottom: 0;
}
.text-section li {
  margin-bottom: 6px;
  display: flex;
  align-items: center;
}
.text-section li img {
  margin-right: 12px;
  width: 20px;
  height: 20px;
}

/* CTA SECTION */
.cta {
  background: #22577A;
  color: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 18px rgba(34,87,122,0.09);
  text-align: left;
}
.cta .container, .cta .content-wrapper {
  color: #fff;
}
.cta h2, .cta p, .cta a {
  color: #fff;
}
.cta a.cta-button {
  background: #80ED99;
  color: #22577A !important;
  font-weight: 900;
  border: 2px solid #22577A;
  margin-top: 18px;
}
.cta a.cta-button:hover {
  background: #fff;
  color: #14C38E !important;
  border-color: #80ED99;
}

/* TESTIMONIAL SLIDER */
.testimonial-slider {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

/* FEATURE GRID ADAPTATION */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}

/* MOBILE MENU (BURGER) - FUNCTIONALITY & EFFECTS */
.mobile-menu-toggle {
  display: none;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 320px;
  max-width: 86vw;
  background: #22577A;
  color: #fff;
  box-shadow: -5px 0 32px rgba(34,87,122,0.23);
  z-index: 1200;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.76,.07,.52,.95);
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px 22px 60px 22px;
  will-change: transform;
}
.mobile-menu.open {
  transform: translateX(0%);
  display: flex;
}
.mobile-menu-close {
  background: none;
  color: #fff;
  border: none;
  font-size: 2rem;
  align-self: flex-end;
  padding: 12px 10px;
  margin-bottom: 8px;
  cursor: pointer;
  z-index: 2010;
  transition: color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #80ED99;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 12px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 800;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 13px 7px;
  border-radius: 17px;
  transition: background 0.18s, color 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #80ED99;
  color: #22577A;
}
.mobile-nav a.cta-button {
  background: #80ED99;
  color: #22577A;
  padding: 15px 16px;
  font-weight: 900;
  margin-bottom: 17px;
}
.mobile-menu.open {
  display: flex;
}

/* DISABLE SELECTORS FOR DISABLED BUTTONS */
button[disabled], .cta-button[disabled] {
  pointer-events: none;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #22577A;
  color: #fff;
  padding: 22px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1240;
  box-shadow: 0 6px 24px 8px rgba(34,87,122,0.09);
  animation: slideUp 0.35s ease-out;
  gap: 24px;
}
@keyframes slideUp {
  from { transform: translateY(110%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner__text {
  font-size: 1rem;
  flex: 1 1 340px;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-banner__actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-shrink: 0;
}
.cookie-banner__button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.01rem;
  border: 2px solid transparent;
  padding: 9px 25px;
  border-radius: 20px;
  background: #80ED99;
  color: #22577A;
  cursor: pointer;
  transition: background 0.16s, color 0.15s, border-color 0.16s, transform 0.16s;
}
.cookie-banner__button.settings {
  background: #fff;
  color: #22577A;
  border: 2px solid #80ED99;
}
.cookie-banner__button:hover, .cookie-banner__button:focus {
  background: #14C38E;
  color: #fff;
  border-color: #14C38E;
  transform: translateY(-2px) scale(1.03);
}
.cookie-banner__button.reject {
  background: #FF686B;
  color: #fff;
  border: 2px solid #FF686B;
}

/* COOKIE CONSENT MODAL */
.cookie-modal-backdrop {
  position: fixed;
  top: 0; left:0; right:0; bottom:0;
  background: rgba(34,87,122,0.42);
  z-index: 1255;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.18s ease;
}
@keyframes fadeIn {
  from { opacity:0; }
  to { opacity:1; }
}
.cookie-modal {
  background: #fff;
  color: #22577A;
  border-radius: 24px;
  box-shadow: 0 10px 34px 4px rgba(34,87,122,0.18);
  min-width: 314px;
  max-width: 95vw;
  padding: 34px 30px 22px 30px;
  z-index: 1256;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: modalIn 0.28s cubic-bezier(.69,.16,.5,1.1);
}
@keyframes modalIn {
  from { transform: scale(0.94) translateY(20px); opacity:0; }
  to { transform: scale(1) translateY(0); opacity:1; }
}
.cookie-modal h3 {
  margin-bottom: 8px;
  color: #22577A;
  font-size: 1.32rem;
}
.cookie-modal ul {
  margin-left: 0;
  padding-left: 0;
}
.cookie-modal li {
  list-style: none;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  font-size: 1rem;
}
.cookie-modal label {
  font-size: 1rem;
  color: #196070;
}
.cookie-modal input[type="checkbox"] {
  margin-right: 8px;
  accent-color: #80ED99;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 12px;
}
.cookie-modal .cookie-modal-close {
  background: none;
  color: #22577A;
  border: none;
  font-size: 1.4rem;
  position: absolute;
  top: 13px;
  right: 19px;
  cursor: pointer;
}

/* ANIMATIONS / INTERACTIONS */
.card, .feature-item, .blog-post, .testimonial-card, .cta-button, .main-nav a, .mobile-nav a, .category-tag {
  transition-property: box-shadow, transform, background, color;
  transition-duration: 0.17s;
  transition-timing-function: cubic-bezier(.61,.01,.24,.99);
}

/* RESPONSIVE DESIGN (MOBILE-FIRST) */
@media (max-width: 1090px) {
  .container { max-width: 96vw; }
  .footer-content { flex-direction: column; gap: 18px; align-items: flex-start; }
  .main-nav { gap: 13px; }
}
@media (max-width: 890px) {
  .content-grid, .feature-grid, .blog-list, .testimonial-slider, .footer-content {
    flex-direction: column;
    gap: 20px;
  }
  .feature-item, .card, .blog-post {
    min-width: unset;
    width: 100%;
  }
  .section, section {
    padding: 28px 7px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .hero {
    padding: 46px 10px 39px 10px;
    text-align: left;
    border-radius: 0 0 19px 19px;
  }
  .cta {
    padding: 28px 6px 22px 6px;
    border-radius: 14px;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.35rem;
  }
  .footer-content {
    flex-direction: column;
    gap: 14px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 11px;
  }
  .cookie-banner__actions {
    width: 100%;
    gap: 10px;
    justify-content: flex-start;
  }
  .mobile-menu {
    width: 100vw;
    max-width: 100vw;
    padding: 20px 12px 44px 12px;
  }
  .testimonial-slider, .feature-grid, .content-grid, .blog-list {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}
@media (max-width: 500px) {
  h1 { font-size: 1.35rem; }
  h2 { font-size: 1.08rem; }
  .footer-contact { font-size: 0.91rem; }
  .brand-logo img, footer .brand-logo img {
    height: 34px;
  }
}

/* Z-INDEX FIXES */
header, .mobile-menu, .cookie-banner, .cookie-modal-backdrop {
  z-index: 1000;
}

/* MISC */
::-webkit-input-placeholder { color: #888; opacity: 1; }
::-moz-placeholder { color: #888; opacity: 1; }
:-ms-input-placeholder { color: #888; opacity: 1; }
::placeholder { color: #888; opacity: 1; }

@media (hover: none) and (pointer: coarse) {
  a:hover, .cta-button:hover, .main-nav a:hover, .mobile-nav a:hover {
    filter: none;
  }
}
