/* ========================================================
   CSS RESET & NORMALIZATION (Mobile-first, box-sizing, etc.)
   ======================================================== */
html {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #F2F6FB;
  color: #183152;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
}
img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #183152;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #34A853;
  outline-offset: 2px;
}
strong {
  font-weight: bold;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 20px;
}
table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 18px 0 rgba(24,49,82,0.08);
}
th, td {
  text-align: left;
  padding: 14px 18px;
}
th {
  background: #183152;
  color: #fff;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
}
td {
  border-top: 1px solid #E3E9F4;
  font-size: 15px;
}

/* =======================
   BRAND FONTS & HEADINGS
   ======================= */
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 800;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 18px;
  color: #183152;
  letter-spacing: -0.01em;
}
h2 {
  font-size: 2rem;
  margin-bottom: 14px;
  color: #183152;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
  font-weight: 700;
  color: #183152;
}
p {
  margin-bottom: 16px;
  font-size: 1rem;
  color: #2e4062;
}

/* =======================
   CONTAINER & LAYOUT FLEX
   ======================= */
.container {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 32px 0 rgba(24,49,82,0.08);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 14px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 16px 0 rgba(24,49,82,0.09);
  margin-bottom: 20px;
  padding: 24px 20px;
  transition: transform 0.16s cubic-bezier(.5,1.6,.2,.8), box-shadow 0.18s;
  position: relative;
  flex: 1 1 270px;
}
.card:hover {
  transform: translateY(-4px) scale(1.015);
  box-shadow: 0 8px 36px 3px rgba(52,168,83,0.09), 0 1.5px 6px 0 rgba(221,50,82,0.05);
}

.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F2F6FB;
  margin-bottom: 20px;
  border-radius: 16px;
  box-shadow: 0 2px 8px 0 rgba(52,168,83,0.06);
  flex-direction: column;
  max-width: 600px;
}
.testimonial-card blockquote {
  font-size: 1.18rem;
  font-family: 'Montserrat', serif;
  font-weight: 600;
  color: #183152;
  margin-bottom: 6px;
  line-height: 1.5;
  quotes: "\201C" "\201D" "\2018" "\2019";
}
.testimonial-card p {
  margin-bottom: 0;
  font-size: 0.99rem;
  color: #26385b;
}

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

/* ===== FLEX MODIFIERS ===== */
@media (min-width: 720px) {
  .content-wrapper {
    flex-direction: row;
    gap: 36px;
  }
  .testimonial-card {
    flex-direction: row;
    max-width: 800px;
  }
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

/* ========================================================
   HEADER / NAVBAR / LOGO
   ======================================================== */
header {
  background: #183152;
  color: #fff;
  padding: 12px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 700;
  min-height: 64px;
}
.logo img {
  height: 38px;
}
nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 6px 12px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
nav a:hover, nav a:focus {
  background: #34A853;
  color: #fff;
}
.cta-button {
  background: #34A853;
  color: #fff;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 1.12rem;
  padding: 11px 26px;
  border-radius: 24px;
  letter-spacing: 0.02em;
  margin-left: 18px;
  box-shadow: 0 3px 12px 0 rgba(52,168,83,0.13);
  cursor: pointer;
  transition: background 0.16s, transform 0.18s, box-shadow 0.18s;
  outline: none;
  display: inline-block;
}
.cta-button:hover, .cta-button:focus {
  background: #183152;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 22px 0 rgba(24,49,82,0.16);
}
.cta-button.secondary {
  background: #fff;
  color: #183152;
  border: 2px solid #34A853;
  box-shadow: none;
}
.cta-button.secondary:hover, .cta-button.secondary:focus {
  background: #34A853;
  color: #fff;
}

/* =====================================
   HERO SECTION & CTA SECTIONS
   ===================================== */
.hero {
  background: linear-gradient(95deg, #1FE4A6 0%, #34A853 85%, #2B6CB0 100%);
  color: #fff;
  padding: 52px 0 52px 0;
  margin-bottom: 60px;
  border-radius: 0 0 44px 44px;
  box-shadow: 0 14px 54px 0 rgba(24,49,82,0.08);
}
.hero .container {
  justify-content: center;
  align-items: center;
}
.hero h1, .hero p {
  color: #fff;
  text-shadow: 0 3px 12px rgba(24,49,82,0.10);
}

.cta {
  background: #34A853;
  color: #fff;
  margin-bottom: 0 !important;
  border-radius: 22px;
  box-shadow: 0 3px 24px 0 rgba(52,168,83,0.12);
}
.cta h2, .cta p {
  color: #fff;
}

/* =====================
   FOOTER
   ===================== */
footer {
  background: #183152;
  color: #fff;
  padding: 34px 0 22px 0;
}
.footer-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.logo-footer img {
  height: 40px;
  margin-bottom: 2px;
}
.footer-section ul {
  display: flex;
  flex-direction: row;
  gap: 18px;
  list-style: none;
  padding-left: 0;
}
.footer-section ul li a {
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  opacity: 0.86;
  transition: color 0.18s, text-decoration 0.18s;
}
.footer-section ul li a:hover {
  color: #1FE4A6;
  text-decoration: underline;
}
.footer-section address {
  font-style: normal;
  font-size: 15px;
  color: #B7C6DF;
  text-align: center;
}
.footer-section address a {
  color: #1FE4A6;
  text-decoration: underline dotted;
  transition: color 0.2s;
}
.footer-section address a:hover {
  color: #34A853;
}

/* =====================
   MOBILE BURGER MENU
   ===================== */
.mobile-menu-toggle {
  background: #fff;
  color: #183152;
  border: none;
  font-size: 2.1rem;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 16px;
  right: 18px;
  z-index: 1201;
  box-shadow: 0 2px 10px 0 rgba(52,168,83,0.13);
  cursor: pointer;
  transition: background 0.14s, color 0.12s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #34A853;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #183152;
  color: #fff;
  z-index: 1200;
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(.85,.09,.42,1.15);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 48px 28px 32px 28px;
  min-height: 100vh;
  gap: 36px;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #fff;
  color: #183152;
  font-size: 1.6rem;
  border: none;
  border-radius: 50%;
  width: 40px; height: 40px;
  position: absolute;
  top: 16px; right: 18px;
  z-index: 1;
  box-shadow: 0 2px 8px 0 rgba(52,168,83,0.10);
  cursor: pointer;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 24px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 14px 0;
  border-bottom: 1.5px solid #26385b3a;
  transition: background 0.16s, color 0.16s;
  border-radius: 0;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #34A853;
  color: #fff;
}

@media (min-width: 1024px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}
@media (max-width: 1023px) {
  nav {
    display: none;
  }
  .cta-button {
    margin-left: 0;
  }
  header {
    padding-right: 56px;
  }
}

/* =====================
   SECTION FLEX SPACING
   ===================== */
section {
  margin-bottom: 60px;
  padding: 40px 0 0 0;
}
section:last-child {
  margin-bottom: 0;
}

/* =====================
   CARD, LIST, FEATURE STYLING
   ===================== */
ul li, ol li {
  margin-bottom: 12px;
  position: relative;
  font-size: 1rem;
}
ul li img, ol li img {
  height: 24px;
  width: 24px;
  vertical-align: middle;
  margin-right: 10px;
  margin-bottom: -5px;
}
ul li strong {
  color: #34A853;
  font-weight: 700;
}

/* ===========
   ACCORDION
   =========== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-accordion h3 {
  cursor: pointer;
  background: #E3E9F4;
  color: #183152;
  padding: 12px 22px;
  border-radius: 8px;
  font-size: 1.1rem;
  transition: background 0.14s;
  margin-bottom: 0;
}
.faq-accordion h3:hover {
  background: #34A85333;
}
.faq-accordion div {
  background: #FFF;
  padding: 10px 22px 16px 22px;
  color: #2e4062;
  border-bottom: 1px solid #E3E9F4;
  font-size: 1rem;
}

/* =====================
   RESPONSIVE TYPOGRAPHY
   ===================== */
@media (max-width: 600px) {
  h1 {
    font-size: 1.54rem;
  }
  h2 {
    font-size: 1.17rem;
  }
  h3 {
    font-size: 1.01rem;
  }
  .section {
    padding: 28px 6px;
  }
  .footer-section address, .footer-section ul li a {
    font-size: 14px;
  }
}

/* =====================
   BUTTONS & MICROINTERACTIONS
   ===================== */
button,
input[type=button],
input[type=submit] {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: none;
  border-radius: 22px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, transform 0.13s;
}
button:active {
  transform: scale(0.97);
}

/* =========================
   MICRO-EFFECTS & SHADOWS
   ========================= */
.card, .section, .testimonial-card, .cta, .hero {
  transition: box-shadow 0.18s, transform 0.11s;
  will-change: box-shadow, transform;
}

.card:focus-within,
.section:focus-within,
.testimonial-card:focus-within {
  box-shadow: 0 6px 18px 2px #1FE4A637;
}

/* ============================
   COOKIE CONSENT BANNER & MODAL
   ============================ */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  background: #183152;
  color: #fff;
  padding: 22px 10px 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  box-shadow: 0 -2px 18px 0 rgba(24,49,82,0.13);
  z-index: 2001;
  font-size: 1rem;
  transition: transform 0.25s;
}
.cookie-banner.hide {
  transform: translateY(130%);
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
}
.cookie-banner button {
  background: #34A853;
  color: #fff;
  padding: 10px 18px;
  font-size: 1rem;
  min-width: 115px;
  border-radius: 20px;
  font-weight: 800;
  border: none;
}
.cookie-banner button.secondary {
  background: #fff;
  color: #183152;
  border: 2px solid #34A853;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #183152;
  color: #fff;
}
.cookie-banner button.secondary:hover, .cookie-banner button.secondary:focus {
  background: #34A853;
  color: #fff;
}

.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(24,49,82,0.5);
  z-index: 2100;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: fadeInBg 0.38s;
}
@keyframes fadeInBg {
  0% { background: rgba(24,49,82,0); }
  100% { background: rgba(24,49,82,0.5); }
}
.cookie-modal-content {
  background: #fff;
  color: #183152;
  padding: 32px 22px 26px 22px;
  border-radius: 22px;
  max-width: 370px;
  min-width: 280px;
  box-shadow: 0 5px 28px 0 rgba(24,49,82,0.11);
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: slideUpModal 0.32s;
}
@keyframes slideUpModal {
  0% { transform: translateY(30px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-modal-content h3 {
  margin-bottom: 10px;
  font-size: 1.19rem;
  font-weight: 700;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
}
.cookie-category input[type=checkbox]:not(:disabled) {
  accent-color: #34A853;
}
.cookie-category input[disabled] {
  accent-color: #183152;
}
.cookie-category label {
  font-size: 1rem;
  color: #183152;
}
.cookie-modal-actions {
  margin-top: 8px;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}
.cookie-modal-actions button {
  min-width: 115px;
  padding: 9px 18px;
  border-radius: 18px;
}

@media (max-width: 500px) {
  .cookie-modal-content {
    max-width: 100vw;
    min-width: 0;
    padding: 16px 4vw 16px 4vw;
  }
}

/* ==============
   ACCESSIBILITY
   ============== */
:focus {
  outline: 2px solid #34A853;
  outline-offset: 3px;
}
::-moz-selection {
  background: #34A853;
  color: #fff;
}
::selection {
  background: #34A853;
  color: #fff;
}

/* ===========================
   ENERGETIC, BOLD COLORS - DYNAMIC
   =========================== */
/* Add flashy accent color backgrounds for high energy areas, bold highlights */
.hero, .content-grid .card, .cta, .cta-button {
  /* already has bold colors and shadows via respective selectors above */
}
h1, h2, h3 {
  /* Electric accent underline for some headlines */
  position: relative;
}
h1:after, h2:after, h3:after {
  content: '';
  display: block;
  width: 58px;
  height: 5px;
  background: #1FE4A6;
  border-radius: 3px;
  margin-top: 7px;
}

h1:after { width:88px; height:6px; background:#FFCF00; }

.section h2:after {
  width:38px; background: #34A853;
}

.hero h1:after, .cta h2:after { display: none; }

/* Make accent dots for lists: */
ul li::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #FF5A51;
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
}
ul li img:first-child {
  margin-left: -18px;
}

/* =============================================================
   UTILITIES
   ============================================================= */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-10 { margin-top: 10px !important; }
.mb-10 { margin-bottom: 10px !important; }
.mt-16 { margin-top: 16px !important; }
.mb-16 { margin-bottom: 16px !important; }
.gap-8 { gap: 8px !important; }
.gap-16 { gap: 16px !important; }
.text-center { text-align: center !important; }
.relative { position: relative; }
.flex { display: flex !important; }
.flex-col { flex-direction: column !important; }
.flex-row { flex-direction: row !important; }
.align-center { align-items: center !important; }
.align-start { align-items: flex-start !important; }

/* =================================
   MOBILE-FIRST RESPONSIVE FINE-TUNE
   ================================= */
@media (max-width: 768px) {
  .container { padding: 0 5px; }
  footer .footer-section { gap: 12px; }
  header { flex-direction: row; }
}

@media (max-width: 470px) {
  h1, h2, h3, h4 { word-break: break-word; }
  .hero, .cta, .section { padding: 18px 2px !important; }
}

/* ====================
   PRINT
   ==================== */
@media print {
  header, footer, .mobile-menu, .cta-button, .cookie-banner, .cookie-modal {
    display: none !important;
  }
  main, section, .container {
    box-shadow: none !important;
    background: #fff;
    color: #000;
    padding: 0 !important;
  }
}
