/* 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,
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, body { height: 100%; }
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  font-family: 'Roboto', Arial, sans-serif;
  color: #1B3557;
  background-color: #F8FCFF;
  min-height: 100%;
  scroll-behavior: smooth;
}
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea {
  font-family: inherit;
  font-size: inherit;
  box-sizing: border-box;
  outline: none;
}

/* BRAND COLORS & TYPE */
:root {
  --primary: #1B3557;
  --secondary: #87C6D3;
  --accent: #F7C873;
  --energy1: #007AFF;
  --energy2: #FF5100;
  --energy3: #25C29C;
  --white: #ffffff;
  --text: #1B3557;
  --text-on-secondary: #1B3557;
  --shadow: 0 3px 18px 0 rgba(27,53,87,0.10);
}

body {
  font-size: 16px;
  background: #F8FCFF;
  color: var(--text);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
  letter-spacing: -0.5px;
}
h1 { font-size: 2.5rem; margin-bottom: 16px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.5rem; margin-bottom: 12px; }
h4 { font-size: 1.1rem; margin-bottom: 10px; }
p, ul, ol, table, blockquote { margin-bottom: 12px; }
strong { color: var(--energy2); }

.main-nav a, .footer-nav a, .mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
  font-size: 1rem;
  text-transform: uppercase;
  transition: color 0.2s;
}

/* FLEXBOX LAYOUTS */
.container {
  width: 100%;
  max-width: 1180px;
  padding: 0 20px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: 18px;
  margin-bottom: 20px;
  padding: 28px 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.20s, box-shadow 0.20s;
}
.card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 5px 24px 0 rgba(130,206,222,0.19);
  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;
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: 18px;
  padding: 20px;
  margin-bottom: 20px;
  transition: box-shadow 0.16s, transform 0.15s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 18px 0 rgba(135,198,211,0.14);
  transform: translateY(-2px) scale(1.02);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.cta-group {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 12px;
}

/* HEADER & NAVBAR */
header {
  width: 100%;
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 6px 18px 0 rgba(27,53,87,0.06);
  position: relative;
  z-index: 20;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  padding: 0 20px;
  min-height: 72px;
}
header img {
  height: 50px;
  margin-right: 28px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  margin-left: 20px;
  align-items: center;
}
.main-nav a {
  color: var(--white);
  opacity: 0.94;
  position: relative;
  padding: 6px 0;
}
.main-nav a:hover, .main-nav a:focus {
  opacity: 1;
  color: var(--accent);
}
.cta-button {
  background: linear-gradient(90deg, var(--energy2), var(--energy3));
  color: var(--primary);
  font-weight: 700;
  border: none;
  border-radius: 32px;
  padding: 12px 28px;
  margin-left: 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  box-shadow: 0 3px 16px 0 rgba(247,200,115,0.14);
  cursor: pointer;
  font-size: 1.1rem;
  letter-spacing: 0.3px;
  transition: background 0.2s, box-shadow 0.18s, color 0.16s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
}
.cta-button:hover, .cta-button:focus {
  background: linear-gradient(90deg, var(--energy1), var(--accent));
  color: var(--white);
  box-shadow: 0 7px 24px 0 rgba(0,122,255,0.15);
}
button.mobile-menu-toggle {
  display: none;
  background: var(--accent);
  color: var(--primary);
  border: none;
  border-radius: 8px;
  font-size: 2rem;
  padding: 5px 16px 1px 16px;
  margin-left: 16px;
  cursor: pointer;
  transition: box-shadow 0.17s, background 0.17s, color 0.13s;
}
button.mobile-menu-toggle:focus, button.mobile-menu-toggle:hover {
  background: var(--energy2);
  color: var(--white);
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: var(--primary);
  z-index: 2000;
  padding: 48px 32px 32px 32px;
  transform: translateX(-100%);
  transition: transform 0.34s cubic-bezier(.73,0,.27,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 28px;
}
.mobile-menu.active {
  transform: translateX(0%);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--accent);
  cursor: pointer;
  margin-bottom: 8px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
  margin-top: 18px;
}
.mobile-nav a {
  color: var(--accent);
  font-size: 1.25rem;
  text-transform: uppercase;
  padding: 11px 0;
  border-radius: 6px;
  font-weight: 700;
  letter-spacing: 1px;
  background: transparent;
  transition: background 0.18s, color 0.21s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: var(--primary);
}

@media (max-width: 992px) {
  .main-nav {
    gap: 14px;
    margin-left: 10px;
  }
  .cta-button {
    margin-left: 15px;
    padding: 10px 16px;
    font-size: 1rem;
  }
}
@media (max-width: 850px) {
  .main-nav {
    display: none;
  }
  button.mobile-menu-toggle {
    display: block;
  }
}

/* HERO / GENERAL LAYOUT */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--white);
  border-radius: 22px;
  box-shadow: var(--shadow);
}
section:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  section {
    padding: 24px 8px;
    margin-bottom: 30px;
    border-radius: 13px;
  }
  .container { padding: 0 8px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.11rem; }
  .cta-button {
    font-size: 0.95rem;
    padding: 8px 14px;
  }
}

/* BUTTONS */
button, .cta-button {
  transition: background 0.22s, color 0.18s, box-shadow 0.16s, transform 0.13s;
}

/* CONTENT AND LISTS */
ul li, ol li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--primary);
  font-size: 1rem;
  margin-bottom: 11px;
  line-height: 1.6;
  padding-left: 0;
}
ul li img, ol li img {
  flex: none;
  width: 30px;
  height: 30px;
  margin-top: 2px;
}

.table-responsive {
  overflow-x: auto;
}
table {
  width: 100%;
  border-collapse: collapse;
  background: var(--secondary);
  color: var(--text-on-secondary);
  margin-bottom: 18px;
  border-radius: 10px;
  overflow: hidden;
  font-size: 1rem;
}
th, td {
  padding: 14px 10px;
  text-align: left;
  border-bottom: 2px solid var(--primary);
}
th {
  background: var(--primary);
  color: var(--white);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.95rem;
}
tr:last-child td {
  border-bottom: none;
}

/* TESTIMONIALS */
.testimonial-card {
  background: var(--secondary);
  color: var(--primary);
  margin-bottom: 24px;
  font-size: 1rem;
  box-shadow: 0 3px 12px 0 rgba(135,198,211,0.11);
  border-left: 6px solid var(--accent);
  transition: box-shadow 0.15s, border-color 0.15s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 21px 0 rgba(135,198,211,0.22);
  border-left: 6px solid var(--energy2);
}
.testimonial-card .star-rating {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-right: 16px;
}
.testimonial-card p {
  color: var(--primary);
  font-style: italic;
}
.testimonial-card span {
  margin-left: 18px;
  color: var(--primary);
}
.aggregate-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--primary);
  padding: 12px 20px;
  border-radius: 11px;
  margin-top: 22px;
  font-weight: bold;
}

/* FOOTER */
footer {
  background: var(--primary);
  color: var(--white);
  padding-top: 32px;
  padding-bottom: 0;
  box-shadow: 0 -2px 16px 0 rgba(135,198,211,0.10);
}
footer .container {
  flex-direction: column;
  gap: 12px;
}
.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.footer-main img {
  height: 36px;
  margin-right: 20px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 22px;
}
.footer-nav a {
  color: var(--accent);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--secondary);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 1rem;
}
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 11px;
}
.footer-contact img {
  width: 21px;
  height: 21px;
}
.footer-copy {
  text-align: center;
  font-size: 0.95rem;
  opacity: 0.72;
  padding: 15px 0 12px 0;
}

@media (max-width: 768px) {
  .footer-main { flex-direction: column; align-items: flex-start; gap: 10px; }
  .footer-nav { gap: 12px; }
}

/* CTA GROUP VARIANT */
.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.cta-group .cta-button {
  margin-left: 0;
  box-shadow: none;
}

/* TABLET AND MOBILE FLEX ADJUSTMENTS */
@media (max-width: 768px) {
  .container {
    padding: 0 4vw;
    max-width: 100vw;
  }
  .content-wrapper,
  .card-container,
  .content-grid,
  .text-image-section {
    flex-direction: column !important;
    gap: 14px;
  }
  .feature-item {
    gap: 10px;
  }
  .footer-contact {
    font-size: 0.98rem;
  }
}

/* MICRO-INTERACTIONS */
a, button, .cta-button, .main-nav a, .footer-nav a, .mobile-nav a {
  transition: color 0.2s, background 0.18s, box-shadow 0.18s, transform 0.15s;
}

/* ANIMATIONS */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(35px); }
  100% { opacity: 1; transform: translateY(0); }
}
section, .card, .cta-button, .testimonial-card, .footer-main {
  animation: fadeInUp 0.5s cubic-bezier(.20,.85,.32,1) both;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  width: 100vw;
  background: var(--accent);
  color: var(--primary);
  padding: 22px 16px 22px 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
  box-shadow: 0 -3px 14px 0 rgba(27,53,87,0.09);
  font-size: 1rem;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}
.cookie-banner p {
  flex: 1;
  margin-bottom: 0;
  font-weight: 600;
  color: var(--primary);
}
.cookie-actions {
  display: flex;
  gap: 14px;
  align-items: center;
}
.cookie-banner .cookie-btn {
  padding: 8px 18px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  background: var(--primary);
  color: var(--accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  transition: background 0.19s, color 0.15s;
  box-shadow: 0 2px 7px 0 rgba(27,53,87,0.08);
}
.cookie-banner .cookie-btn.accept {
  background: var(--energy3);
  color: var(--primary);
}
.cookie-banner .cookie-btn.reject {
  background: var(--energy2);
  color: var(--white);
}
.cookie-banner .cookie-btn.settings {
  background: var(--primary);
  color: var(--accent);
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  opacity: 0.9;
  transform: translateY(-2px) scale(1.04);
}
@media (max-width: 600px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 14px; font-size: 0.97rem; }
  .cookie-actions { gap: 8px; }
}
/* COOKIE SETTINGS MODAL */
.cookie-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(27,53,87,0.67);
  justify-content: center;
  align-items: center;
  animation: fadeInUp 0.40s both;
}
.cookie-modal.active { display: flex; }
.cookie-modal-content {
  background: var(--white);
  color: var(--primary);
  border-radius: 14px;
  padding: 36px 34px 30px 34px;
  min-width: 320px;
  max-width: 92vw;
  box-shadow: 0 8px 32px 0 rgba(27,53,87,0.19);
  animation: fadeInUp 0.36s both;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal-content h3 {
  margin-bottom: 10px;
  color: var(--primary);
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 9px;
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--energy1);
  width: 20px;
  height: 20px;
}
.cookie-modal-content .modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 8px;
}
.cookie-modal-content .cookie-btn {
  min-width: 90px;
}
.cookie-modal-close {
  background: none;
  border: none;
  color: var(--energy2);
  font-size: 1.75rem;
  cursor: pointer;
  align-self: flex-end;
  margin-bottom: 0;
}
@media (max-width: 480px) {
  .cookie-modal-content {
    padding: 22px 7vw 20px 7vw;
    min-width: 0;
  }
}

/* FORM ELEMENTS */
input[type="text"], input[type="email"], textarea {
  border: 2px solid var(--secondary);
  border-radius: 7px;
  padding: 11px 12px;
  background: var(--white);
  font-size: 1rem;
  transition: border 0.15s;
  margin-bottom: 18px;
}
input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
  border: 2px solid var(--energy1);
}

/* SEPARATORS */
hr {
  border: 0;
  border-top: 2px solid var(--secondary);
  margin: 30px 0;
}

/* SHADOWS/ROUNDED */
.card, .testimonial-card, section, .cookie-modal-content {
  border-radius: 18px;
  box-shadow: 0 2px 14px 0 rgba(27,53,87,0.07);
}

/* HIGH ENERGY DYNAMIC BACKGROUND */
section {
  border-left: 8px solid var(--energy1);
  box-shadow: 0 4px 34px 0 rgba(135,198,211,0.12);
  margin-bottom: 60px;
}
section:nth-child(2n) {
  border-left: 8px solid var(--energy2);
  background: #F3F9FC;
}

/* RESPONSIVE FLEX DYNAMIC */
.text-image-section, .content-grid {
  flex-direction: row;
}
@media (max-width: 768px) {
  .text-image-section, .content-grid {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}

/* SPACING BETWEEN CARDS & SECTIONS */
.card, .testimonial-card, section, .card-container, .content-grid, .content-wrapper {
  margin-bottom: 20px;
}

/* ACCESSORY: STAR ICON SPACING */
.star-rating img {
  width: 25px;
  height: 25px;
}

/* FAQ Styles */
ul li strong {
  color: var(--energy2);
  margin-right: 4px;
}

/* Utility Spacing */
.mt-16 { margin-top: 16px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mt-24 { margin-top: 24px; }

/* Hide elements visually but keep for screen readers */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* END OF CSS */
