/* 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;
}
body {
  line-height: 1;
  background: #F7FCFC;
  color: #183159;
}
/* Box sizing for all elements */
*, *::before, *::after {
  box-sizing: border-box;
}
/* Remove list styles on ul, ol elements */
ul, ol {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* CSS VARIABLES FOR COLORS */
:root {
  --color-primary: #183159;
  --color-secondary: #44B9B3;
  --color-accent: #F7FCFC;
  --color-electric-pink: #EF2678;
  --color-lime: #44FF00;
  --color-electric-blue: #2952FF;
  --color-neon-orange: #FF6B00;
  --font-display: 'Oswald', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
  --shadow-lg: 0 4px 24px rgba(24,49,89,0.12);
  --shadow-card: 0 2px 12px rgba(24,49,89,0.10);
  --radius: 14px;
}

/* TYPOGRAPHY */
body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--color-primary);
  background: var(--color-accent);
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-weight: 700;
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.75rem;
  line-height: 1.15;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  line-height: 1.2;
}
h3 {
  font-size: 1.325rem;
  margin-bottom: 12px;
  color: var(--color-secondary);
}
p, li {
  font-size: 1rem;
  color: var(--color-primary);
  line-height: 1.7;
}
strong {
  font-weight: 700;
}
section ul, section ol {
  margin-top: 8px;
  margin-bottom: 8px;
  padding-left: 0;
  color: var(--color-primary);
}

/* LAYOUT CONTAINERS */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  position: relative;
}

/* FLEXBOX GRIDS & STRUCTURE (NO GRID, ONLY FLEX) */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 24px;
}
.features-grid > div {
  background: #F7FCFC;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 24px 20px 20px 20px;
  flex: 1 1 220px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.25s, transform 0.22s;
}
.features-grid > div:hover {
  box-shadow: 0 6px 24px rgba(68,185,179,0.22);
  transform: translateY(-5px) scale(1.025);
  background: #fffbe9;
}
.card-container, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-card);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.22s, transform 0.22s;
}
.card:hover {
  box-shadow: 0 6px 22px rgba(239,38,120,0.10);
  transform: translateY(-6px);
}
.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-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 4px 14px rgba(24,49,89,0.10);
  min-width: 220px;
  max-width: 380px;
  margin-bottom: 20px;
  border-left: 6px solid var(--color-secondary);
  transition: border-color 0.2s, box-shadow 0.22s;
}
.testimonial-card:hover {
  border-left: 6px solid var(--color-electric-pink);
  box-shadow: 0 7px 22px rgba(239,38,120,0.11);
}
.testimonial-card p {
  color: #242540;
  font-size: 1.05rem;
  font-weight: 500;
}
.testimonial-card span {
  color: #3a506a;
  font-size: 0.97rem;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.contact-details ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 10px;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  color: #183159;
}
.contact-details img {
  width: 22px;
  height: 22px;
}

/* HEADER & NAVIGATION */
header {
  width: 100%;
  background: linear-gradient(90deg,#44B9B3 20%,#296CA3 100%);
  box-shadow: 0 2px 12px rgba(24,49,89,0.07);
  position: sticky;
  top: 0;
  z-index: 1000;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}
header a img {
  height: 48px;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
header nav a {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 8px;
  transition: background 0.21s, color 0.21s;
}
header nav a:hover,
header nav a:focus {
  background: var(--color-electric-pink);
  color: #fff;
}
.cta-button {
  background: linear-gradient(90deg, #44FF00 10%, #EF2678 100%);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-family: var(--font-display);
  padding: 12px 32px;
  font-size: 1.15rem;
  cursor: pointer;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(68,185,179,0.14);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-left: 18px;
  transition: background 0.19s, box-shadow 0.18s, transform 0.16s;
  position: relative;
  z-index: 2;
  display: inline-block;
}
.cta-button:hover {
  background: linear-gradient(90deg, #EF2678 10%, #44FF00 100%);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 24px rgba(239,38,120,0.18);
  color: #fff;
}
.mobile-menu-toggle {
  display: none;
}

/* FOOTER */
footer {
  background: #183159;
  color: #fff;
  padding: 32px 0 0 0;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 16px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
footer nav a {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.92;
  transition: color 0.18s;
}
footer nav a:hover {
  color: var(--color-lime);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-size: 1rem;
  color: #fff;
  align-items: flex-start;
  margin-top: 4px;
}
.footer-contact img {
  width: 36px; height: 36px; margin-bottom: 7px;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5000;
  background: rgba(24,49,89,0.98);
  color: #fff;
  padding: 30px 20px 22px 20px;
  box-shadow: 0 -2px 18px rgba(24,49,89,0.16);
  font-size: 1.05rem;
  font-family: var(--font-body);
  gap: 32px;
  flex-direction: row;
  transition: transform 0.5s cubic-bezier(.77,0,.18,1), opacity 0.32s;
}
.cookie-banner.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(200px);
}
.cookie-banner .cookie-controls {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-left: 32px;
}
.cookie-banner button {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.01rem;
  border: none;
  border-radius: 999px;
  padding: 9px 22px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(68,185,179,0.07);
  margin-right: 0;
  transition: background 0.19s, color 0.19s, transform 0.13s;
}
.cookie-banner .accept {
  background: #44FF00;
  color: #183159;
}
.cookie-banner .accept:hover {
  background: #EF2678;
  color: #fff;
  transform: scale(1.08);
}
.cookie-banner .reject {
  background: #EF2678;
  color: #fff;
}
.cookie-banner .reject:hover {
  background: #44B9B3;
  color: #fff;
  transform: scale(1.08);
}
.cookie-banner .settings {
  background: none;
  color: #fff;
  border: 2px solid #fff;
  padding: 8px 20px;
}
.cookie-banner .settings:hover {
  background: #44B9B3;
  color: #fff;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 7000;
  transform: translate(-50%,-50%) scale(1);
  background: #fff;
  color: #183159;
  border-radius: var(--radius);
  box-shadow: 0 8px 40px rgba(24,49,89,0.18);
  max-width: 380px;
  width: 90vw;
  padding: 34px 25px 27px 27px;
  opacity: 1;
  transition: opacity 0.34s;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: cookieModalIn 0.48s cubic-bezier(.46,1.49,.53,.96);
}
@keyframes cookieModalIn {
  from { transform: translate(-50%,-44%) scale(0.92); opacity: 0; }
  to   { transform: translate(-50%,-50%) scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.45rem;
  margin-bottom: 12px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.cookie-modal label {
  font-size: 1rem;
  color: var(--color-primary);
  font-weight: 500;
}
.cookie-modal .toggle-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}
.cookie-modal .toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-modal .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #eee;
  border-radius: 22px;
  transition: 0.3s;
}
.cookie-modal .toggle-switch input:checked + .slider {
  background: #44B9B3;
}
.cookie-modal .slider:before {
  position: absolute;
  content: "";
  height: 18px; width: 18px;
  left: 3px; bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: 0.25s;
}
.cookie-modal .toggle-switch input:checked + .slider:before {
  transform: translateX(20px);
  background: #183159;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 15px;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  right: 16px;
  top: 12px;
  background: none;
  color: #EF2678;
  border: none;
  font-size: 1.4rem;
  font-weight: 700;
  cursor: pointer;
}

/* MOBILE BURGER MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 95vw;
  max-width: 380px;
  background: #183159;
  color: #fff;
  z-index: 4000;
  transform: translateX(100%);
  transition: transform 0.44s cubic-bezier(.72,.02,.22,1);
  box-shadow: -2px 0 24px rgba(24,49,89,0.22);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px 22px 32px 24px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #44FF00;
  font-size: 2.1rem;
  font-weight: bold;
  border: none;
  align-self: flex-end;
  cursor: pointer;
  margin-bottom: 18px;
  padding: 0 8px;
  transition: color 0.18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #EF2678;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 600;
  padding: 10px 8px 10px 0;
  border-radius: 8px;
  width: 100%;
  transition: background 0.17s, color 0.15s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #44B9B3;
  color: #fff;
}

/* Spacing for Section & Main Structure */
main section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
main section:last-child {
  margin-bottom: 0;
}

/* CARDS, BUTTONS, BADGES */
.card {
  padding: 24px 20px;
}
.card h3 {
  margin-top: 12px;
}
.btn, .button, button, input[type='submit'] {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  border-radius: 999px;
  border: none;
  padding: 10px 26px;
  background: #44FF00;
  color: #183159;
  cursor: pointer;
  box-shadow: 0 2px 11px rgba(68,255,0,0.10);
  transition: background 0.18s, color 0.18s, transform 0.16s;
}
.btn:hover, .button:hover, button:hover, input[type='submit']:hover {
  background: #EF2678;
  color: #fff;
  transform: scale(1.04);
}
.badge {
  background: #44B9B3;
  color: #fff;
  border-radius: 999px;
  padding: 4px 16px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  margin-left: 10px;
}

/* GENERAL ELEMENTS */
.text-section {
  margin-bottom: 20px;
}
ol, ul {
  margin-left: 20px;
}
li + li {
  margin-top: 6px;
}
/* Align icon and text in contact details */
.contact-details img {
  flex-shrink: 0;
}

/* ANIMATION CLASSES */
.slide-in {
  animation: slideInRight 0.44s cubic-bezier(.72,.02,.22,1) both;
}
@keyframes slideInRight {
  from {
    transform: translateX(90vw);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.slide-out {
  animation: slideOutRight 0.44s cubic-bezier(.72,.02,.22,1) both;
}
@keyframes slideOutRight {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100vw);
    opacity: 0;
  }
}

/* TRANSITION EFFECTS */
a, button, .btn, .cta-button {
  transition: background 0.21s, color 0.16s, box-shadow 0.18s, transform 0.16s;
}

/* MEDIA QUERIES FOR RESPONSIVITY */
@media (max-width: 1150px) {
  .features-grid > div {
    min-width: 200px;
  }
}
@media (max-width: 950px) {
  .features-grid > div {
    min-width: 170px;
    padding: 20px 13px;
  }
  .container {
    max-width: 97vw;
  }
  footer .container {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
    padding-bottom: 8px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.36rem;
  }
  .container {
    padding-left: 11px;
    padding-right: 11px;
  }
  .features-grid,
  .testimonial-list,
  .card-container,
  .card-grid,
  .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  header .container {
    flex-direction: row;
    gap: 0;
    align-items: center;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  header nav {
    display: none;
  }
  .cta-button {
    margin-left: 8px;
    padding: 10px 17px;
    font-size: 1.03rem;
  }
  .mobile-menu-toggle {
    display: block;
    background: none;
    color: #fff;
    font-size: 2.1rem;
    border: none;
    padding: 5px 10px;
    margin-left: 12px;
    cursor: pointer;
    z-index: 1103;
    transition: color 0.23s;
  }
  .mobile-menu-toggle:hover,
  .mobile-menu-toggle:focus {
    color: #44FF00;
  }
  main section {
    padding: 22px 4px;
  }
  .cookie-banner .cookie-controls {
    flex-direction: column;
    gap: 8px;
    margin-left: 0;
    margin-top: 12px;
    align-items: stretch;
  }
}
@media (max-width: 560px) {
  .testimonial-card {
    max-width: 100%;
    min-width: 0;
    padding: 16px 13px;
  }
  .features-grid > div {
    padding: 12px 7px;
  }
  main section {
    margin-bottom: 30px;
    padding: 12px 2px;
  }
  .cookie-modal {
    padding: 22px 6px 17px 10px;
    max-width: 98vw;
  }
  .footer-contact {
    font-size: 0.94rem;
  }
}

/* --- PRINT FRIENDLY --- */
@media print {
  header, nav, footer, .mobile-menu, .cookie-banner, .cookie-modal { display: none !important; }
  main, section, .container, .content-wrapper { color: #000 !important; background: #fff !important; box-shadow: none !important; }
}
