/* ========================= CSS RESET & BASE ========================= */
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, main, menu, nav, section {
  display: block;
}

body {
  line-height: 1.5;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #22313f;
  background: #f6f8f9;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

*, *::before, *::after {
  box-sizing: inherit;
}

a {
  color: #2c8570;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #16425b;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border: none;
}

/* ========================= TYPOGRAPHY ========================= */
@import url('https://fonts.googleapis.com/css?family=Roboto+Slab:700,400&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto Slab', serif;
  color: #16425b;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.16;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.5rem; margin-bottom: 15px; }
h4, h5, h6 { font-size: 1.125rem; margin-bottom: 10px; }
p, ul, ol { margin-bottom: 16px; }

strong { font-weight: 700; }
small { font-size: 0.88em; color: #4d5c6b; }

.subheadline { color: #2c8570; font-size: 1.25rem; font-weight: 600; margin-bottom: 20px; }


/* ========================= LAYOUT HELPERS ========================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(30,60,75,0.11);
  padding: 28px;
  transition: box-shadow 0.25s, transform 0.2s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 12px 32px rgba(44,133,112,0.17);
  transform: translateY(-4px) scale(1.02);
  z-index: 2;
}
.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: #fff;
  border-radius: 14px;
  box-shadow: 0 3px 20px rgba(22,66,91,0.07);
  margin-bottom: 24px;
  max-width: 600px;
  min-width: 260px;
  border-left: 6px solid #2c8570;
}
.testimonial-card blockquote {
  color: #16425b;
  font-size: 1.15rem;
  font-style: italic;
  margin-bottom: 6px;
  line-height: 1.5;
}
.testimonial-card span {
  color: #2c8570;
  font-size: 1rem;
  font-weight: 600;
  margin-left: 4px;
  letter-spacing: 0.2px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

ul, ol {
  padding-left: 24px;
}
ul.service-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 24px;
  list-style: none;
  padding-left: 0 !important;
}
ul.service-icons li {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f6f8f9;
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 1.08rem;
  color: #2c8570;
  font-weight: 600;
  box-shadow: 0 1px 6px rgba(44,133,112,0.09);
}

/* ========================= HEADER & NAV ========================= */
header {
  background: linear-gradient(90deg, #2c8570 0%, #16425b 100%);
  padding: 0;
  box-shadow: 0 2px 18px rgba(96, 157, 157, 0.06);
  position: relative;
  z-index: 30;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
}
header img {
  height: 40px;
  margin-right: 18px;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
}
header nav a {
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  color: #fff;
  font-size: 1rem;
  position: relative;
  padding: 6px 0;
  transition: color 0.2s;
}
header nav a:after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -3px;
  height: 2px; border-radius: 4px;
  background: #2c8570;
  transform: scaleX(0);
  transition: transform 0.25s cubic-bezier(.4,0,.2,1);
}
header nav a:hover:after,
header nav a:focus:after {
  transform: scaleX(1);
}
header .cta-btn {
  margin-left: 32px;
}

/* ========================= CTA BUTTONS ========================= */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  background: linear-gradient(90deg, #2c8570 0%, #16425b 100%);
  color: #fff;
  font-family: 'Roboto Slab', serif;
  font-size: 1.18rem;
  font-weight: 700;
  text-transform: none;
  border: none;
  border-radius: 28px;
  box-shadow: 0 4px 16px rgba(44,133,112,0.13);
  cursor: pointer;
  transition: background 0.25s, box-shadow 0.21s, transform 0.18s;
  outline: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, #16425b 0%, #2c8570 100%);
  color: #fff;
  box-shadow: 0 6px 24px rgba(22,66,91,0.16);
  transform: translateY(-2px) scale(1.03);
}

/* ========================= HERO SECTIONS ========================= */
.hero {
  background: linear-gradient(110deg, #f6f8f9 55%, #dbecec 100%);
  padding: 70px 0 50px 0;
  margin-bottom: 60px;
  display: flex;
  align-items: center;
}
.hero h1 {
  color: #16425b;
  line-height: 1.18;
}
.hero .cta-btn {
  margin-top: 18px;
}

/* ========================= FEATURES, ABOUT, LEGAL ========================= */
.features {
  margin-bottom: 60px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 18px rgba(44,133,112,0.09);
}
.about {
  background: #f6f8f9;
  border-radius: 20px;
  margin-bottom: 60px;
}
.legal {
  background: #fff;
  border-radius: 20px;
  margin-bottom: 60px;
  box-shadow: 0 1px 12px rgba(44,133,112,0.08);
}
.text-section ul {
  margin-bottom: 24px;
}
.text-section p {
  margin-bottom: 14px;
}

/* ========================= SERVICES SECTION ========================= */
.services {
  margin-bottom: 60px;
  background: linear-gradient(108deg, #f6f8f9 65%, #eaf5f1 100%);
  border-radius: 20px;
  box-shadow: 0 1px 14px rgba(44,133,112,0.07);
}
.services ul {
  margin-bottom: 24px;
}
.services li {
  margin-bottom: 18px;
  line-height: 1.44;
}
.services li .desc {
  color: #2c8570;
  font-size: 0.98rem;
  font-weight: 400;
  margin-left: 4px;
}
.accordion-details {
  margin-top: 30px;
  margin-bottom: 8px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 3px 20px rgba(22,66,91,0.10);
  padding: 18px 20px 18px 24px;
}

/* ========================= PRICING TABLES ========================= */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 18px;
  font-size: 1rem;
  background: #fdfefe;
  border-radius: 12px;
  box-shadow: 0 1px 8px rgba(44,133,112,0.05);
  overflow: hidden;
}
thead {
  background: #eaf5f1;
  color: #16425b;
  font-weight: 700;
}
th, td {
  padding: 14px 10px;
  text-align: left;
  border-bottom: 1px solid #e3e9eb;
}
th {
  font-size: 1.07rem;
}
tr:last-child td {
  border-bottom: 0;
}

/* ========================= TESTIMONIALS ========================= */
.testimonials {
  background: linear-gradient(108deg, #fbfcfc 60%, #eaf5f1 100%);
  border-radius: 20px;
  margin-bottom: 60px;
  box-shadow: 0 1px 10px rgba(44,133,112,0.07);
}
.testimonials .content-wrapper {
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  color: #16425b;
}
.testimonial-card blockquote {
  color: #16425b;
}
.testimonial-card span {
  color: #2c8570;
}

/* ========================= CONTACT SECTION ========================= */
.contact {
  background: #f6f8f9;
  border-radius: 18px;
  box-shadow: 0 1px 12px rgba(44,133,112,0.08);
  margin-bottom: 60px;
}
.contact .content-wrapper > p {
  margin-bottom: 12px;
  color: #22313f;
}
.map-block {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 8px rgba(22,66,91,0.08);
  padding: 18px;
  margin-top: 24px;
}

/* ========================= CTA SECTION ========================= */
.cta {
  background: linear-gradient(110deg, #2c8570 0%, #16425b 100%);
  border-radius: 20px;
  color: #fff;
  text-align: left;
  margin-bottom: 60px;
}
.cta h2, .cta h1, .cta p {
  color: #fff;
}
.cta .cta-btn {
  background: #fff;
  color: #16425b;
  box-shadow: 0 4px 18px rgba(44,133,112,0.17);
  margin-top: 14px;
}
.cta .cta-btn:hover, .cta .cta-btn:focus {
  background: #2c8570;
  color: #fff;
}

/* ========================= FOOTER ========================= */
footer {
  background: #16425b;
  color: #fff;
  padding: 44px 0 30px 0;
  margin-top: 30px;
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.footer-logo img {
  height: 38px;
  margin-bottom: 2px;
}
footer nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}
footer nav a {
  color: #a4ced6;
  margin: 0 5px;
  text-decoration: none;
  opacity: .88;
  transition: opacity 0.18s;
}
footer nav a:hover { opacity: 1; text-decoration: underline; }
footer p { color: #eaf5f1; font-size: 0.93rem; margin-top: 6px; }

/* ========================= MOBILE MENU ========================= */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 8px;
  margin-left: 18px;
  transition: background 0.22s;
  z-index: 52;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: rgba(44,133,112,0.18);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(22,66,91,0.95);
  z-index: 100;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.40s cubic-bezier(.7,.05,.29,.9);
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0%);
  pointer-events: all;
}
.mobile-menu-close {
  font-size: 2.2rem;
  background: none;
  border: none;
  color: #fff;
  padding: 18px 22px;
  align-self: flex-end;
  margin-right: 2vw;
  margin-top: 12px;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: rgba(44,133,112,0.14);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 40px 0 0 44px;
  gap: 32px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.3rem;
  font-family: 'Roboto Slab', serif;
  font-weight: 500;
  padding: 8px 0;
  margin-bottom: 2px;
  transition: color 0.21s;
  border-radius: 8px;
  min-width: 220px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: rgba(44,133,112,0.16);
  color: #2c8570;
}

body.mobile-menu-open {
  overflow: hidden;
}

/* ========================= COOKIE CONSENT ========================= */
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0;
  width: 100vw;
  background: linear-gradient(90deg, #fff 65%, #eaf5f1);
  border-top: 1px solid #e3e9eb;
  box-shadow: 0 -3px 16px 0 rgba(44,133,112,0.08);
  z-index: 9999;
  padding: 22px 16px 22px 24px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 24px;
  justify-content: space-between;
  transition: transform 0.31s cubic-bezier(.67,.02,.11,.97);
}
.cookie-banner.hide {
  transform: translateY(140%);
  pointer-events: none;
}
.cookie-banner__content {
  font-size: 1rem;
  color: #22313f;
  flex: 2 1 350px;
  margin-right: 18px;
}
.cookie-banner__actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.cookie-banner button {
  padding: 8px 20px;
  min-width: 120px;
  border: none;
  border-radius: 20px;
  font-size: 1rem;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  margin-left: 0;
  background: #2c8570;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(44,133,112,0.09);
  transition: background 0.18s;
}
.cookie-banner button.cookie-settings {
  background: #fff;
  color: #16425b;
  border: 1.5px solid #2c8570;
}
.cookie-banner button.cookie-settings:hover,
.cookie-banner button.cookie-settings:focus {
  background: #eaf5f1;
  color: #16425b;
}
.cookie-banner button.accept {
  background: linear-gradient(90deg, #2c8570 0%, #16425b 100%);
}
.cookie-banner button.accept:hover,
.cookie-banner button.accept:focus {
  background: #16425b;
}
.cookie-banner button.reject {
  background: #fff;
  color: #e53333;
  border: 1.5px solid #e53333;
}
.cookie-banner button.reject:hover,
.cookie-banner button.reject:focus {
  background: #fbeaea;
}

/* Cookie Preferences Modal */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  z-index: 10000;
  background: rgba(22,66,91,0.77);
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: auto;
  opacity: 1;
  transition: opacity 0.29s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal__dialog {
  background: #fff;
  border-radius: 18px;
  max-width: 440px;
  width: 88vw;
  padding: 36px 30px 32px 30px;
  box-shadow: 0 10px 60px rgba(22,66,91,0.18);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.cookie-modal__title {
  font-size: 1.4rem;
  font-family: 'Roboto Slab', serif;
  color: #16425b;
  margin-bottom: 8px;
}
.cookie-modal__categories label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  font-size: 1.06rem;
  color: #22313f;
  border-bottom: 1px solid #eaf5f1;
}
.cookie-modal__categories label:last-child {
  border-bottom: none;
}
.cookie-modal__toggle {
  appearance: none;
  width: 38px;
  height: 22px;
  background: #eaf5f1;
  border-radius: 16px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.18s;
  margin-left: 12px;
}
.cookie-modal__toggle:checked {
  background: #2c8570;
}
.cookie-modal__toggle::before {
  content: '';
  position: absolute;
  left: 3px; top: 3px;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.21s;
}
.cookie-modal__toggle:checked::before {
  transform: translateX(16px);
}
.cookie-modal__footer {
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: flex-end;
}
.cookie-modal__close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #2c8570;
  cursor: pointer;
  border-radius: 50%;
  padding: 4px 8px;
}
.cookie-modal__close:focus, .cookie-modal__close:hover {
  background: #f6f8f9;
}

/* ========================= MEDIA QUERIES ========================= */
@media (max-width: 1100px) {
  .container { padding-left: 16px; padding-right: 16px; }
  .section { padding: 32px 10px; }
  header nav { gap: 13px; }
}

@media (max-width: 900px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.7rem; }
  .section, .features, .about, .services, .testimonials, .legal, .contact, .cta { padding: 32px 10px; }
}
@media (max-width: 768px) {
  header .container { flex-direction: row; padding-left: 10px; padding-right: 10px; }
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .cta-btn {
    font-size: 1.07rem;
    padding: 10px 20px;
  }
  .content-wrapper { align-items: flex-start; }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .content-grid { flex-direction: column; gap: 16px; }
  .card-container { flex-direction: column; gap: 16px; }
  .section, .features, .about, .services, .testimonials, .legal, .contact, .cta {
    padding: 24px 6px;
    margin-bottom: 38px;
    border-radius: 13px;
  }
  .testimonial-card { max-width: 98vw; min-width: unset; }
  table thead { font-size: 0.92rem; }
  th, td { font-size: 0.98rem; padding: 9px 4px; }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 16px 8px 18px 12px;
  }
  .cookie-banner__actions { flex-direction: column; gap: 9px; }
}
@media (max-width: 480px) {
  h1 { font-size: 1.58rem; margin-bottom: 14px; }
  h2 { font-size: 1.15rem; margin-bottom: 12px; }
  footer { border-radius: 0; }
  .cookie-modal__dialog { padding: 18px 6vw; }
}

/* ========================= UTILITY CLASSES ========================= */
.mt-2 { margin-top: 12px !important; }
.mt-4 { margin-top: 24px !important; }
.mb-2 { margin-bottom: 12px !important; }
.mb-4 { margin-bottom: 24px !important; }
.text-center { text-align: center !important; }
.text-left { text-align: left !important; }
.d-flex { display: flex !important; }
.flex-col { flex-direction: column !important; }
.flex-row { flex-direction: row !important; }
.flex-center { align-items: center !important; justify-content: center !important; }
.gap-2 { gap: 12px !important; }
.gap-4 { gap: 24px !important; }

/* ========================= ACCESSIBILITY ========================= */
:focus {
  outline: 2px solid #2c8570 !important;
  outline-offset: 2px !important;
}

/* ========================= END OF STYLE ========================= */
