/* =====================
   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: 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.6;
  background: #fff;
  color: #243B4A;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #243B4A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #89B14C;
  outline: none;
}
ul, ol {
  padding-left: 1.5em;
  margin-bottom: 1.5em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #243B4A;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.1;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
}
p {
  margin-bottom: 16px;
}
strong, b {
  font-weight: 700;
}

/* ============
   CONTAINER
   ============ */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ==============
   HEADER + NAV
   ============== */
header {
  background: #fff;
  border-bottom: 1px solid #EDF1F3;
  box-shadow: 0 2px 12px 0 rgba(36,59,74,0.04);
  position: relative;
  z-index: 50;
}
header > .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: 0;
}
header a img {
  height: 44px;
}
nav {
  display: flex;
  gap: 32px;
  align-items: center;
}
nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.015em;
  color: #243B4A;
  padding: 4px 0;
  position: relative;
}
nav a:hover, nav a.active {
  color: #89B14C;
}
nav a.active::after {
  content: '';
  display: block;
  height: 2px;
  background: #89B14C;
  border-radius: 1px;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -2px;
}
.btn-primary {
  background: #89B14C;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 12px 28px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 1px 6px rgba(36,59,74,0.06);
  transition: background 0.18s, box-shadow 0.18s, color 0.18s;
  cursor: pointer;
  display: inline-block;
  margin-left: 20px;
  outline: none;
}
.btn-primary:hover, .btn-primary:focus {
  background: #243B4A;
  color: #fff;
  box-shadow: 0 2px 14px 0 rgba(36,59,74,0.08);
}

/* ================
   MOBILE NAV MENU
   ================ */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #243B4A;
  cursor: pointer;
  padding: 8px 16px;
  z-index: 101;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(36,59,74,0.98);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0 0 0 0;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(.62,.04,.35,1.27);
  z-index: 2000;
  visibility: hidden;
}
.mobile-menu.open {
  transform: translateX(0vw);
  visibility: visible;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.1rem;
  cursor: pointer;
  align-self: flex-end;
  margin: 24px 28px 8px 0;
  z-index: 2010;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
  margin-top: 40px;
  padding-left: 36px;
}
.mobile-nav a {
  font-size: 1.25rem;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 8px 0;
  transition: color 0.16s;
  border-radius: 3px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #89B14C;
  background: rgba(137,177,76,0.05);
}
@media (max-width: 1023px) {
  nav {
    display: none;
  }
  .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 1023px) {
  header > .container {
    gap: 0;
  }
}
@media (min-width:1024px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* ==============
   HERO SECTION
   ============== */
.hero {
  background: #F6F8F8;
  padding: 56px 0 56px 0;
  margin-bottom: 60px;
}
.hero .container {
  flex-direction: column;
  gap: 0;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 0;
  max-width: 680px;
}
.hero h1 {
  margin-bottom: 16px;
  font-size: 2.25rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
}
.hero p {
  color: #243B4A;
  margin-bottom: 28px;
  font-size: 1.17rem;
}
@media (max-width: 768px) {
  .hero {
    padding: 36px 0 32px 0;
    margin-bottom: 40px;
  }
  .hero h1 {
    font-size: 1.5rem;
  }
}

/* ============
   SECTIONS
   ============ */
section {
  background: #fff;
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 16px;
  box-shadow: 0 2px 18px 0 rgba(36,59,74,0.03);
}
.cta-section {
  background: #243B4A;
  color: #fff;
  border-radius: 14px;
  padding: 42px 20px;
  box-shadow: 0 4px 18px 0 rgba(36,59,74,0.06);
}
.cta-section h2, .cta-section p {
  color: #fff;
}
.cta-section .btn-primary {
  background: #89B14C;
  color: #fff;
  margin-left: 0;
}
.cta-section .btn-primary:hover, .cta-section .btn-primary:focus {
  background: #fff;
  color: #243B4A;
}
@media (max-width: 768px) {
  section, .cta-section {
    padding: 20px 10px;
    margin-bottom: 36px;
  }
  .cta-section {
    border-radius: 10px;
    padding: 32px 10px;
  }
}

/* ============
   FLEX LAYOUTS
   ============ */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 16px;
}
.feature-grid > div {
  flex: 1 1 210px;
  min-width: 210px;
  background: #F6F8F8;
  border-radius: 12px;
  box-shadow: 0 1px 6px rgba(36,59,74,0.05);
  padding: 24px 18px 18px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.feature-grid img {
  width: 30px;
  height: 30px;
  margin-bottom: 10px;
  opacity: 0.78;
}
@media (max-width: 900px) {
  .feature-grid {
    gap: 20px;
  }
}
@media (max-width: 640px) {
  .feature-grid {
    flex-direction: column;
    gap: 20px;
  }
  .feature-grid > div {
    min-width: unset;
    width: 100%;
    padding: 20px 12px 14px 12px;
  }
}

.step-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 22px;
}
.step-list li {
  background: #F6F8F8;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(36,59,74,0.03);
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1 1 220px;
  min-width: 220px;
  padding: 16px 16px;
  list-style: none;
}
.step-list li img {
  width: 28px;
  height: 28px;
  opacity: 0.82;
}
.step-list li span {
  font-size: 1rem;
  color: #243B4A;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
@media (max-width: 850px) {
  .step-list {
    gap: 16px;
  }
}
@media (max-width: 600px) {
  .step-list {
    flex-direction: column;
    gap: 18px;
  }
  .step-list li {
    min-width: unset;
    width: 100%;
    padding: 14px 8px;
  }
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 8px;
}
.text-section ul, .text-section ol {
  margin-bottom: 0;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 16px;
}
.article-feed {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 12px;
}
.article-feed li {
  background: #F6F8F8;
  border-radius: 8px;
  padding: 15px 18px;
  list-style: none;
  box-shadow: 0 1px 4px rgba(36,59,74,0.04);
}
.popular-topics ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 7px;
}
.popular-topics ul li {
  background: #FFF;
  border: 1px solid #EDF1F3;
  border-radius: 6px;
  padding: 7px 12px;
  font-size: 0.98rem;
  color: #243B4A;
  list-style: none;
}
.subsribe-cta {
  margin-top: 32px;
  background: #F6F8F8;
  border-radius: 8px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

/* ===============
   TESTIMONIALS
   =============== */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 24px;
  background: #F6F8F8;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(36,59,74,0.07);
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
.testimonial-card blockquote {
  border-left: 4px solid #89B14C;
  margin: 0 0 8px 0;
  padding-left: 16px;
  font-size: 1.08rem;
  color: #243B4A;
  background: none;
  line-height: 1.6;
  quotes: none;
  font-style: italic;
}
.testimonial-info {
  font-size: 0.99rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #606F7B;
  font-weight: 500;
  letter-spacing: 0.01em;
}
@media (max-width: 650px) {
  .testimonial-card {
    padding: 13px 8px;
    margin-bottom: 16px;
  }
  .testimonial-card blockquote {
    font-size: 1rem;
    padding-left: 10px;
  }
}

/* ===============
   CARD CONTAINER
   =============== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 7px rgba(36,59,74,0.06);
  padding: 24px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (max-width: 700px) {
  .card-container {
    gap: 12px;
  }
  .card {
    padding: 12px 7px;
    margin-bottom: 14px;
  }
}

/* ============
   CONTENT GRID
   ============ */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
@media (max-width: 900px) {
  .content-grid {
    flex-direction: column;
    gap: 18px;
  }
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

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

/* ===============
   TABLE STYLES
   =============== */
.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 18px 0 36px 0;
  background: #fff;
  box-shadow: 0 2px 10px rgba(36,59,74,0.03);
  border-radius: 12px;
  overflow: hidden;
}
.comparison-table th,
.comparison-table td {
  padding: 16px 14px;
  text-align: left;
  font-size: 1rem;
  line-height: 1.4;
  border-bottom: 1px solid #EDF1F3;
}
.comparison-table th {
  background: #F6F8F8;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: #243B4A;
  border-bottom: 2px solid #89B14C;
}
.comparison-table tr:last-child td {
  border-bottom: none;
}
@media (max-width: 800px) {
  .comparison-table, .comparison-table thead, .comparison-table tbody, .comparison-table th, .comparison-table td, .comparison-table tr {
    display: block;
  }
  .comparison-table tr {
    margin-bottom: 18px;
    background: #F6F8F8;
    border-radius: 8px;
    box-shadow: 0 1px 4px rgba(36,59,74,0.04);
  }
  .comparison-table td, .comparison-table th {
    padding: 8px 10px;
    border: none;
  }
  .comparison-table thead {
    display: none;
  }
  .comparison-table td:before {
    content: attr(data-label);
    font-weight: 600;
    color: #243B4A;
    display: block;
    margin-bottom: 3px;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  }
}

/* ============
   FILTERS
   ============ */
.filters {
  margin-top: 6px;
  margin-bottom: 0;
  color: #243B4A;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
.filters strong {
  color: #89B14C;
  font-weight: 700;
}

/* ===============
   FOOTER
   =============== */
footer {
  background: #F6F8F8;
  border-top: 1px solid #EDF1F3;
  margin-top: 60px;
  padding: 36px 0 22px 0;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 1rem;
}
.footer-nav a {
  color: #243B4A;
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #89B14C;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 0.97rem;
  color: #243B4A;
}
.footer-contact img {
  width: 16px;
  height: 16px;
  margin-right: 9px;
  vertical-align: middle;
  opacity: 0.69;
}
.footer-contact a {
  color: #243B4A;
}
.footer-logo {
  align-self: flex-end;
}
.footer-logo img {
  width: 56px;
  height: auto;
  opacity: 0.88;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .footer-logo {
    align-self: flex-start;
  }
}
@media (max-width: 600px) {
  footer {
    padding: 20px 0 14px 0;
    margin-top: 30px;
  }
  .footer-contact span {
    font-size: 0.95rem;
  }
}

/* =============
   GENERAL UI
   ============= */
::-webkit-input-placeholder { color: #969EA9; }
::-moz-placeholder { color: #969EA9; }
:-ms-input-placeholder { color: #969EA9; }
::placeholder { color: #969EA9; }
fieldset {
  border: none;
  margin: 0;
  padding: 0;
}
input, textarea, select, button {
  font-family: inherit;
  font-size: 1rem;
  color: #243B4A;
  outline: none;
}
button:focus, .btn-primary:focus {
  outline: 2px solid #89B14C;
}

/* =============
   INTERACTIONS
   ============= */
.btn-primary, .mobile-menu-toggle, .mobile-menu-close, a {
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, border 0.18s, opacity 0.17s;
}
.card, .testimonial-card, .article-feed li, .feature-grid > div, .step-list li {
  transition: box-shadow 0.18s, transform 0.16s;
}
.card:hover, .testimonial-card:hover, .feature-grid > div:hover, .step-list li:hover, .article-feed li:hover {
  box-shadow: 0 6px 18px rgba(36,59,74,0.10);
  transform: translateY(-3px) scale(1.012);
}

/* ===============
   COOKIE BANNER
   =============== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #243B4A;
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  padding: 24px 32px 20px 32px;
  z-index: 9999;
  box-shadow: 0 -2px 18px rgba(36,59,74,0.15);
  font-size: 1rem;
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.44s cubic-bezier(.48,.22,.2,1.13), opacity 0.32s cubic-bezier(.48,.22,.2,1.13);
}
.cookie-banner.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.cookie-banner .cookie-text {
  flex: 1 1 320px;
  margin-right: 22px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-banner .btn-consent {
  padding: 8px 22px;
  border-radius: 5px;
  border: none;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.16s, color 0.16s;
  margin-right: 0;
  box-shadow: 0 1px 4px rgba(36,59,74,0.10);
}
.cookie-banner .btn-accept {
  background: #89B14C;
  color: #fff;
}
.cookie-banner .btn-accept:hover { background: #6e933b; }
.cookie-banner .btn-reject {
  background: #fff;
  color: #243B4A;
  border: 1px solid #89B14C;
}
.cookie-banner .btn-reject:hover { background: #f1f6ec; }
.cookie-banner .btn-settings {
  background: #243B4A;
  color: #fff;
  border: 1px solid #fff;
}
.cookie-banner .btn-settings:hover { background: #313c44; }

@media (max-width: 540px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 10px 14px 10px;
    font-size: 0.99rem;
    gap: 14px;
  }
  .cookie-banner .cookie-actions {
    gap: 10px;
  }
  .cookie-banner .cookie-text {
    margin-right: 0;
  }
}

/* ===============
   COOKIE MODAL
   =============== */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(36,59,74,0.44);
  justify-content: center;
  align-items: center;
  transition: background 0.35s;
}
.cookie-modal-overlay.show {
  display: flex;
}
.cookie-modal {
  background: #fff;
  border-radius: 14px;
  max-width: 410px;
  min-width: 0;
  padding: 34px 30px 28px 30px;
  box-shadow: 0 8px 32px rgba(36,59,74,0.21);
  color: #243B4A;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: 0;
  animation: showCookieModal 0.34s cubic-bezier(.47,.17,.34,1.21);
}
@keyframes showCookieModal {
  0% { opacity: 0; transform: translateY(80px) scale(.95); }
  90% { opacity: 1; }
  100% { opacity: 1; transform: translateY(0) scale(1); }
}
.cookie-modal h3 {
  margin: 0 0 16px 0;
  font-size: 1.4rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #243B4A;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 22px;
}
.cookie-category-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.cookie-category-label {
  font-size: 1rem;
  font-weight: 600;
}
.cookie-switch {
  display: inline-flex;
  align-items: center;
}
.cookie-switch input[type="checkbox"] {
  width: 36px;
  height: 22px;
  accent-color: #89B14C;
  margin-right: 3px;
  cursor: pointer;
}
.cookie-switch input[type="checkbox"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.cookie-modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.cookie-modal .btn-accept {
  background: #89B14C;
  color: #fff;
  border: none;
}
.cookie-modal .btn-accept:hover { background: #6e933b; }
.cookie-modal .btn-reject {
  background: #fff;
  color: #243B4A;
  border: 1px solid #89B14C;
}
.cookie-modal .btn-reject:hover { background: #f1f6ec; }
.cookie-modal .btn-close {
  background: none;
  color: #243B4A;
  border: none;
  font-size: 1.7rem;
  position: absolute;
  top: 12px;
  right: 18px;
  cursor: pointer;
  opacity: 0.60;
  transition: opacity 0.12s;
}
.cookie-modal .btn-close:hover {
  opacity: 1;
}
@media (max-width: 540px) {
  .cookie-modal {
    padding: 24px 12px 18px 12px;
    max-width: 99vw;
  }
}

/* ============
   RESPONSIVE
   ============ */
@media (max-width: 1100px) {
  .container {
    max-width: 97vw;
  }
}
@media (max-width: 680px) {
  h1 {
    font-size: 1.45rem;
  }
  h2 {
    font-size: 1.1rem;
  }
}

/* ============
   UTILITIES
   ============ */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-24 { margin-bottom: 24px !important; }
.mb-36 { margin-bottom: 36px !important; }
.pb-0 { padding-bottom: 0 !important; }

/* ==============
   BRAND FONTS
   ============== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,600;0,700;0,800;1,600&family=Open+Sans:wght@400;600;700&display=swap');

/* ===============
   END OF CSS
   =============== */
