/* RESET & BASE ------------------------------------------------------ */
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, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-size: 100%;
  scroll-behavior: smooth;
}
body {
  background: #fff;
  color: #17406A;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg {
  max-width: 100%;
  display: block;
}
button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border: none;
  background: none;
  outline: none;
  box-sizing: border-box;
}
a {
  color: #007A9B;
  text-decoration: none;
  transition: color .3s;
}
a:hover, a:focus {
  color: #005269;
  text-decoration: underline;
}
ul, ol {
  list-style: none;
}

/*! BRAND TYPOGRAPHY -------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.2px;
  color: #17406A;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.22;
  margin-bottom: 28px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}
h4, h5, h6 { font-size: 1rem; }

p, li, td, th {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #243C5A;
}
blockquote {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1.15rem;
  font-style: italic;
  padding-left: 24px;
  border-left: 4px solid #007A9B;
  margin: 18px 0;
  color: #20687C;
}

/* Layout containers -------------------------------------------------- */
.container {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* FLEXBOX PATTERNS: All content layouts use only flexbox (no grid!) */
.card-container, .card-grid, .service-cards, .testimonials-row, .testimonial-carousel, .review-snippets {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
  justify-content: flex-start;
  align-items: stretch;
}
.card, .service-card, .testimonial-card {
  background: #F6FBFF;
  border-radius: 18px;
  box-shadow: 0 5px 18px rgba(23,64,106,0.08);
  margin-bottom: 20px;
  padding: 24px 26px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  min-width: 240px;
  max-width: 400px;
  transition: box-shadow .23s, transform .24s;
}
.card:hover, .service-card:hover, .testimonial-card:hover {
  box-shadow: 0 10px 30px rgba(0,122,155,0.17);
  transform: translateY(-3px) scale(1.02) rotate(-1deg);
}
.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: #fff;
  border-radius: 13px;
  box-shadow: 0 3px 14px rgba(37,92,129,0.11);
  padding: 20px;
  min-width: 260px;
  max-width: 460px;
  flex-direction: column;
  border-left: 6px solid #007A9B;
  margin-bottom: 20px;
}
.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 14px;
}
.feature-list li {
  background: #E0E5EB;
  border-radius: 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 18px;
  min-width: 260px;
  max-width: 490px;
  padding: 22px 27px 22px 18px;
  flex: 1 1 300px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 16px;
  align-items: flex-start;
}
.icon-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
.icon-list li {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0,122,155,0.05);
  padding: 10px 18px;
  font-size: 1rem;
  font-weight: 500;
}
.icon-list img {
  height: 27px;
  width: 27px;
  display: inline-block;
}
.tab-list {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  flex-wrap: wrap;
  color: #007A9B;
  font-style: italic;
  font-weight: 600;
  background-color: #EDF6FA;
  border-radius: 10px;
  margin-bottom: 18px;
}

/* Feature-item Flex pattern */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 16px;
}

/* Testimonial styles ----------------------------------------------- */
.testimonial-stars {
  color: #FFD200;
  font-size: 1.23rem;
  letter-spacing: 1px;
  text-shadow: 0 1px 2px #007A9B33;
}
.testimonial-name {
  color: #17406A;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
  margin-top: 12px;
}
blockquote {
  background: transparent;
}
.review-snippets {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-size: 0.98rem;
  padding-top: 15px;
}
.review-snippets span {
  color: #007A9B;
  font-weight: 700;
  font-size: 0.95em;
  margin-left: 5px;
}

/* Table Styles ----------------------------------------------------- */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 15px;
  background: #F8FAFC;
  border-radius: 12px;
  overflow: hidden;
  font-size: 1rem;
}
th, td {
  padding: 13px 14px;
  text-align: left;
}
th {
  background: #007A9B;
  color: #fff;
  font-weight: 700;
  letter-spacing: 1px;
}
td {
  border-bottom: 1px solid #E0E5EB;
}
tr:last-child td {
  border-bottom: none;
}
.pricing-table tr th, .pricing-table tr td {
  font-size: 1rem;
}
.disclaimer {
  font-size: 0.89rem;
  color: #5A708D;
  margin-top: 7px;
}

/* Hero and CTA Buttons --------------------------------------------- */
.cta-btn {
  display: inline-flex;
  align-items: center;
  background: #007A9B;
  color: #fff;
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  border-radius: 30px;
  padding: 12px 34px;
  margin-top: 18px;
  cursor: pointer;
  box-shadow: 0 3px 8px rgba(0,122,155,0.14);
  letter-spacing: 1px;
  border: none;
  transition: background .24s, box-shadow .22s, transform .21s;
  outline: none;
  margin-bottom: 10px;
}
.cta-btn.primary {
  background: #17406A;
  color: #fff;
  box-shadow: 0 5px 18px rgba(23,64,106,0.21);
}
.cta-btn:hover,
.cta-btn:focus {
  background: #005269;
  box-shadow: 0 1px 4px rgba(0,0,0,.12);
  color: #FFD200;
  transform: translateY(-2px) scale(1.04);
  text-decoration: none;
}

/* HEADER & NAVIGATION ---------------------------------------------- */
header {
  background: linear-gradient(96deg,#007A9B 0%,#17406A 100%);
  padding: 0 0 0.5rem 0;
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
  min-height: 64px;
  width: 100%;
  margin-bottom: 0;
  position: relative;
  z-index: 20;
}
.brand-logo img {
  height: 44px;
  margin: 8px 0 0 0;
  filter: drop-shadow(0 2px 6px #18628334);
}
header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 64px;
  padding-top: 7px;
  padding-bottom: 6px;
}
.main-nav {
  display: flex;
  gap: 23px;
  align-items: center;
  margin: 0 15px;
}
.main-nav a {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  font-family: 'Open Sans', Arial, sans-serif;
  padding: 5px 9px;
  border-radius: 8px;
  transition: background .21s;
}
.main-nav a:hover,
.main-nav .active {
  background: #FFD200;
  color: #17406A;
  text-decoration: none;
}

/*!!!!! MOBILE MENU & TOGGLE ----------------------------------------*/
.mobile-menu-toggle {
  background: #FFD200;
  border-radius: 50%;
  font-size: 2rem;
  color: #17406A;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(23,64,106,0.09);
  margin-left: 10px;
  transition: background .23s, color .18s;
  z-index: 111;
  display: none;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  outline: 3px solid #fff;
  background: #007A9B;
  color: #FFD200;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  z-index: 5000;
  background: #17406A;
  transform: translateX(-100vw);
  transition: transform .37s cubic-bezier(.7,.2,.15,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 0;
  box-shadow: 0 0 80px 5px #17406A77;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  font-size: 2.1rem;
  color: #FFD200;
  background: none;
  border: none;
  margin: 18px 0 8px 22px;
  cursor: pointer;
  z-index: 5002;
  align-self: flex-start;
  transition: color .2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #fff84a;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  margin-top: 42px;
  padding-left: 28px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.26rem;
  padding: 7px 0;
  border-radius: 0;
  font-weight: 500;
  transition: color .17s, background .17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #FFD200;
  background: none;
  text-decoration: underline;
}

/* Hide desktop menu on mobile, show mobile toggle */
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 901px) {
  .mobile-menu {
    display: none !important;
  }
}


/* SECTIONS & RESPONSIVE -------------------------------------------- */
section {
  padding: 40px 0 30px 0;
  margin-bottom: 60px;
  width: 100%;
  position: relative;
}
@media (max-width: 768px) {
  section {
    padding: 25px 0 16px 0;
    margin-bottom: 35px;
  }
}

/* Responsive breakpoints and flex directions ------------------------ */
@media (max-width: 900px) {
  .feature-list, .icon-list, .card-container, .card-grid, .service-cards, .testimonials-row, .testimonial-carousel, .review-snippets, .content-grid {
    flex-direction: column;
    gap: 18px;
    justify-content: flex-start;
    align-items: stretch;
  }
}
@media (max-width: 768px) {
  .content-wrapper, .text-section, .tab-list, .icon-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .card, .service-card, .testimonial-card {
    min-width: 97vw;
    max-width: 100vw;
    padding: 20px 11px;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.08rem; }
}

/* Animations ----------------------------------------------------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
section, .card, .service-card, .testimonial-card, .cta-btn, .cookie-banner, .cookie-modal {
  animation: fadeInUp .7s cubic-bezier(.4,.16,.54,1.3) both;
}

/* Artistic/Creative Effects --------------------------------------- */
.card, .service-card {
  background: linear-gradient(102deg,#F6FBFF 82%,#FFF7D7 100%);
  border-left: 9px solid #FFD200;
}
.card-content, .service-card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-card img, .feature-list img, .icon-list img {
  filter: drop-shadow(0 2px 8px #007A9B33);
}

/* Buttons & Logical Micro-interactions --------------------------- */
button, .cta-btn {
  transition: box-shadow .17s, transform .15s;
}
button:focus-visible,
.cta-btn:focus-visible {
  outline: 2px solid #FFD200;
  outline-offset: 2px;
}


/* FAQ Accordion -------------------------------------------------- */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.faq-item {
  background: #E0E5EB;
  border-radius: 12px;
  padding: 16px 24px;
  box-shadow: 0 3px 10px rgba(0,122,155,0.06);
  cursor: pointer;
  transition: background .18s;
}
.faq-item h3 {
  font-size: 1.13rem;
  margin-bottom: 6px;
  cursor: pointer;
}
.faq-item .faq-content {
  font-size: 1rem;
  margin-top: 7px;
  color: #075073;
}
.faq-item.active, .faq-item:hover {
  background: #FFD20022;
}

/* Contact Info Box ----------------------------------------------- */
.contact-info-box {
  background: #F1FBFA;
  border-radius: 16px;
  box-shadow: 0 1px 8px rgba(0,122,155,0.07);
  padding: 24px 21px 22px 21px;
  margin: 16px 0 13px 0;
  font-size: 1.01rem;
}
.contact-info-box ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.address-details {
  color: #005269;
  font-size: 1.02rem;
  font-family: 'Merriweather', serif;
  font-weight: 500;
  background: #E0E5EB;
  border-radius: 8px;
  padding: 9px 16px;
  margin-top: 11px;
}

/* Footer --------------------------------------------------------- */
footer {
  background: #17406A;
  color: #fff;
  padding: 33px 0 15px 0;
  font-size: 0.99rem;
  margin-top: 30px;
}
.footer-links, .footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 15px;
}
.footer-links a, .footer-contact a {
  color: #FFD200;
  font-weight: 500;
  font-size: 1rem;
  transition: color .24s;
}
.footer-links a:hover, .footer-contact a:hover {
  color: #fff;
}
.footer-links span {color: #fff; font-size: 0.96em;}
.footer-copyright {
  color: #C7DFED;
  margin-top: 14px;
  font-size: 0.97rem;
  letter-spacing: 0.02em;
}
@media (max-width: 768px) {
  .footer-links, .footer-contact {
    flex-direction: column;
    gap: 9px;
    align-items: flex-start;
  }
}

/* COOKIE CONSENT BANNER ------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #17406A;
  color: #fff;
  font-size: 1.09rem;
  display: flex;
  flex-direction: column;
  gap: 11px;
  z-index: 6000;
  box-shadow: 0 -4px 18px #0002;
  padding: 24px 22px 16px 22px;
  align-items: flex-start;
  animation: fadeInUp .7s;
}
.cookie-banner p {
  margin-bottom: 7px;
  color: #fff;
  font-size: 1rem;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 5px;
  align-items: center;
}
.cookie-banner .cookie-btn {
  padding: 10px 23px;
  border-radius: 18px;
  background: #FFD200;
  color: #17406A;
  font-family: 'Merriweather', serif;
  font-weight: 800;
  cursor: pointer;
  font-size: 1rem;
  border: none;
  transition: background .17s, color .1s;
  margin-bottom: 2px;
}
.cookie-banner .cookie-btn:hover,
.cookie-banner .cookie-btn:focus {
  background: #fff;
  color: #007A9B;
}
.cookie-banner .cookie-btn.cookie-settings {
  background: #E0E5EB;
  color: #17406A;
  font-weight: 600;
  border: 1px solid #BFD5DC;
}
.cookie-banner .cookie-btn.cookie-reject {
  background: #fff;
  color: #007A9B;
  font-weight: 600;
  border: 1px solid #AEDCEB;
}

/* COOKIE MODAL ----------------------------------------------------*/
.cookie-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(17,29,68,0.77);
  z-index: 6500;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  opacity: 1;
  animation: fadeInUp .48s;
}
.cookie-modal .modal-content {
  background: #fff;
  color: #17406A;
  padding: 40px 35px 32px 35px;
  border-radius: 18px;
  width: 96%;
  max-width: 460px;
  box-shadow: 0 10px 44px 1px rgba(23,64,106,.23);
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: fadeInUp .57s;
}
.cookie-modal h2 {
  color: #007A9B;
  font-size: 1.4rem;
  margin-bottom: 17px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-bottom: 14px;
}
.cookie-category label {
  font-size: 1.1rem;
  color: #17406A;
  font-weight: 700;
  font-family: 'Open Sans', Arial, sans-serif;
}
.cookie-category input[type='checkbox'] {
  width: 20px;
  height: 20px;
  accent-color: #007A9B;
  border-radius: 5px;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 11px;
  margin-top: 13px;
  align-items: center;
}
.cookie-modal .modal-close {
  background: none;
  color: #17406A;
  border: none;
  font-size: 1.89rem;
  position: absolute;
  top: 17px;
  right: 28px;
  cursor: pointer;
  transition: color .19s;
}
.cookie-modal .modal-close:hover,
.cookie-modal .modal-close:focus {
  color: #007A9B;
}
@media (max-width: 620px) {
  .cookie-modal .modal-content {
    padding: 15px 5vw 18px 5vw;
  }
}


/* Artistic touches: Custom fonts (fallback/system if missing), bold color splashes, playful spacing */
h1, h2, .cta-btn, th, .testimonial-stars, .modal-content h2 {
  font-family: 'Merriweather', Georgia, serif;
  letter-spacing: 0.5px;
}

/* UNIQUE ELEMENTS/ARTISTIC ---------------------------------------- */
.section {
  border-radius: 26px;
  background: linear-gradient(100deg,#fff 90%,#F6FBFF 100%);
  box-shadow: 0 7px 32px rgba(0,122,155,0.07);
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  .section {
    border-radius: 15px;
    margin-bottom: 32px;
    padding: 21px 6px;
  }
}

/* Spacing Util -------------------------------------- */
.card + .card, .service-card + .service-card, .testimonial-card + .testimonial-card, .feature-list li + .feature-list li, .content-wrapper + .content-wrapper {
  margin-left: 0;
  margin-top: 20px;
}
section + section {
  margin-top: 22px;
}

/* Accessibility: focus and readable text colors */
:focus-visible {
  outline: 2px solid #FFD200;
  outline-offset: 2px;
}

/* Utility classes --------------------------------------- */
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.mt-0 { margin-top: 0; }
.mt-30 { margin-top: 30px; }
.mb-25 { margin-bottom: 25px; }

/* Accent underline for artistic headings */
h2::after {
  content: '';
  display: block;
  width: 60px;
  margin: 12px 0 0 0;
  height: 4px;
  border-radius: 2px;
  background: #FFD200;
}

/* Responsive logo size */
@media (max-width: 690px) {
  .brand-logo img { height: 34px; }
}

/* Hide visually for accessibility */
.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 */
