/* ---------------------
  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, 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, main, 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 {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body, html {
  width: 100%;
  min-height: 100%;
  background: #F5F5F5;
  color: #212529;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}
a {
  color: #127882;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #E94F92;
  outline: none;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
ul, ol {
  margin-left: 1.5em;
  margin-bottom: 16px;
}
li:not(:last-child) {
  margin-bottom: 8px;
}
table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 32px;
}
th, td {
  padding: 12px 16px;
}
th {
  background: #127882;
  color: #fff;
  font-weight: 700;
}
td {
  background: #fff;
  color: #127882;
}

/* --------------
  Brand Colors
---------------*/
:root {
  --color-primary: #127882;
  --color-secondary: #E9B2BC;
  --color-accent: #F5F5F5;
  --color-dark: #212529;
  --color-light: #fff;
  --color-electric-1: #E94F92;
  --color-electric-2: #2AF5F8;
  --color-shadow: rgba(41, 76, 102, 0.08);
}

/* -------------
 Typography
--------------*/
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #127882;
  margin-bottom: 12px;
}
h1 {
  font-size: 2.8rem;
  line-height: 1.1;
  margin-bottom: 18px;
  text-shadow: 0 3px 16px rgba(233,79,146,0.08), 0 2px 0 #E94F92;
}
h2 {
  font-size: 2.2rem;
  margin-bottom: 16px;
  color: #E94F92;
  text-shadow: 0 1.5px 0 var(--color-electric-2);
}
h3 {
  font-size: 1.4rem;
  color: #127882;
}
h4, h5, h6 {
  font-size: 1.1rem;
  color: #127882;
  margin-bottom: 8px;
}
p, blockquote {
  font-size: 1.08rem;
  margin-bottom: 14px;
  color: #212529;
}
blockquote {
  font-style: italic;
  color: #127882;
  background: #F5F5F5;
  border-left: 6px solid #E94F92;
  padding: 18px 24px;
  margin-bottom: 12px;
  border-radius: 16px 0 0 16px;
}
.tagline {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1.28rem;
  font-weight: 500;
  color: #E94F92;
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}
.note, .faq-list li {
  font-size: 1rem;
  color: #127882;
}

/* Display classes */
.display-1 { font-size: 2.8rem; font-weight: 900; letter-spacing: .02em; }
.display-2 { font-size: 2rem; font-weight: 800; letter-spacing: .01em; }
.display-3 { font-size: 1.59rem; font-weight: 700; letter-spacing: .01em; }

@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.48rem; }
  h3 { font-size: 1.18rem; }
  .tagline { font-size: 1.02rem; }
}

/* --------------
  Utility & Base
---------------*/
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}
.content-wrapper {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-accent);
  border-radius: 32px;
  box-shadow: 0 6px 32px var(--color-shadow);
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ----------------------------------
  Navigation & Header (Flexbox Only)
-----------------------------------*/
header {
  width: 100%;
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 4px 24px var(--color-shadow);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 12px;
}
.logo img {
  height: 54px;
  width: auto;
  display: block;
  filter: drop-shadow(0 4px 16px rgba(41,120,130,0.11));
  transition: transform 0.2s;
}
.logo:hover img, .logo:focus img {
  transform: scale(1.08) rotate(-4deg);
}
.main-nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .05em;
  padding: 4px 10px;
  transition: color .2s, background .2s;
  border-radius: 12px;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--color-secondary);
  background: rgba(255,255,255,0.12);
}
.btn-primary, .btn-secondary {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: none;
  border-radius: 24px;
  padding: 14px 32px;
  font-size: 1.1rem;
  cursor: pointer;
  letter-spacing: .03em;
  box-shadow: 0 2px 14px 0 rgba(41,120,130,0.08);
  transition: background .2s, color .18s, box-shadow .2s, transform .18s;
}
.btn-primary {
  background: linear-gradient(90deg, #E94F92 58%, #127882 94%);
  color: #fff;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(90deg, #127882 38%, #E94F92 85%);
  color: #fff;
  transform: translateY(-2px) scale(1.035);
  box-shadow: 0 6px 28px var(--color-shadow);
}
.btn-secondary {
  background: #fff;
  color: #127882;
  border: 2px solid #E94F92;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #E9B2BC;
  color: #127882;
  border-color: #127882;
  transform: translateY(-2px) scale(1.035);
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #fff;
  cursor: pointer;
  padding: 10px 16px;
  transition: background .18s;
  border-radius: 8px;
  z-index: 1002;
}
.mobile-menu-toggle:focus {
  background: rgba(0,0,0,0.07);
  outline: 2px solid #E94F92;
}

@media (max-width: 1020px) {
  .main-nav {
    gap: 13px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 5px;
  }
}
@media (max-width: 768px) {
  .main-nav, .btn-primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ---------------------------
  Mobile menu (Full overlay)
----------------------------*/
.mobile-menu {
  position: fixed;
  z-index: 9999;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(106deg, #E9B2BC 76%, #127882 100%);
  background-color: #E9B2BC; /* fallback */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(-100%);
  transition: transform .38s cubic-bezier(.71,.1,.43,1.18);
  box-shadow: 0 6px 64px rgba(41,120,130,0.17);
  padding: 0;
  height: 100%;
  width: 100%;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.4rem;
  color: #127882;
  padding: 18px 20px 10px 20px;
  align-self: flex-end;
  cursor: pointer;
  transition: background .18s;
  border-radius: 8px;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #fff1fa;
  color: #E94F92;
  outline: 2px solid #E94F92;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 27px;
  width: 100%;
  margin-top: 18px;
  align-items: flex-start;
}
.mobile-nav a {
  font-size: 1.35rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #127882;
  font-weight: 700;
  padding: 10px 25px;
  border-radius: 14px;
  transition: background .18s, color .19s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E94F92;
  color: #fff;
}
@media (min-width: 769px) {
  .mobile-menu {
    display: none !important;
  }
}

/* ----------------------
  Section & Layout Spacing
-------------------------*/
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 14px 0 var(--color-shadow);
  padding: 24px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow .17s, transform .16s;
  min-width: 270px;
  flex: 1 1 270px;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 38px var(--color-electric-2);
  transform: translateY(-4px) scale(1.027);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.service-cards, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.service-card {
  background: #fff;
  box-shadow: 0 2px 14px var(--color-shadow);
  border-radius: 20px;
  padding: 26px 18px;
  min-width: 210px;
  flex: 1 1 230px;
  margin-bottom: 20px;
  transition: transform .17s, box-shadow .19s;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 2px solid #E9B2BC;
}
.service-card:hover, .service-card:focus-within {
  box-shadow: 0 12px 30px #E9B2BC;
  border-color: #E94F92;
  transform: scale(1.045) rotate(-1.5deg);
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 12px;
  align-items: flex-start;
  list-style: none;
}
.feature-grid li {
  background: #fff;
  color: #127882;
  border-radius: 18px;
  box-shadow: 0 2px 8px var(--color-shadow);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.07rem;
  min-width: 210px;
  transition: box-shadow .15s, background .13s, transform .12s;
}
.feature-grid li:hover {
  background: #E9B2BC;
  box-shadow: 0 8px 24px #e94f9240;
  transform: scale(1.038);
}
.feature-grid img {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

@media (max-width: 1100px) {
  .service-cards, .service-list, .feature-grid {
    gap: 12px;
  }
}
@media (max-width: 780px) {
  .service-cards, .service-list, .feature-grid {
    flex-direction: column;
  }
  .card-container, .content-grid {
    flex-direction: column;
  }
}

/* --------------------
  Testimonial cards
----------------------*/
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-left: 7px solid #E94F92;
  border-radius: 17px 28px 28px 17px;
  box-shadow: 0 2px 12px var(--color-shadow);
  margin-bottom: 20px;
  min-width: 200px;
  flex: 1 1 285px;
  transition: box-shadow .14s, border-color .16s;
}
.testimonial-card blockquote {
  margin: 0;
  background: none;
  border: none;
  padding: 0;
  color: #127882;
  font-size: 1.07rem;
  font-style: italic;
}
.testimonial-card .testimonial-meta {
  margin-left: 8px;
  color: #E94F92;
  font-size: .98rem;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
}
.testimonial-card:hover {
  box-shadow: 0 8px 36px #12788222;
  border-color: #2AF5F8;
  transform: scale(1.035) rotate(0.5deg);
}
@media (max-width: 700px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* --------------------
  Pricing table
----------------------*/
.pricing-table {
  margin-bottom: 28px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(41,120,130,.07);
  font-size: 1.04rem;
}
.pricing-table th, .pricing-table td {
  border-bottom: 1px solid #E9B2BC;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}
.pricing-table tbody tr:hover td {
  background: #E9B2BC;
  color: #127882;
  transition: background .12s, color .14s;
}

/* -----------------------
 FAQ and OL/UL Styling
-------------------------*/
.faq-list {
  padding-left: 12px;
  margin-bottom: 24px;
}
.faq-list li {
  margin-bottom: 14px;
}
.text-section ul, .text-section ol {
  margin-left: 28px;
}
.text-section li {
  font-size: 1rem;
  color: #127882;
}
.text-section ol {
  list-style: decimal inside;
}
.text-section ul {
  list-style: disc inside;
}

/* ---------------------
  Footer
-----------------------*/
footer {
  width: 100%;
  background: #127882;
  color: #fff;
  padding: 30px 0 16px 0;
  margin-top: 28px;
  box-shadow: 0 -2px 16px var(--color-shadow);
}
.footer-nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  margin-bottom: 13px;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  transition: color .15s, text-decoration .12s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #E94F92;
  text-decoration: underline;
}
.footer-branding {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 4px;
  opacity: 0.92;
}
.footer-branding img {
  height: 36px;
  width: auto;
  margin-bottom: 7px;
}
.footer-branding p {
  color: #fff;
  font-size: .95rem;
  opacity: 0.95;
}

/* ------------------------
 Buttons & CTA micro-interaction
-------------------------*/
.btn-primary:active, .btn-secondary:active, .mobile-menu-toggle:active {
  transform: scale(0.97);
}

/* Hide outline on mouse but show on keyboard */
:focus:not(:focus-visible) {
  outline: none;
}
:focus-visible {
  outline: 2px solid #E94F92;
  outline-offset: 2px;
}

/* ------------------------
 Cookie Consent Banner
------------------------*/
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  background: linear-gradient(90deg, #127882 60%, #E94F92 100%);
  color: #fff;
  padding: 21px 24px 18px 24px;
  box-shadow: 0 -2px 32px #12788240;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  animation: cookie-slide-up .6s cubic-bezier(.28,.54,.46,.99);
}
@keyframes cookie-slide-up {
  0% { transform: translateY(70px); opacity: 0; }
  98% { transform: translateY(-2px); opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 0;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 14px;
  margin-top: 0px;
  flex-wrap: wrap;
}
.cookie-banner button {
  border: none;
  border-radius: 24px;
  padding: 7px 26px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .18s, color .13s, box-shadow .17s;
  margin-bottom: 0;
}
.cookie-banner .accept {
  background: #2AF5F8;
  color: #127882;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #E94F92;
  color: #fff;
}
.cookie-banner .reject {
  background: #fff;
  color: #E94F92;
  border: 2px solid #E94F92;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #E94F92;
  color: #fff;
}
.cookie-banner .settings {
  background: #127882;
  color: #fff;
  border: 1.5px solid #2AF5F8; 
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #fff;
  color: #127882;
  border-color: #127882;
}

/* ------ Cookie Modal -------*/
.cookie-modal-overlay {
  position: fixed;
  z-index: 10001;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(41, 76, 130, .37);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadein .26s;
}
@keyframes fadein {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #127882;
  border-radius: 18px;
  box-shadow: 0 8px 48px #12788244;
  padding: 38px 28px 24px 28px;
  min-width: 320px;
  max-width: 96vw;
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: modal-pop .45s cubic-bezier(.28,1.3,.44,1.04);
  position: relative;
}
@keyframes modal-pop {
  0% { transform: scale(0.93) translateY(32px); opacity: 0; }
  90% { transform: scale(1.05) translateY(-2px);}
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.26rem;
  color: #E94F92;
  margin-bottom: 6px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
}
.cookie-category label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #127882;
}
.cookie-toggle {
  width: 38px; height: 20px;
  background: #E9B2BC;
  border-radius: 14px;
  position: relative;
  border: none;
  appearance: none;
  cursor: pointer;
  outline: none;
  transition: background .16s;
}
.cookie-toggle:checked {
  background: #2AF5F8;
}
.cookie-toggle:before {
  content: '';
  position: absolute;
  left: 2px; top: 2px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 6px #12788233;
  transition: transform .16s;
}
.cookie-toggle:checked:before {
  transform: translateX(18px);
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 12px;
}
.cookie-modal .close-modal {
  position: absolute;
  right: 18px;
  top: 16px;
  background: none;
  border: none;
  font-size: 1.3rem;
  color: #E94F92;
  cursor: pointer;
  opacity: 0.69;
  transition: opacity .17s;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  opacity: 1;
}

/* ------------------
  Misc & Utilities
--------------------*/
::-webkit-scrollbar {
  width: 9px;
  background: #E9B2BC;
}
::-webkit-scrollbar-thumb {
  background: #127882;
  border-radius: 6px;
}
::-webkit-scrollbar-thumb:hover {
  background: #E94F92;
}
::selection {
  background: #E9B2BC;
  color: #127882;
}

strong {
  font-weight: 700;
  color: #E94F92;
}

/* --------------------
 Responsive Queries
----------------------*/
@media (max-width: 900px) {
  .container {
    max-width: 94vw;
  }
  .section { padding: 30px 10px; }
}
@media (max-width: 600px) {
  .container {
    padding-left: 7px;
    padding-right: 7px;
  }
  .section {
    padding: 26px 6px;
    margin-bottom: 36px;
  }
  footer, header {
    padding-left: 0;
    padding-right: 0;
  }
}

/* --------- Animations and Effects ----------*/
.btn-primary, .btn-secondary, .service-card, .card, .feature-grid li, .testimonial-card {
  transition: box-shadow 0.2s, background 0.19s, color 0.14s, border-color 0.14s, transform 0.16s;
}

/* -------------------
  Accessibility utils
----------------------*/
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* -------------------
  High contrast for reviews
--------------------------*/
.testimonial-card {
  background: #fff;
  color: #127882;
}
.testimonial-card blockquote, .testimonial-card .testimonial-meta {
  color: #127882;
}

@media (max-width: 480px) {
  .service-card, .testimonial-card, .card, .feature-grid li {
    padding: 16px 8px;
  }
  .tagline { font-size: .98rem; }
}
