/* ------------------
   CSS RESET / NORMALIZE
------------------ */
* { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  height: 100%;
}
body {
  background: #F3F5F7;
  color: #1a2433;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 400;
  min-height: 100vh;
  line-height: 1.6;
  letter-spacing: 0.01em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #235B8E;
  margin: 0 0 20px 0;
  line-height: 1.13;
}
h1 { font-size: 2.25rem; text-shadow: 2px 3px 0 #F3F5F7, 1px 3px 5px #acd7e3; letter-spacing: -0.5px; }
h2 { font-size: 1.5rem; margin-top: 0; }
h3 { font-size: 1.25rem; }
h4, h5, h6 { font-size: 1rem; }
p { margin-bottom: 20px; color: #22223b;}
a { color: #357D39; text-decoration: none; transition: color 0.18s; }
a:hover, a:focus { color: #235B8E; text-decoration: underline; outline: none; }
ul, ol {
  margin: 0 0 20px 0;
  padding-left: 24px;
}
ul li, ol li { margin-bottom: 8px; }
strong { color: #177C0F; font-weight: 700; }

/* ------------------
   FLEXBOX CONTAINERS
------------------ */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  background: #FFFFFF;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(35,91,142,0.07); /* creative, soft shadow */
  padding: 40px 32px;
  margin-bottom: 32px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 32px 0 rgba(23,124,15,0.07);
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
  padding: 28px 24px;
  min-width: 250px;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(35,91,142, 0.10);
  transform: translateY(-3px) scale(1.015);
}
.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: #F9FBFA;
  border-radius: 18px 28px 18px 28px;
  box-shadow: 0 3px 15px rgba(35,91,142,0.12);
  margin-bottom: 20px;
  font-style: italic;
  border-left: 5px solid #235b8e;
  transition: box-shadow 0.2s;
}
.testimonial-card p {
  color: #283246;
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.testimonial-card span {
  color: #357D39;
  font-weight: 600;
  font-style: normal;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.text-section {
  margin-bottom: 16px;
}
.text-section ul {
  margin-top: 8px;
}
.download-tools ul, .faq-preview ul {
  margin: 10px 0 0 0;
  padding-left: 0px;
  list-style: none;
}
.download-tools ul li, .faq-preview ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

/* ------------------
   HEADER & NAVIGATION
------------------ */
header {
  background: #235B8E;
  box-shadow: 0 2px 8px rgba(35,91,142,0.13);
  position: sticky;
  top: 0;
  z-index: 999;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding: 0 20px;
}
header a img, footer a img { height: 42px; vertical-align: middle; margin-right: 12px; }
header nav {
  display: flex;
  gap: 22px;
}
header nav a {
  color: #F3F5F7;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 4px 0;
  transition: color 0.16s;
}
header nav a:hover, header nav a:focus {
  color: #F3F5F7;
  text-shadow: 0 4px 14px #177C0F;
}
.cta-btn {
  background: #177C0F;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  border-radius: 24px;
  padding: 14px 32px;
  font-size: 1.13rem;
  font-weight: 700;
  cursor: pointer;
  margin-left: 26px;
  margin-right: 4px;
  box-shadow: 0 3px 20px rgba(23,124,15,0.12);
  transition: background 0.25s, box-shadow 0.22s, transform 0.15s;
  letter-spacing: 0.04em;
  text-align: center;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: #235B8E;
  color: #FFF;
  box-shadow: 0 8px 32px rgba(35,91,142,.14);
  transform: translateY(-2px) scale(1.04);
  outline: none;
}
.cta-btn.secondary {
  background: #FFFFFF;
  color: #235B8E;
  border: 2px solid #177C0F;
  box-shadow: 0 2px 6px rgba(35,91,142,0.08);
}
.cta-btn.secondary:hover, .cta-btn.secondary:focus {
  background: #F3F5F7;
  color: #177C0F;
  border-color: #235B8E;
}

/* Burger menu for mobile */
.mobile-menu-toggle {
  display: none;
  background: #fff;
  color: #235B8E;
  border: none;
  font-size: 2rem;
  border-radius: 8px;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  margin-left: 18px;
  box-shadow: 0 2px 10px rgba(35,91,142,.07);
  cursor: pointer;
  transition: background 0.2s, color 0.17s;
  z-index: 1402;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #177C0F;
}

/* ------------------
   MOBILE MENU OVERLAY
------------------ */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  width: 100vw;
  height: 100vh;
  background: #235B8E;
  color: #fff;
  z-index: 1500;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  opacity: 0;
  pointer-events: none;
  transition: transform .3s cubic-bezier(.8, .1, .27, 1), opacity .23s;
}
.mobile-menu.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: all;
}
.mobile-menu-close {
  background: none;
  color: #FFFFFF;
  border: none;
  font-size: 2.1rem;
  font-weight: 700;
  align-self: flex-end;
  margin: 26px 32px 0 0;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 1600;
}
.mobile-menu-close:hover {
  color: #FFD300;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 36px;
  padding-left: 42px;
  gap: 22px;
}
.mobile-nav a {
  color: #FFFFFF;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 8px 0;
  text-decoration: none;
  transition: color 0.15s, background 0.18s;
  border-radius: 8px;
  min-width: 180px;
}
.mobile-nav a:active, .mobile-nav a:focus { color: #FFD300; outline: none; }
.mobile-nav a:hover { color: #FF9191; background: rgba(255,255,255,0.14); }

/* Hide desktop nav on mobile, show burger */
@media (max-width: 960px) {
  header nav, .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 961px) {
  .mobile-menu {
    display: none!important;
  }
  header nav, .cta-btn {
    display: initial;
  }
}

/* ------------------
   HERO STYLES
------------------ */
.hero {
  background: linear-gradient(98deg, #F3F5F7 55%, #235B8E 180%);
  padding: 54px 0 36px 0;
  margin-bottom: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(35,91,142,0.08);
}
.hero .container { justify-content: center; }
.hero .content-wrapper {
  box-shadow: none;
  background: transparent;
  padding: 0 12px;
  text-align: center;
}
.hero h1 {
  color: #235B8E;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.55rem;
  margin-bottom: 12px;
  letter-spacing: -1px;
  line-height: 1.1;
  text-shadow: 0 8px 38px #AAC9E7;
}
.hero p {
  color: #357D39;
  font-size: 1.3rem;
  margin-bottom: 32px;
  font-family: 'Open Sans', Arial, sans-serif;
}
.hero .cta-btn { font-size: 1.18rem; margin: 0 auto 0 auto; display: inline-block; }

/* ------------------
   CARD & FEATURE LISTS
------------------ */
ul {
  list-style: disc outside;
}
ul > li {
  background: none;
  border-radius: 0;
  padding: 0;
  color: #263149;
  margin-bottom: 14px;
  position: relative;
}
ul > li img {
  width: 30px; height: 30px; margin-right: 12px; vertical-align: middle;
}

ol {
  list-style-type: decimal;
}
ol > li {
  margin-bottom: 14px;
  color: #263149;
  font-weight: 500;
  background: none;
  border-radius: 0;
  padding: 0;
  position: relative;
}
ol > li img {
  width: 27px; height: 27px; margin-right: 10px; vertical-align: middle;
}

.download-tools {
  margin: 18px 0 32px 0;
  padding: 22px;
  background: #e2f7ec;
  border-radius: 16px;
  box-shadow: 0 2px 13px rgba(23,124,15,0.06);
}
.faq-preview {
  padding: 20px 12px;
  background: #f8f5fb;
  border-radius: 12px;
  margin-top: 22px;
  box-shadow: 0 1px 8px rgba(35,91,142,0.04);
}

/* ------------------
   FOOTER
------------------ */
footer {
  background: #235B8E;
  color: #fff;
  padding: 32px 0 12px 0;
  margin-top: 48px;
}
footer .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
}
footer .content-wrapper {
  background: transparent;
  box-shadow: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  width: 100%;
  justify-content: space-between;
}
footer nav, .legal-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer nav a, .legal-links a {
  color: #F3F5F7;
  text-decoration: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 5px;
  transition: color 0.17s;
}
footer nav a:hover, .legal-links a:hover {
  color: #FFD300;
  text-decoration: underline;
}
footer img {
  height: 46px; margin-bottom: 8px;
}
footer p { color: #f4fafd; font-size: 1rem; }

/* ------------------
   COOKIE BANNER
------------------ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100%;
  background: #fff;
  color: #222;
  box-shadow: 0 -2px 18px rgba(23,91,142,0.07);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 26px 18px 20px 18px;
  gap: 15px;
  transition: transform .25s, opacity .2s;
}
.cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
}
.cookie-banner p {
  font-size: 1rem;
  color: #263149;
  margin-bottom: 8px;
}
.cookie-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 8px 22px;
  border-radius: 22px;
  background: #235B8E;
  color: #fff;
  border: none;
  margin-top: 4px;
  font-weight: 700;
  transition: background .17s, color .2s, box-shadow .2s;
  cursor: pointer;
  box-shadow: 0 1px 8px rgba(35,91,142,.10);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #177C0F;
  color: #fff;
  outline: none;
}
.cookie-btn.reject {
  background: #fff;
  color: #235B8E;
  border: 2px solid #235B8E;
}
.cookie-btn.reject:hover {
  background: #F3F5F7;
}
.cookie-btn.settings {
  background: #357D39;
}
.cookie-btn.settings:hover {
  background: #235B8E;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%) scale(0.95);
  background: #fff;
  color: #15191f;
  z-index: 2200;
  border-radius: 18px;
  box-shadow: 0 7px 44px rgba(35,91,142,0.21);
  min-width: 360px;
  max-width: 94vw;
  padding: 36px 28px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s, transform .22s;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%,-50%) scale(1);
}
.cookie-modal h3 {
  margin-bottom: 6px;
  color: #235B8E;
  font-size: 1.3rem;
}
.cookie-modal label, .cookie-modal .cookie-category {
  font-size: 1.07rem;
  margin-bottom: 6px;
  color: #235B8E;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Open Sans', Arial, sans-serif;
}
.cookie-modal .category-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 8px;
}
.cookie-modal input[type=checkbox], .cookie-modal input[type=radio] {
  accent-color: #235B8E;
  width: 18px; height: 18px;
  margin-right: 6px;
}
.cookie-modal .close-modal {
  background: none;
  border: none;
  color: #235B8E;
  font-size: 1.6rem;
  font-weight: 700;
  position: absolute;
  right: 13px; top: 8px;
  cursor: pointer;
  outline: none;
}
.cookie-modal .close-modal:hover {
  color: #CC4444;
}

/* ------------------
   ANIMATIONS & EFFECTS
------------------ */
.card, .testimonial-card, .cta-btn, .cookie-btn, .mobile-menu, .cookie-modal, .section, .feature-item {
  transition: box-shadow .18s, transform .19s, background .13s, color .15s;
}
.cta-btn, .cookie-btn {
  transition: background .19s, color .17s, transform .13s;
}

.card:active, .cta-btn:active {
  transform: scale(0.97);
}

/* --- Artistic Splashes --- */
.card::after, .feature-item::after {
  content: '';
  display: block;
  position: absolute;
  top: -12px; right: -14px;
  width: 32px; height: 32px;
  border-radius: 60% 50%;
  background: rgba(23,124,15, 0.09);
  pointer-events: none;
  z-index: 0;
}
.feature-item::after {
  left: auto; right: 0; bottom: -18px; top: unset;
}

.testimonial-card::before {
  content: '\201C';
  color: #d6e7f7;
  font-size: 3rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  position: absolute;
  left: 14px; top: 6px;
  z-index: 10;
  opacity: .4;
}

/* Artistic section underline */
h2 {
  position: relative;
  padding-bottom: 8px;
}
h2::after {
  content: '';
  display: block;
  height: 3px;
  width: 46px;
  background: #177C0F;
  border-radius: 4px;
  margin-top: 6px;
}

/* ------------------
   RESPONSIVE DESIGN
------------------ */
@media (max-width: 1200px) {
  .container {
    max-width: 98vw;
    padding: 0 8px;
  }
}
@media (max-width: 970px) {
  .content-wrapper {
    padding: 28px 8px;
  }
}
@media (max-width: 760px) {
  .container {
    padding: 0 2vw;
  }
  .content-wrapper {
    padding: 20px 2vw;
    margin-bottom: 22px;
  }
  footer .container, .footer .content-wrapper {
    flex-direction: column;
    gap: 16px;
  }
  .card-container, .content-grid, .feature-item, .testimonial-card, .text-image-section {
    flex-direction: column; gap: 18px;
  }
  .section {
    padding: 28px 0 24px 0;
  }
  .hero {
    padding: 36px 0 20px 0;
  }
}
@media (max-width: 690px) {
  h1 { font-size: 1.55rem;  }
  h2 { font-size: 1.09rem;  }
  .hero h1 { font-size: 1.48rem; }
  .hero p { font-size: 1.06rem; }
}
@media (max-width: 520px) {
  .content-wrapper { padding: 12px 2vw; border-radius: 16px; }
}

/* Responsive alignment for flex patterns */
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

/* ------------------
   ARTISTIC FONTS
------------------ */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700;900&family=Open+Sans:wght@400;600;700&display=swap');

/* ------------------
   MISC CLASSES
------------------ */
.emphasis {
  background: #F9FFE5;
  color: #177C0F;
  border-radius: 6px;
  padding: 2px 8px;
  font-weight: 600;
}

.text-center { text-align: center; }
.mt-32 { margin-top: 32px; }
.mb-24 { margin-bottom: 24px; }

.list-bullets {
  list-style: square inside;
  margin-left: 12px;
}

/* Inputs (if needed in future) */
input[type=email], input[type=text], textarea {
  font-family: 'Open Sans', Arial, sans-serif;
  border: 1.5px solid #C3D5F5;
  border-radius: 11px;
  padding: 11px 14px;
  font-size: 1rem;
  box-shadow: 0 1px 7px rgba(35,91,142,0.07);
  margin: 8px 0 18px 0;
  width: 95%;
  transition: border 0.2s;
}
input:focus, textarea:focus {
  outline: none;
  border-color: #235B8E;
}

button {
  font-family: inherit;
}

/* --- Scrollbar (subtle artistic) --- */
body::-webkit-scrollbar { width: 10px; background: #EFF3FA; }
body::-webkit-scrollbar-thumb { background: #A7C7E7; border-radius: 6px; }

/* Ensure all sections/cards have at least 20px between */
section, .content-wrapper, .card, .testimonial-card, .feature-item {
  margin-bottom: 20px;
}

/* Extra: visually clear interactive focus for a11y */
a:focus, button:focus, .cta-btn:focus, .cookie-btn:focus, .mobile-menu-close:focus {
  outline: 2px solid #FFD300;
  outline-offset: 1.5px;
}

/* End of style.css */
