/* 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,
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;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  line-height: 1.6;
  background: #FAFAFA;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #2A2A2A;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
*, *:before, *:after {
  box-sizing: border-box;
}
a {
  color: #185682;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FFB03B;
}
ul, ol {
  padding-left: 1.5em;
  margin-bottom: 1em;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}
button {
  background: none;
  border: none;
  cursor: pointer;
}
table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 24px;
}
th, td {
  padding: 12px 8px;
  border-bottom: 1px solid #e0e0e0;
  text-align: left;
}
th {
  background: #185682;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  font-weight: bold;
}

/* BRAND FONT IMPORTS */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,800&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

/* COLOR VARIABLES */
:root {
  --primary: #185682;
  --secondary: #2A2A2A;
  --accent: #FFB03B;
  --bg: #FAFAFA;
  --white: #fff;
  --danger: #E32636;
  --success: #3CCB80;
  --shadow: 0 4px 16px rgba(24, 86, 130, 0.09), 0 1.5px 4px rgba(255,176,59,0.10);
}

/* GENERAL LAYOUTS */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--bg);
  border-radius: 18px;
  box-shadow: 0 6px 32px rgba(24,86,130,0.07);
  transition: box-shadow 0.3s;
}
section:last-child {
  margin-bottom: 0;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 2px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 12px;
  text-shadow: 0 2px 10px rgba(255,176,59,0.10);
  line-height: 1.12;
}
h2 {
  font-size: 2rem;
  margin-bottom: 12px;
  color: var(--accent);
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
  color: var(--primary);
  font-weight: 700;
}
h4 {
  font-size: 1.2rem;
}
.text-section {
  font-size: 1.06rem;
  color: var(--secondary);
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 16px;
}
.text-section a {
  color: var(--accent);
  text-decoration: underline;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
p {
  font-size: 1.07rem;
  margin-bottom: 12px;
  line-height: 1.6;
}
strong {
  color: var(--primary);
}

/* BUTTONS */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 32px;
  background: linear-gradient(90deg,var(--accent) 0%, var(--primary) 100%);
  color: var(--white);
  border-radius: 34px;
  font-size: 1.18rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  letter-spacing: 1px;
  border: none;
  box-shadow: 0 2px 12px rgba(24,86,130,0.10);
  text-shadow: 0 1px 6px rgba(24,86,130,0.06);
  margin-top: 12px;
  transition: background 0.18s, box-shadow 0.2s, transform 0.18s;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(90deg,var(--primary) 0%, var(--accent) 100%);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 24px rgba(255,176,59,0.17), 0 1.5px 4px rgba(24,86,130,0.13);
  color: var(--white);
}

.btn-secondary {
  padding: 12px 28px;
  background: var(--primary);
  color: var(--accent);
  border-radius: 28px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: bold;
  letter-spacing: 1px;
  border: 1.5px solid var(--primary);
  box-shadow: 0 2px 8px rgba(24,86,130,0.08);
  transition: background 0.15s, color 0.15s;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--accent);
  color: var(--primary);
  border: 1.5px solid var(--accent);
}

/* HEADER + NAVIGATION */
header {
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 100;
  box-shadow: 0 2px 12px rgba(24,86,130,0.06);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  gap: 24px;
}
header img {
  height: 46px;
  margin-right: 12px;
}
header nav {
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
}
header nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary);
  padding: 6px 12px;
  border-radius: 18px;
  transition: background 0.13s, color 0.15s;
}
header nav a:hover, header nav a:focus {
  background: var(--accent);
  color: var(--white);
}
header .btn-primary {
  margin: 0;
  font-size: 1.05rem;
  padding: 10px 22px;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 18px;
  z-index: 201;
  background: var(--primary);
  color: var(--white);
  font-size: 2.35rem;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(24,86,130,0.17);
  border: 2.5px solid var(--accent);
  transition: background 0.18s, box-shadow 0.18s;
}
.mobile-menu-toggle:active {
  background: var(--accent);
  color: var(--primary);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: var(--white);
  box-shadow: 0 0 64px rgba(24,86,130,0.18);
  z-index: 3000;
  transform: translateX(100vw);
  transition: transform 0.34s cubic-bezier(0.81,0,0.36,1);
  padding-top: 24px;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
  transition: transform 0.34s cubic-bezier(0.81,0,0.36,1);
}
.mobile-menu-close {
  display: flex;
  position: absolute;
  top: 26px;
  right: 18px;
  background: var(--accent);
  color: var(--primary);
  font-size: 2.15rem;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  z-index: 3100;
  transition: background 0.15s, color 0.15s;
  border: 2px solid var(--primary);
}
.mobile-menu-close:active {
  background: var(--primary);
  color: var(--accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  margin-top: 70px;
  padding: 0 26px 46px 34px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.22rem;
  color: var(--primary);
  padding: 11px 7px 11px 4px;
  border-radius: 24px;
  letter-spacing: 1px;
  line-height: 1.3;
  transition: background 0.14s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--accent);
  color: var(--white);
}

/* HERO & SECTION SPACING  (MANDATORY) */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* CARDS & FLEX GRIDS (MANDATORY FLEX SPACING) */
.card-container, .feature-grid, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 28px 24px;
  min-width: 260px;
  flex: 1 1 250px;
  transition: box-shadow 0.23s, transform 0.17s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 32px rgba(255,176,59,0.14);
  transform: translateY(-5px) scale(1.029);
  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;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--accent);
  color: #181818;
  border-radius: 20px;
  box-shadow: 0 1px 10px rgba(24,86,130,0.08);
  margin-bottom: 22px;
  border-left: 6px solid var(--primary);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.testimonial-content p {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  color: #181818;
  margin-bottom: 10px;
  text-shadow: 0 1px 4px rgba(255,255,255,0.11);
}
.testimonial-meta {
  font-size: 0.99rem;
  color: #232323;
  font-weight: 500;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--white);
  border-radius: 15px;
  box-shadow: var(--shadow);
  padding: 24px 20px 22px 20px;
  min-width: 210px;
  flex: 1 1 180px;
  transition: box-shadow 0.16s, transform 0.14s;
}
.feature-item img {
  height: 40px;
  width: 40px;
  margin-bottom: 6px;
}
.feature-item h3 {
  color: var(--accent);
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 8px 32px rgba(24,86,130,0.14);
  transform: translateY(-3px) scale(1.02);
  z-index: 2;
}

/* FAQ ACCORDION (STATIC, VIBRANT) */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.faq-item {
  background: linear-gradient(100deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--white);
  padding: 22px 20px 18px 20px;
  border-radius: 15px;
  box-shadow: 0 2px 15px rgba(24,86,130,0.08);
  transition: box-shadow 0.15s, transform 0.14s;
}
.faq-item h3 {
  color: var(--accent);
  margin-bottom: 8px;
}
.faq-item p {
  color: var(--white);
}
.faq-item:hover, .faq-item:focus-within {
  box-shadow: 0 8px 26px rgba(24,86,130,0.18);
  transform: scale(1.018);
}

/* TABLE STYLES */
table {
  background: var(--white);
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: var(--shadow);
}
thead tr {
  background: var(--primary);
}
tbody tr:hover {
  background: #fff9eb;
}
tr:nth-child(even) {
  background: #f8fafb;
}
th, td {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1.04rem;
}

/* FOOTER */
footer {
  background: var(--primary);
  padding: 36px 0 18px 0;
  color: var(--white);
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}
footer nav {
  display: flex;
  gap: 20px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
footer nav a {
  color: var(--accent);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: bold;
  transition: color 0.13s;
  font-size: 1.07rem;
  border-radius: 10px;
  padding: 3px 10px;
}
footer nav a:hover, footer nav a:focus {
  color: var(--white);
  background: var(--accent);
}
.footer-contact {
  color: #fff;
  font-size: 0.98rem;
  text-align: center;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  width: 98vw;
  max-width: 500px;
  z-index: 4500;
  background: var(--white);
  box-shadow: 0 -2px 24px rgba(24,86,130,0.12);
  border-radius: 16px 16px 0 0;
  padding: 30px 20px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  font-size: 1.01rem;
  color: var(--primary);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.29s cubic-bezier(0.8,0.19,0.42,1), opacity 0.18s;
}
.cookie-banner.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.cookie-banner h3 {
  margin-bottom: 6px;
  color: var(--accent);
  font-size: 1.2rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.cookie-banner-buttons {
  display: flex;
  gap: 14px;
  margin-top: 4px;
  flex-wrap: wrap;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  border-radius: 22px;
  border: none;
  padding: 10px 22px;
  font-size: 1.03rem;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.cookie-btn.accept {
  background: var(--success);
  color: var(--white);
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #2fa864;
}
.cookie-btn.reject {
  background: var(--danger);
  color: var(--white);
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #c71c29;
}
.cookie-btn.settings {
  background: var(--primary);
  color: var(--accent);
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--accent);
  color: var(--primary);
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(24,86,130,0.50);
  z-index: 4600;
  display: none;
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.visible {
  display: flex;
}
.cookie-modal {
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 8px 40px rgba(24,86,130,0.17);
  padding: 34px 30px 22px 30px;
  min-width: 300px;
  width: 98vw;
  max-width: 480px;
  color: var(--secondary);
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 1.04rem;
  position: relative;
}
.cookie-modal h2 {
  color: var(--primary);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.cookie-modal-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid #f0f0f0;
  padding: 8px 0 10px 0;
}
.cookie-modal-category label {
  font-weight: 600;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.02rem;
}
.cookie-modal input[type=checkbox] {
  accent-color: var(--accent);
  width: 20px;
  height: 20px;
  margin-right: 7px;
}
.cookie-modal-footer {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  margin-top: 10px;
}
/* Close Button */
.cookie-modal-close {
  position: absolute;
  right: 18px;
  top: 12px;
  background: var(--accent);
  color: var(--primary);
  width: 36px; height: 36px;
  font-size: 1.7rem;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center; justify-content: center;
  transition: background 0.14s,color 0.14s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--primary);
  color: var(--accent);
}

/* LIST & ICON ORDERING (SPACING) */
ul, ol {
  margin-bottom: 20px;
}
ul li, ol li {
  margin-bottom: 10px;
  font-size: 1.01rem;
  display: flex;
  gap: 9px;
  align-items: flex-start;
  line-height: 1.5;
}
ul li img {
  min-width: 26px;
  height: 26px;
  margin-top: 2px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1120px) {
  .container {
    max-width: 97vw;
    padding: 0 7px;
  }
}
@media (max-width: 900px) {
  .content-wrapper {
    gap: 22px;
  }
  .feature-grid,
  .card-container,
  .card-grid {
    gap: 17px;
  }
  .feature-item,
  .card {
    min-width: 170px;
    padding: 18px 13px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 4px;
  }
  header .container {
    padding: 12px 8px 12px 8px;
    flex-wrap: wrap;
    gap: 8px;
  }
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .section, section {
    padding: 26px 3vw;
    margin-bottom: 38px;
    border-radius: 13px;
  }
  .card,
  .feature-item {
    min-width: 120px;
    padding: 15px 9px;
    border-radius: 10px;
  }
  .testimonial-card {
    flex-direction: column;
    padding: 16px 8px 14px 13px;
    border-radius: 12px;
    margin-bottom: 18px;
  }
  .cookie-banner {
    max-width: 98vw;
    border-radius: 8px 8px 0 0;
    padding: 20px 8px 17px 12px;
    font-size: 0.98rem;
  }
  .cookie-modal{
    padding: 18px 6vw 14px 6vw;
    font-size: 0.99rem;
  }
  .footer-contact {
    font-size: 0.93rem;
  }
}
/* Ensure all double-column or text image sections stack on mobile */
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .content-grid {
    flex-direction: column;
    gap: 13px;
  }
}
@media (max-width: 430px) {
  h1 {
    font-size: 1.7rem;
  }
  h2 {
    font-size: 1.35rem;
  }
  h3 {
    font-size: 1.09rem;
  }
  .btn-primary {
    font-size: 0.93rem;
    padding: 9px 16px;
  }
}

/* UTILITY CLASSES */
.d-none { display: none !important; }
.d-flex { display: flex !important; }
.flex-wrap { flex-wrap: wrap !important; }
.flex-col { flex-direction: column !important; }
.align-center { align-items: center !important; }
.align-start { align-items: flex-start !important; }

/* MICRO-ANIMATIONS */
.card, .feature-item, .testimonial-card, .faq-item {
  transition: box-shadow 0.18s, transform 0.14s;
}
.btn-primary, .btn-secondary, .cookie-btn {
  transition: background 0.16s, color 0.16s, transform 0.15s;
}
.btn-primary:active, .btn-secondary:active, .cookie-btn:active {
  transform: scale(0.98);
}

/* VISUAL HIERARCHY - VIBRANT ENERGETIC */
h2, .feature-item h3, .faq-item h3 {
  text-transform: uppercase;
  letter-spacing: 2.6px;
  font-weight: 800;
}

/* SCROLLBARS */
::-webkit-scrollbar {
  width: 9px;
  background: #efefef;
}
::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 6px;
}

/* ENSURE NO OVERLAP */
.card, .testimonial-card, .faq-item, .feature-item {
  margin-bottom: 20px;
}

/* Z-INDEX STACKING FOR NAV & MOBILE MENU & BANNER */
header, .mobile-menu, .cookie-banner, .cookie-modal-overlay { z-index: 3100; }

/* CLARITY: Make hover and active states energetic */
.btn-primary, .btn-secondary, .cookie-btn {
  box-shadow: 0 1px 8px rgba(255,176,59,0.16);
}

/* END CSS */