/* 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, 
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 {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  background: linear-gradient(135deg, #F5F7FA 0%, #E0EBE5 100%);
  color: #176B57;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #176B57;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #C39000;
  outline: none;
}

/* BRAND TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #176B57;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.125rem;
  margin-bottom: 10px;
}
p, ul, ol {
  font-size: 1rem;
  margin-bottom: 16px;
}
ul, ol {
  margin-left: 22px;
  margin-bottom: 20px;
}
li {
  margin-bottom: 14px;
  font-size: 1rem;
  padding-left: 4px;
}

strong {
  font-weight: 700;
}

/* CONTAINERS & SECTIONS */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 20px rgba(23, 107, 87, 0.07);
  transition: box-shadow 0.3s;
}
section.hero, .cta {
  background: linear-gradient(100deg, #DCF7EF 0%, #F5F7FA 100%);
  box-shadow: 0 4px 16px rgba(23, 107, 87, 0.08);
  border-radius: 28px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* FLEX LAYOUT UTILITIES */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  margin-bottom: 20px;
  position: relative;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(23, 107, 87, 0.10);
  padding: 28px;
  flex: 1 1 320px;
  min-width: 0;
  transition: box-shadow 0.22s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(23, 107, 87, 0.22);
  z-index: 1;
}
.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 28px;
  margin-bottom: 24px;
  background: #F5F7FA;
  border-left: 5px solid #176B57;
  border-radius: 10px;
  color: #222;
  box-shadow: 0 2px 12px rgba(23, 107, 87, 0.06);
  transition: box-shadow 0.22s, border-color 0.22s;
}
.testimonial-card img {
  margin-top: 6px;
  max-height: 32px;
}
.testimonial-card:hover {
  box-shadow: 0 6px 20px rgba(23, 107, 87, 0.17);
  border-left-color: #C39000;
}

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

.text-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cta {
  background: linear-gradient(100deg, #F2B705 22%, #F5F7FA 100%);
  text-align: center;
  border-radius: 28px;
  box-shadow: 0 4px 16px rgba(243, 183, 5, 0.09);
}
.cta h2, .cta h1 {
  color: #176B57;
}

/* TABLE STYLES */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(23,107,87,0.02);
  overflow: hidden;
}
th, td {
  border-bottom: 1px solid #e0ebe5;
  padding: 14px 10px;
  text-align: left;
  font-size: 1rem;
}
th {
  background: #F5F7FA;
  color: #176B57;
  font-weight: 700;
  letter-spacing: 0.02em;
}
tr:last-child td {
  border-bottom: none;
}

/* HEADER & NAVIGATION */
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(23,107,87,0.08);
  position: relative;
  z-index: 10;
}
header a img {
  height: 42px;
  margin-right: 16px;
}
header nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  padding: 8px 10px;
  color: #176B57;
  font-weight: 500;
  border-radius: 8px;
  transition: background 0.22s, color 0.22s;
}
header nav a:hover,
header nav a:focus {
  background: #DCF7EF;
  color: #C39000;
  outline: none;
}
.cta-btn {
  background: linear-gradient(90deg, #F2B705 32%, #176B57 100%);
  color: #fff !important;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 11px 28px;
  margin-left: 18px;
  border: none;
  border-radius: 20px;
  box-shadow: 0 5px 18px rgba(242,183,5,0.09);
  cursor: pointer;
  transition: background 0.24s, box-shadow 0.24s, color 0.18s;
}
.cta-btn:hover,
.cta-btn:focus {
  background: linear-gradient(90deg, #176B57 0%, #F2B705 78%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(23,107,87,0.15);
  outline: none;
}

/* MOBILE BURGER MENU */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  top: 24px;
  right: 24px;
  background: #176B57;
  color: #fff;
  border: none;
  border-radius: 7px;
  font-size: 2.1rem;
  width: 54px;
  height: 54px;
  z-index: 101;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(23,107,87,0.09);
  transition: background 0.22s, box-shadow 0.22s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #C39000;
  color: #fff;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #176B57;
  color: #fff;
  z-index: 999;
  padding: 0;
  transform: translateX(-100vw);
  transition: transform 0.36s cubic-bezier(.61,.31,.54,1.24);
  box-shadow: 4px 0 20px rgba(23,107,87,0.14);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  position: absolute;
  top: 22px;
  right: 26px;
  z-index: 1002;
  cursor: pointer;
  padding: 8px 10px;
  border-radius: 7px;
  transition: background 0.22s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #C39000;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 98px 38px 38px 32px;
  width: 100%;
  gap: 22px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  padding: 15px 3px 15px 4px;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #DCF7EF;
  color: #176B57;
  outline: none;
}

/* MAIN LAYOUT SPACING */
main {
  margin-top: 18px;
  margin-bottom: 60px;
}

/* LISTS WITH ICONS */
ul li img {
  vertical-align: middle;
  height: 24px;
  margin-right: 12px;
  margin-bottom: -6px;
}
.footer-contact img {
  vertical-align: middle;
  height: 19px;
  margin-right: 7px;
  margin-bottom: -3px;
}

/* FOOTER */
footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: #176B57;
  color: #fff;
  padding: 38px 20px 28px 20px;
}
footer a {
  color: #fff;
  opacity: 0.98;
  font-weight: 400;
  margin-right: 7px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 6px;
  padding: 5px 7px;
  transition: opacity 0.18s, background 0.16s, color 0.18s;
}
footer nav {
  display: flex;
  gap: 13px;
  margin-bottom: 6px;
}
footer a:hover, footer a:focus {
  opacity: 1;
  background: #F2B705;
  color: #176B57;
}
footer .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 1rem;
  color: #F5F7FA;
  margin-top: 7px;
}
footer a img {
  height: 39px;
  margin-bottom: -13px;
}

/* Cookie Consent Banner */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2338;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
  background: #F5F7FA;
  color: #176B57;
  box-shadow: 0 -2px 26px rgba(23,107,87,0.08);
  padding: 23px 14px 14px 14px;
  border-radius: 18px 18px 0 0;
  font-size: 1rem;
  animation: cookieSlideIn 0.7s cubic-bezier(.57,1.36,.49,1.13);
}
@keyframes cookieSlideIn {
  from { bottom: -120px; opacity: 0; }
  to { bottom: 0; opacity: 1; }
}
.cookie-consent-banner .cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 13px;
  margin-top: 3px;
}
.cookie-consent-banner button {
  border: none;
  border-radius: 16px;
  padding: 10px 20px;
  margin: 0 2px;
  cursor: pointer;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.2s, color 0.18s, box-shadow 0.15s;
}
.cookie-accept {
  background: #176B57;
  color: #fff;
  box-shadow: 0 2px 9px rgba(23,107,87,0.08);
}
.cookie-accept:hover, .cookie-accept:focus {
  background: #C39000;
  color: #fff;
}
.cookie-reject {
  background: #fff;
  color: #C39000;
  border: 2px solid #C39000;
}
.cookie-reject:hover, .cookie-reject:focus {
  background: #C39000;
  color: #fff;
}
.cookie-settings {
  background: transparent;
  color: #176B57;
  border: 2px solid #176B57;
}
.cookie-settings:hover, .cookie-settings:focus {
  background: #DCF7EF;
  color: #176B57;
}

/* Cookie Preference Modal */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2344;
  background: rgba(23, 107, 87, 0.21);
  align-items: center;
  justify-content: center;
  animation: fadein 0.17s;
}
.cookie-modal-overlay.open {
  display: flex;
}
@keyframes fadein {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  min-width: 320px;
  max-width: 430px;
  padding: 32px 28px 24px 28px;
  border-radius: 15px;
  box-shadow: 0 6px 40px rgba(23,107,87,0.19);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 19px;
  animation: modalJamIn 0.35s cubic-bezier(.7,.19,.56,1.28);
}
@keyframes modalJamIn {
  0% { opacity: 0; transform: scale(.9) translateY(30px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal h2 {
  font-size: 1.3rem;
  color: #176B57;
  margin-bottom: 8px;
}
.cookie-modal .category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  margin-bottom: 13px;
}
.cookie-modal .category span {
  font-size: 1rem;
  color: #222;
}
.cookie-modal .category input[type='checkbox'] {
  width: 20px;
  height: 20px;
  accent-color: #176B57;
}
.cookie-modal .always-on {
  color: #888;
  font-size: 0.93rem;
  margin-left: 7px;
}
.cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 8px;
}
.cookie-modal .modal-actions button {
  border-radius: 13px;
  padding: 10px 18px;
  border: none;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
.cookie-modal .modal-save {
  background: #176B57;
  color: #fff;
  margin-left: 2px;
}
.cookie-modal .modal-save:hover, .cookie-modal .modal-save:focus {
  background: #C39000;
}
.cookie-modal .modal-cancel {
  background: #fff;
  color: #176B57;
  border: 1.5px solid #176B57;
}
.cookie-modal .modal-cancel:hover, .cookie-modal .modal-cancel:focus {
  background: #DCF7EF;
  color: #176B57;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 14px;
  right: 17px;
  background: none;
  color: #C39000;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  border-radius: 7px;
  transition: background 0.17s;
  padding: 3px 7px;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  background: #DCF7EF;
}

/* RESPONSIVE STYLES */
@media (max-width: 1140px) {
 .container {
  max-width: 98vw;
 }
}
@media (max-width: 900px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.38rem; }
  .section, section {
    padding: 28px 7px;
  }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  header {
    flex-direction: column;
    align-items: flex-start;
    padding: 8px 7px 13px 7px;
  }
  header nav {
    display: none;
  }
  .cta-btn {
    margin-left: 0;
    margin-top: 7px;
  }
  .mobile-menu-toggle {
    display: block;
  }
  main {
    margin-bottom: 38px;
    margin-top: 12px;
  }
  .section, section {
    margin-bottom: 36px;
    padding: 19px 4px 27px 4px;
  }
  .content-wrapper, .text-section {
    gap: 16px;
  }
  .content-grid, .card-container, .card-grid, .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    padding: 14px 11px;
    font-size: 0.98rem;
  }
  .card {
    padding: 17px;
  }
  footer {
    padding: 18px 5px 19px 5px;
    font-size: 0.98rem;
  }
  footer nav {
    gap: 8px;
  }
}
@media (max-width: 480px) {
  html { font-size: 14px; }
  .section, section {
    padding: 8px 0;
    border-radius: 13px;
  }
  header a img, footer a img {
    height: 32px;
  }
  .testimonial-card {
    padding: 8px 4px;
  }
}

/* MICRO-INTERACTIONS */
.card, .testimonial-card, .cta-btn, .cookie-consent-banner button, .cookie-modal .modal-actions button {
  transition: box-shadow 0.24s, transform 0.13s, background 0.22s;
}
.card:hover, .cta-btn:hover {
  transform: translateY(-4px) scale(1.009);
}
.testimonial-card:hover {
  transform: scale(1.015);
}

/* FOCUS STYLE FOR ACCESSIBILITY */
:focus-visible {
  outline: 2.5px dashed #F2B705;
  outline-offset: 2px;
}

/* PRINT OPTIMIZATION */
@media print {
 header, .mobile-menu-toggle, .mobile-menu, .cta, .cookie-consent-banner, .cookie-modal-overlay {
  display: none !important;
 }
 body, html {
  background: #fff !important;
 }
 main, section, .section {
  box-shadow: none !important; background: #fff !important;
  padding: 0 !important;
 }
}

/* ---- END OF CSS ---- */
