/* 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,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;
}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
  display: block;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  background: #F8FBFC;
  color: #143452;
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
}
img,svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #53C1B0;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #2a98a2;
  outline: none;
  text-decoration: underline;
}
ul, ol {
  padding-left: 1.2em;
  margin-bottom: 24px;
}
li {
  margin-bottom: 0.5em;
}
strong, b {
  font-weight: 600;
}
em, i {
  font-style: italic;
}
h1, h2, h3, h4, h5, h6 {
  font-family: "Oswald", Arial, Helvetica, sans-serif;
  color: #143452;
  font-weight: 600;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem;
  letter-spacing: -1px;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.4rem;
}
.subtitle {
  font-size: 1.25rem;
  color: #568bb5;
  margin-bottom: 12px;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0; /* for legacy support, true gaps defined on containers */
}

/* HEADER + NAVIGATION */
header {
  background: #E5EDF2;
  box-shadow: 0 1px 10px 0 rgba(80,120,135,0.04);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
}
header img {
  width: 166px;
  margin-right: 18px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  font-family: "Oswald", Arial, Helvetica, sans-serif;
  letter-spacing: 0.04em;
  font-size: 1.1rem;
}
.main-nav a {
  color: #143452;
  opacity: 0.88;
  transition: color 0.2s, opacity 0.2s;
  padding: 8px 6px;
  border-radius: 6px;
  font-weight: 500;
}
.main-nav a:hover, .main-nav a:focus {
  color: #53C1B0;
  background: #d8f9f4;
  opacity: 1;
}
.cta-btn {
  background: #53C1B0;
  color: #fff;
  font-family: "Oswald", Arial, Helvetica, sans-serif;
  padding: 12px 28px;
  border: none;
  border-radius: 32px;
  font-size: 1.1rem;
  font-weight: 600;
  box-shadow: 0 4px 16px 0 rgba(68,187,177,0.08);
  margin-left: 12px;
  cursor: pointer;
  transition: background 0.18s, transform 0.13s, box-shadow 0.16s;
  outline: none;
  letter-spacing: 0.02em;
}
.cta-btn:hover, .cta-btn:focus {
  background: #36ad9a;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 20px 0 rgba(68, 187, 177, 0.16);
}
.cta-link {
  color: #53C1B0;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  margin-top: 12px;
  display: inline-block;
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #53C1B0;
  cursor: pointer;
  padding: 8px 10px;
  line-height: 1;
  transition: background 0.18s;
  border-radius: 8px;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #d8f9f4;
}

/* MOBILE NAVIGATION */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  background: #ffffff;
  width: 100vw;
  height: 100vh;
  z-index: 2001;
  transform: translateX(-100vw);
  transition: transform 0.36s cubic-bezier(.94,.02,.35,1);
  box-shadow: 0 8px 48px 0 rgba(35,84,124,.06);
  padding: 0 0 0 0;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #143452;
  font-size: 2.1rem;
  border: none;
  align-self: flex-end;
  margin: 24px 24px 12px 0;
  cursor: pointer;
  padding: 6px 14px;
  border-radius: 8px;
  transition: background 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #e8f5fa;
  color: #53C1B0;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 0 24px;
  width: calc(100vw - 48px);
}
.mobile-nav a {
  color: #143452;
  font-family: "Oswald", Arial, Helvetica, sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  padding: 14px 12px;
  border-radius: 10px;
  transition: background 0.19s, color 0.17s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #e8f5fa;
  color: #53C1B0;
}
@media (max-width: 1024px) {
  .main-nav {
    gap: 16px;
    font-size: 1rem;
  }
  header img {
    width: 120px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .cta-btn {
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
@media (max-width: 600px) {
  header .container {
    min-height: 56px;
    padding-left: 8px;
    padding-right: 8px;
    gap: 10px;
  }
  .mobile-nav a {
    font-size: 1.08rem;
    padding: 10px 8px;
  }
}

/* MAIN & SECTIONS */
main {
  background: #F8FBFC;
  min-height: 60vh;
  width: 100%;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
section:last-child {
  margin-bottom: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.text-section {
  padding: 16px 0 0 0;
}

/* FLEX CARD & CONTENT CONTAINERS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  position: relative;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(113,168,183,0.09);
  background: #fff;
  margin-bottom: 20px;
  flex: 1 1 330px;
  min-width: 290px;
  max-width: 400px;
  padding: 28px 20px;
  transition: box-shadow 0.18s, transform 0.15s;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 28px 0 rgba(120,180,190,0.16);
  transform: translateY(-2px) scale(1.02);
}
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .card-container {
    flex-direction: column;
    gap: 18px;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 22px;
}

/* TESTIMONIALS */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  border-radius: 16px;
  margin-bottom: 20px;
  background: #f5fafb;
  box-shadow: 0 1px 11px 0 rgba(120,180,190,0.08);
  border: 1px solid #E5EDF2;
  max-width: 540px;
}
.testimonial-card p {
  font-size: 1.08rem;
  color: #20507d;
}
.testimonial-card strong {
  color: #143452;
  font-weight: 600;
}
.testimonial-card span {
  color: #f5ae5a;
  font-size: 1rem;
  margin-left: 14px;
  vertical-align: middle;
  letter-spacing: .08em;
}

/* TYPOGRAPHY HIERARCHY */
p, ul li, ol li, .subtitle, .confirmation-message, .next-steps {
  font-size: 1rem;
  color: #20507d;
}
@media (max-width: 750px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.3rem;
  }
  .cta-btn {
    font-size: 1rem;
    padding: 10px 20px;
  }
  .testimonial-card p,
  p, ul li, ol li {
    font-size: 0.99rem;
  }
}

/* BUTTONS & INTERACTION */
button,
input[type=submit] {
  font-family: inherit;
  background: #53C1B0;
  color: #fff;
  border: none;
  border-radius: 28px;
  padding: 12px 28px;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  transition: background 0.18s, transform 0.13s, box-shadow 0.18s;
  outline: none;
}
button:hover, button:focus, input[type=submit]:hover, input[type=submit]:focus {
  background: #1ca297;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 20px 0 rgba(68,187,177,0.14);
}

/* FORMS */
input, textarea, select {
  font-family: inherit;
  padding: 10px 16px;
  border-radius: 10px;
  border: 1px solid #bde9ee;
  font-size: 1rem;
  background: #fbfdfe;
  transition: border 0.17s, box-shadow 0.14s;
  margin-bottom: 15px;
}
input:focus, textarea:focus, select:focus {
  border: 1.8px solid #53C1B0;
  outline: none;
  box-shadow: 0 2px 8px 0 rgba(68,187,177,0.07);
}

/* FOOTER */
footer {
  background: #e5edf2;
  box-shadow: 0 -1px 10px 0 rgba(80,120,135,0.04);
  padding: 44px 0 12px 0;
  position: relative;
  margin-top: 48px;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-navigation, .footer-contact, .footer-legal {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 1rem;
}
.footer-navigation {
  flex: 1 1 260px;
  gap: 10px;
  font-family: "Oswald", Arial, Helvetica, sans-serif;
  font-size: 1.03rem;
}
.footer-navigation a {
  color: #143452;
  padding: 2px 0;
  transition: color 0.2s;
}
.footer-navigation a:hover {
  color: #53C1B0;
  text-decoration: underline;
}
.footer-contact {
  flex: 1 1 220px;
  gap: 3px;
  color: #20507d;
}
.footer-contact a {
  color: #53C1B0;
  text-decoration: underline;
}
.footer-legal {
  flex: 1 1 100%;
  font-size: 0.95rem;
  color: #5a7a97;
  gap: 6px;
  margin-top: 20px;
}
.footer-legal a {
  color: #20507d;
  margin: 0 8px;
  transition: color 0.15s;
}
.footer-legal a:hover {
  color: #53C1B0;
}
@media (max-width: 850px) {
  footer .container {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .footer-navigation, .footer-contact, .footer-legal {
    flex-basis: unset;
    max-width: 100%;
  }
  .footer-legal {
    font-size: 0.95rem;
    margin-top: 14px;
    padding-bottom: 12px;
  }
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #e5edf2;
  box-shadow: 0 -3px 18px 0 rgba(60,100,120,0.18);
  padding: 18px 20px 22px 20px;
  z-index: 4000;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 1;
  transition: opacity 0.28s, transform 0.35s;
  font-size: 1.01rem;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100px);
}
.cookie-banner .cookie-text {
  color: #20507d;
  max-width: 430px;
  margin-right: 18px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
}
.cookie-btn {
  background: #53C1B0;
  color: #fff;
  border: none;
  border-radius: 18px;
  font-size: 1.05rem;
  font-family: "Oswald", Arial, Helvetica, sans-serif;
  font-weight: 500;
  padding: 8px 20px;
  margin: 0 4px;
  transition: background 0.19s, transform 0.13s, color 0.15s;
  cursor: pointer;
}
.cookie-btn.secondary {
  background: #b0d7cf;
  color: #143452;
}
.cookie-btn.settings {
  background: #e7f6f4;
  color: #36ad9a;
  border: 1.2px solid #53C1B0;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #36ad9a;
  color: #fff;
  transform: scale(1.04);
}
.cookie-btn.secondary:hover, .cookie-btn.secondary:focus {
  background: #96c3c0;
  color: #143452;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #d8f9f4;
  color: #143452;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    font-size: 0.99rem;
    padding-left: 8px; padding-right: 8px;
  }
  .cookie-banner .cookie-text {
    margin-right: 0;
  }
  .cookie-banner .cookie-actions {
    flex-direction: column;
    gap: 7px;
    width: 100%;
  }
}

/* COOKIE MODAL (SETTINGS) */
.cookie-modal-overlay {
  position: fixed;
  z-index: 4200;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(20,52,82,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.23s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #ffffff;
  border-radius: 22px;
  padding: 36px 30px;
  max-width: 370px;
  width: 94vw;
  box-shadow: 0 9px 46px 0 rgba(20,53,82,0.15);
  display: flex;
  flex-direction: column;
  gap: 22px;
  font-size: 1.04rem;
}
.cookie-modal h2 {
  font-size: 1.3rem;
  margin-bottom: 6px;
  color: #20507d;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
  margin-bottom: 12px;
}
.cookie-category input[type=checkbox] {
  width: 22px; height: 22px;
  accent-color: #53C1B0;
}
.cookie-modal .category-label {
  font-weight: 500;
  color: #20507d;
}
.cookie-modal .desc {
  font-size: 0.97rem;
  color: #5a7a97;
}
.cookie-modal .cookie-btn {
  margin-top: 8px;
  width: 48%;
}
.cookie-modal .cookie-btn:last-child {
  background: #b0d7cf;
  color: #143452;
}
.cookie-modal .cookie-btn:last-child:hover, .cookie-modal .cookie-btn:last-child:focus {
  background: #96c3c0;
  color: #143452;
}
.cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 10px;
}
@media (max-width: 500px) {
  .cookie-modal {
    max-width: 99vw;
    padding: 20px 6px;
    font-size: 0.97rem;
  }
}

/* SOFT PASTEL STYLE DECORATIONS */
body {
  background: linear-gradient(148deg, #F8FBFC 10%, #E5EDF2 80%, #fffcfa 100%);
}
section {
  background: rgba(255,255,255,0.7);
  border-radius: 20px;
  box-shadow: 0 2px 20px 0 rgba(120,180,190,0.07);
  margin-bottom: 60px;
}

/* Animations & Microinteractions */
.cta-btn, .card, .testimonial-card, .cookie-btn, button, input[type=submit] {
  transition: box-shadow 0.17s, background 0.19s, color 0.19s, transform 0.17s;
}
.cta-link {
  transition: color 0.16s;
}
.cta-link:hover, .cta-link:focus {
  color: #20507d;
  text-decoration: underline;
}
.card:active, .testimonial-card:active {
  transform: scale(0.97);
}

/* Confirmation/Thank You Page */
.confirmation-message {
  color: #20507d;
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.next-steps {
  color: #53C1B0;
  font-size: 1.01rem;
  margin-bottom: 14px;
}

/* UTILITY CLASSES */
.hide {
  display: none !important;
}
.centered {
  text-align: center !important;
}
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.gap-20 {
  gap: 20px !important;
}
.gap-24 {
  gap: 24px !important;
}

/* Ensure enough margin between all cards/sections */
section + section {
  margin-top: 16px;
}
.card + .card,
.testimonial-card + .testimonial-card {
  margin-top: 20px;
}

/* Scrollbar pastel theme */
::-webkit-scrollbar {
  width: 11px;
  background: #E5EDF2;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb {
  background: #c6e3e0;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: #53C1B0;
}

/* [PASTEL DREAMY ATMOSPHERE] */
body, section, .card, .testimonial-card {
  box-shadow: 0 1px 18px 0 rgba(120,180,190,0.06);
}

/* FONTS (FALLBACKS & WEBFONT LINKS, MANUAL LOAD REQUIRED IN HTML) */
@font-face {
  font-family: 'Oswald';
  font-style: normal;
  font-weight: 400;
  src: local('Oswald Regular'), local('Oswald-Regular'), url('https://fonts.gstatic.com/s/oswald/v48/TK3iWkUHHAIjg752GT8G.ttf') format('truetype');
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: local('Roboto'), local('Roboto-Regular'), url('https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu4mxP.ttf') format('truetype');
}

/* RESPONSIVE DESIGN */
@media (max-width: 900px) {
  section {
    padding: 26px 8px;
    margin-bottom: 48px;
  }
  .footer-legal {
    font-size: 0.95rem;
    margin-top: 13px;
  }
}
@media (max-width: 540px) {
  section {
    padding: 18px 2px;
    margin-bottom: 32px;
    border-radius: 12px;
  }
  .testimonial-card, .card {
    padding: 13px 6px;
    border-radius: 11px;
  }
}

/* Accessibility fixes for color contrast in testimonials */
.testimonial-card,
.testimonial-card p,
.testimonial-card strong {
  color: #143452;
  background: #f7fafd;
}

/* END */
