/* CSS RESET & BASE STYLES */
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;
}
body {
  line-height: 1.6;
  background: #F8F7FA;
  color: #2F4858;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
ul,ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color .2s;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* FONTS FOR soft_pastel STYLE */
@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@600;700&family=Open+Sans:wght@400;600&display=swap');

h1, h2, h3, h4, h5 {
  font-family: 'Baloo 2', cursive;
  color: #0568AE;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.375rem; margin-bottom: 12px; }

p, ul, ol, li, table, td, th {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #395A75;
  font-size: 1rem;
}

strong, b {
  font-weight: 700;
  color: #2F4858;
}

.container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* FLEXBOX LAYOUTS - MANDATORY PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 280px;
}
.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;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #C2E9FB 0%, #FCECDD 100%);
  border-radius: 0 0 48px 48px;
  box-shadow: 0 2px 16px 0 rgba(64,104,164,0.06);
  margin-bottom: 60px;
  padding: 56px 0 40px;
}
.hero h1, .hero p {
  text-align: center;
}
.hero p {
  font-size: 1.125rem;
  margin-bottom: 28px;
}

/* NAVIGATION HEADER */
header {
  width: 100%;
  background: rgba(255,255,255,0.96);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 30px 18px 20px;
  box-shadow: 0 2px 8px 0 rgba(80,150,202,0.08);
  position: sticky;
  top: 0;
  z-index: 99;
}
.logo img {
  height: 46px;
  transition: filter .25s;
}
.logo:hover img {
  filter: brightness(1.1) drop-shadow(0 4px 12px #9fdcff70);
}
.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}
.main-nav a {
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #0568AE;
  padding: 3px 0;
  border-bottom: 2px solid transparent;
  transition: border .2s, color .2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #2F4858;
  border-bottom: 2px solid #F2B33D;
  outline: none;
}
.cta-btn {
  background: #F2B33D;
  color: #2F4858;
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  padding: 10px 30px 10px 30px;
  border-radius: 26px;
  font-size: 1.18rem;
  letter-spacing: 0.03em;
  margin-left: 18px;
  box-shadow: 0 2px 8px 0 #F2B33D22;
  border: none;
  cursor: pointer;
  transition: background .2s, color .2s, box-shadow .2s;
  display: inline-block;
  outline: none;
  position: relative;
}
.cta-btn:hover,
.cta-btn:focus {
  background: #FFD16F;
  color: #045184;
  box-shadow: 0 6px 16px 0 #ffe5a650;
  text-decoration: none;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #F2B33D;
  cursor: pointer;
  margin-left: 20px;
  z-index: 105;
  transition: color .2s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  color: #FFD16F;
  outline: none;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(120deg, #FCECDD 50%, #C2E9FB 100%);
  z-index: 110;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100%);
  transition: transform .39s cubic-bezier(0.58,0.13,0.38,0.96);
  box-shadow: 0 18px 44px 0 #9fdcff60;
  padding: 36px 32px 20px 32px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.4rem;
  background: none;
  border: none;
  color: #F2B33D;
  cursor: pointer;
  margin-bottom: 22px;
  margin-top: 5px;
  transition: color .2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #FFD16F;
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Baloo 2', cursive;
  font-size: 1.3rem;
  color: #0568AE;
  background: #fffffdc4;
  border-radius: 18px;
  padding: 13px 18px;
  margin-bottom: 3px;
  transition: background .2s, color .2s;
}
.mobile-nav a:active,
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #F2B33D25;
  color: #2F4858;
  outline: none;
}
@media (max-width: 1000px) {
  .main-nav { gap: 20px; }
}
@media (max-width: 900px) {
  header {
    padding: 14px 9px 11px 10px;
  }
  .main-nav {
    gap: 12px;
  }
  .cta-btn {
    margin-left: 6px;
    font-size: 1rem;
    padding: 8px 17px;
  }
}
@media (max-width: 820px) {
  header, .footer-top {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }
  header .main-nav { margin: 0; flex-wrap: wrap; }
}
@media (max-width: 768px) {
  .main-nav, .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* CTA-BANNER */
.cta-banner {
  background: linear-gradient(120deg, #C2E9FB 30%, #F2B33D1a 100%);
  border-radius: 32px;
  box-shadow: 0 2px 24px 0 #acdffb32;
  margin-bottom: 48px;
  padding: 36px 20px 36px 20px;
  text-align: center;
  display: flex;
}
.cta-banner h2 {
  margin-bottom: 18px;
}

/* FEATURE GRID & SERVICE CARDS */
.feature-grid, .service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 32px;
  width: 100%;
}
.feature-grid > div, .service-cards > div {
  background: #fffefbd8;
  box-shadow: 0 4px 18px 0 #74b4e810;
  border-radius: 20px;
  flex: 1 1 200px;
  min-width: 240px;
  max-width: 360px;
  padding: 28px 22px 24px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: box-shadow .19s, transform .18s;
  margin-bottom: 0;
}
.feature-grid > div img, .service-cards > div img {
  max-height: 56px;
  margin-bottom: 10px;
}
.feature-grid > div:hover, .service-cards > div:hover {
  box-shadow: 0 8px 32px 0 #C2E9FB99;
  transform: translateY(-4px) scale(1.033);
}

/* TESTIMONIALS */
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 18px;
}
.testimonial-card {
  background: #FCF8F2;
  color: #2F4858;
  border-radius: 22px;
  box-shadow: 0 2px 18px 0 #f2b33d11;
  min-width: 250px;
  max-width: 370px;
  flex: 1 1 240px;
  padding: 28px 24px;
  margin-bottom: 0;
  align-items: flex-start;
  position: relative;
  transition: box-shadow .2s, transform .18s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 36px 0 #ffe5a672;
  transform: scale(1.025) translateY(-2px);
}
.testimonial-stars {
  font-size: 1.27rem;
  color: #F2B33D;
  margin-bottom: 9px;
}
.testimonial-card p {
  color: #285269;
  font-size: 1.05rem;
  margin-bottom: 14px;
}
.testimonial-card strong {
  color: #0568AE;
  font-weight: 700;
}

/* TABLE STYLE */
table {
  width: 100%;
  border-collapse: collapse;
  background: #fffafae1;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 14px 0 #b1d4ee21;
  margin-bottom: 22px;
}
th, td {
  padding: 13px 12px;
  text-align: left;
}
th {
  background: #E7F0FC;
  color: #045184;
  font-family: 'Baloo 2', cursive;
  font-size: 1.07rem;
}
td {
  border-bottom: 1px solid #f0d393;
}
tr:last-child td {
  border-bottom: none;
}

/* FOOTER */
footer {
  background: linear-gradient(120deg, #C2E9FB 80%, #F2B33D22 100%);
  color: #2F4858;
  margin-top: 70px;
}
.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 48px;
  padding: 38px 24px 22px 24px;
  border-radius: 0 0 30px 30px;
  justify-content: space-between;
  max-width: 1170px;
  margin: 0 auto;
}
.footer-top img {
  max-height: 60px;
}
.footer-top nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 160px;
  flex: 2 1 220px;
  margin-top: 8px;
}
.footer-top nav a {
  color: #0568AE;
  font-weight: 600;
  font-size: 1rem;
  padding: 2px 0;
  border-bottom: 1px solid #0000;
  width: fit-content;
  transition: color .2s, border .2s;
}
.footer-top nav a:hover, .footer-top nav a:focus {
  color: #F2B33D;
  border-bottom: 1px solid #F2B33D;
}
.footer-contact {
  font-size: 1rem;
  color: #2F4858;
  line-height: 1.8;
  margin-top: 10px;
}
.footer-contact img {
  vertical-align: middle;
  max-height: 21px;
  margin-right: 5px;
}
.footer-social {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 18px;
}
.footer-social a img {
  width: 32px;
  height: 32px;
  border-radius: 60%;
  transition: filter .2s, transform .2s;
}
.footer-social a:hover img,
.footer-social a:focus img {
  filter: brightness(1.2) drop-shadow(0 2px 8px #73c4e7ab);
  transform: scale(1.07);
}
.footer-bottom {
  text-align: center;
  font-size: 0.93rem;
  color: #888;
  padding: 18px 6px 22px;
  background: #ede7ee33;
  border-radius: 0 0 20px 20px;
  font-family: 'Open Sans', Arial, sans-serif;
}

/* TEXT SECTIONS & DETAILS */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-details,
.map-location {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 1rem;
}
.contact-details img,
.map-location img {
  max-height: 20px;
  margin-right: 6px;
}
.map-location {
  color: #708eb6;
  font-size: 0.98rem;
}

/* LISTS */
ul, ol {
  margin-left: 1.2em;
  margin-bottom: 10px;
  color: #2F4858;
  padding-left: 1.1em;
  font-size: 1rem;
  line-height: 1.7;
}
ul li, ol li {
  margin-bottom: 8px;
  list-style-type: disc;
}
ul li strong, ol li strong {
  color: #045184;
  font-weight: 700;
}

/* FORMS - if any appear in future */
input, textarea, select {
  font-family: 'Open Sans', Arial, sans-serif;
  border-radius: 16px;
  border: 1px solid #BDE6FD;
  padding: 12px 18px;
  font-size: 1rem;
  background: #F8F7FA;
  margin-bottom: 12px;
  width: 100%;
  box-sizing: border-box;
}
input:focus, textarea:focus, select:focus {
  outline: 1.5px solid #0568AE;
  border-color: #F2B33D;
  background: #fff9f1;
}
button {
  font-family: 'Baloo 2', cursive;
  font-size: 1rem;
  padding: 10px 23px;
  border-radius: 24px;
  background: #0568AE;
  color: #FFF;
  border: none;
  cursor: pointer;
  transition: background .2s, color .2s, box-shadow .2s;
}
button:hover, button:focus {
  background: #F2B33D;
  color: #2F4858;
  outline: none;
  box-shadow: 0 4px 18px #f2b33d43;
}

/* CARDS (GENERIC) */
.card {
  background: #fffefbce;
  border-radius: 22px;
  box-shadow: 0 2px 16px 0 #aeeffd21;
  padding: 26px 22px 22px 22px;
  min-width: 220px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin-bottom: 20px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

/* COOKIE CONSENT BANNER & MODAL */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: linear-gradient(90deg,#F8F7FA 80%,#C2E9FB 100%);
  box-shadow: 0 -2px 20px 0 #79b8e722;
  border-radius: 18px 18px 0 0;
  z-index: 10001;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 18px 24px 18px 18px;
  gap: 19px;
  font-size: 1rem;
  animation: cookieBannerFadeIn .7s cubic-bezier(.23,.82,.53,1.14);
}
@keyframes cookieBannerFadeIn {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner-content {
  flex: 1 1 350px;
  color: #2F4858;
}
.cookie-banner-actions {
  display: flex;
  gap: 12px;
  flex: 0 0 auto;
  align-items: center;
}
.cookie-btn {
  border: none;
  padding: 8px 20px;
  border-radius: 20px;
  font-family: 'Baloo 2',cursive;
  font-size: 1rem;
  background: #FFF4D6;
  color: #2F4858;
  font-weight: 700;
  cursor: pointer;
  transition: background .18s, color .18s;
  box-shadow: 0 2px 8px #f2b33d25;
}
.cookie-btn.accept {
  background: #F2B33D;
  color: #2F4858;
}
.cookie-btn.reject {
  background: #fffaf5;
  color: #B7613A;
}
.cookie-btn.settings {
  background: #e9f8ff;
  color: #0568AE;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #ffd77f;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #ffe9e0;
  color: #f75b0b;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #bae5ff;
  color: #012943;
}
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(44,84,158,0.18);
  z-index: 11051;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookieModalFade .28s cubic-bezier(.19,.78,.47,.96);
}
@keyframes cookieModalFade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: linear-gradient(110deg,#F8F7FA 80%,#C2E9FB 100%);
  border-radius: 22px;
  box-shadow: 0 6px 44px 0 #F2B33D38;
  padding: 34px 36px 28px 27px;
  min-width: 310px;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 17px;
  position: relative;
}
.cookie-modal h2 {
  font-size: 1.33rem; 
  margin-bottom: 10px;
}
.cookie-modal-close {
  position: absolute;
  right: 17px; top: 14px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #F2B33D;
  cursor: pointer;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-category-row {
  display: flex;
  align-items: center;
  gap: 18px;
}
.cookie-category-label {
  font-weight: 600;
  color: #045184;
  font-size: 1.05rem;
}
.cookie-switch {
  width: 44px;
  height: 24px;
  border-radius: 16px;
  background: #E7F0FC;
  position: relative;
  margin-left: 5px;
}
.cookie-switch input[type='checkbox'] {
  opacity: 0;
  width: 44px;
  height: 24px;
  position: absolute;
  cursor: pointer;
  left: 0;
  top: 0;
}
.cookie-switch-slider {
  position: absolute;
  left:3.5px; top:3px;
  width: 18px; height: 18px;
  background: #C2E9FB;
  border-radius: 50%;
  transition: left .22s cubic-bezier(.64,.09,.49,1.31),background .13s;
  z-index: 2;
}
.cookie-switch input[type='checkbox']:checked + .cookie-switch-slider {
  left: 22px; background: #F2B33D;
}
.cookie-category-row.disabled {
  opacity: 0.38;
  pointer-events: none;
}
.cookie-category-desc {
  font-size: 0.94rem;
  color: #395A75;
}

/* RESPONSIVE RULES & FLEX RESPONSIVENESS */
@media (max-width: 1026px) {
  .feature-grid>div, .service-cards>div {
    min-width: 160px;
    max-width: 320px;
    padding: 20px 14px 19px 15px;
  }
  .footer-top {
    flex-wrap: wrap;
    gap: 20px;
    padding: 26px 12px 16px 9px;
  }
}
@media (max-width: 990px) {
  .feature-grid, .service-cards, .testimonial-list {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
}
@media (max-width: 750px) {
  .hero {
    border-radius: 0 0 28px 28px;
    padding: 36px 0 23px;
  }
  .cta-banner {
    border-radius: 18px;
    padding: 23px 10px 20px 10px;
  }
  .container { padding: 0 8px; }
  .footer-top img {
    max-height: 36px;
  }
  .footer-contact, .footer-top nav {
    font-size: 0.94rem;
  }
}
@media (max-width: 650px) {
  .feature-grid>div, .service-cards>div, .testimonial-card, .card {
    min-width: 90vw;
    max-width: 99vw;
  }
  table { font-size: 0.96rem; }
  th, td { padding: 8px 4px; }
}
@media (max-width: 600px) {
  h1 { font-size: 1.52rem; }
  h2 { font-size: 1.19rem; }
  h3 { font-size: 1.01rem; }
  .section {
    margin-bottom: 36px;
    padding: 22px 7px;
  }
  .content-wrapper {
    gap: 14px;
  }
  .cta-btn {
    font-size: 1rem;
    padding: 9px 17px;
    border-radius: 18px;
  }
}
@media (max-width: 540px) {
  .footer-top {
    flex-direction: column;
    gap: 13px;
    align-items: stretch;
    padding: 13px 2.2vw 8px 2vw;
  }
  .footer-bottom {
    font-size: 0.85rem;
    padding: 10px 1vw 13px 1vw;
    border-radius: 0 0 10px 10px;
  }
  .cookie-modal {
    min-width: 80vw; max-width: 95vw;
    padding: 17px 9px 14px 8px;
  }
  .cookie-banner {
    padding: 14px 5vw 10px 5vw;
    flex-direction: column;
    gap: 12px;
    font-size: 0.97rem;
  }
  .cookie-banner-actions {
    gap: 6px;
    flex-direction: row;
  }
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* MICRO-INTERACTIONS AND ANIMATIONS */
.cta-btn,
button, .cookie-btn {
  transition: background .3s, color .3s, box-shadow .2s, transform .13s;
}
.cta-btn:active, button:active, .cookie-btn:active {
  transform: scale(0.98);
}

/* FOCUS ACCESSIBILITY */
a:focus, button:focus, .cta-btn:focus {
  outline: 2px solid #F2B33D;
  outline-offset: 2px;
}

/* SOFT SHADOWS TO EMBODY soft_pastel */
.feature-grid>div, .service-cards>div, .card, .testimonial-card {
  box-shadow: 0 2px 16px 0 #c2e9fb21;
}

/* SOFT PASTEL EXTRAS: BACKGROUNDS, COLORFUL SWATCHES */
body {
  background: linear-gradient(117deg, #F8F7FA 70%, #C2E9FB 100%);
  min-height: 100vh;
}

/* ===============================
   ENSURE NO OVERLAPPING, SPACING
   ===============================*/
.section, .card, .testimonial-card, .feature-grid>div, .service-cards>div {
  margin-bottom: 20px;
}
.section:not(:last-child) {
  margin-bottom: 60px;
}

.feature-grid, .service-cards, .testimonial-list, .card-container, .content-grid {
  gap: 20px;
  margin-bottom: 10px;
}

/* Utility classes for spacing/alignment if needed */
.mt-32 { margin-top: 32px; }
.mb-32 { margin-bottom: 32px; }
.mt-16 { margin-top: 16px; }
.mb-16 { margin-bottom: 16px; }
.mt-8 {margin-top:8px;}
.mb-8 {margin-bottom:8px;}

/***********************************/
/*         END OF STYLES           */
/***********************************/
