/*------------------------------------------------------------
  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%;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #F7F3ED;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  color: #2B3A55;
  background: #F7F3ED;
  min-height: 100vh;
  line-height: 1.65;
}
ul, ol {
  list-style: none;
}
a {
  color: #62A9CC;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #2B3A55;
  text-decoration: underline;
}
img {
  max-width: 100%;
  display: block;
}
input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
  appearance: none;
}
button,
.mobile-menu-toggle,
.mobile-menu-close {
  cursor: pointer;
}
/* Remove blue highlight iOS */
input,
textarea,
button,
select,
a {
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}

/*------------------------------------------------------------
  TYPOGRAPHY
------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&family=Roboto:wght@400;500;700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  color: #2B3A55;
  line-height: 1.18;
  margin-bottom: 14px;
  letter-spacing: -1px;
  text-shadow: 1px 2px 0 #F7F3ED;
}
h1 {
  font-size: 2.2rem;
  margin-bottom: 18px;
  color: #2B3A55;
}
h2 {
  font-size: 1.6rem;
  color: #62A9CC;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.2rem;
  color: #2B3A55;
}

p, ul, ol {
  margin-bottom: 16px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
}
strong {
  font-weight: 700;
}
.text-section ul {
  margin-bottom: 20px;
  margin-left: 24px;
  list-style: disc;
}
.text-section ul li {
  margin-bottom: 7px;
}

/*------------------------------------------------------------
  CONTAINER & LAYOUTS
------------------------------------------------------------*/
.container {
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 26px;
  box-shadow: 0 8px 32px rgba(98, 169, 204, 0.11);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #F7F3ED;
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(43,58,85,0.06);
  padding: 24px 20px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover, .feature-card:hover {
  box-shadow: 0 10px 25px rgba(43,58,85,0.15);
  transform: translateY(-6px) scale(1.025) rotate(-0.7deg);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Features Grid for Index page */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(98,169,204,0.09);
  padding: 24px 20px;
  min-width: 245px;
  max-width: 270px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  position: relative;
  transition: box-shadow 0.18s cubic-bezier(.68,.11,.36,.98), transform 0.20s;
  margin-bottom: 20px;
  border: 2.5px dashed #62A9CC;
  animation: featureArtisticFadeIn 1.2s cubic-bezier(.4,.85,.29,.97) both;
}
.feature-card img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  margin-bottom: 6px;
  filter: drop-shadow(0px 2px 8px rgba(43,58,85,0.05));
}
@keyframes featureArtisticFadeIn {
  0% { transform: translateY(22px) scale(.97) skewX(-3deg); opacity: 0; }
  100% { transform: none; opacity: 1; }
}

.service-list li,
.feature-list li {
  margin-bottom: 18px;
  background: #F7F3ED;
  border-radius: 11px;
  padding: 18px 18px 13px 22px;
  box-shadow: 0 3px 11px rgba(98,169,204,0.10);
  color: #2B3A55;
  border-left: 4px solid #62A9CC;
  position: relative;
  font-size: 1rem;
  transition: box-shadow 0.20s, transform 0.15s;
}
.service-list li:hover, .feature-list li:hover {
  box-shadow: 0 8px 22px rgba(43,58,85,.09);
  transform: scale(1.019) rotate(-.5deg);
}

/* FAQ Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq-accordion > div {
  background: #fff;
  border-radius: 11px;
  border-left: 5px solid #2B3A55;
  padding: 22px 18px 14px 20px;
  box-shadow: 0 2px 12px rgba(43,58,85,0.07);
  margin-bottom: 10px;
  position: relative;
  transition: box-shadow 0.18s, transform 0.16s;
}
.faq-accordion > div h2 {
  font-size: 1.11rem;
  color: #62A9CC;
  margin-bottom: 12px;
  line-height: 1.25;
  letter-spacing: 0;
}
.faq-accordion > div:hover {
  box-shadow: 0 6px 20px rgba(43,58,85,0.14);
  transform: translateY(-3px) scale(1.022);
}

/*------------------------------------------------------------
  HERO SECTION
------------------------------------------------------------*/
.hero {
  background: linear-gradient(108deg, #f7fafc 70%, #d9f3fb 100%);
  min-height: 330px;
  display: flex;
  align-items: center;
  position: relative;
  border-radius: 0 0 44px 44px;
  box-shadow: 0 14px 42px rgba(98, 169, 204, 0.12);
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 18px;
}
.hero h1 {
  font-size: 2.3rem;
  max-width: 740px;
  color: #2B3A55;
  background: none;
  margin-bottom: 8px;
  letter-spacing: -1px;
}
.hero p {
  font-size: 1.15rem;
  color: #2B3A55;
}


/*------------------------------------------------------------
  BUTTONS & CTA
------------------------------------------------------------*/
.cta-btn {
  background: #62A9CC;
  color: #fff;
  padding: 13px 36px;
  border-radius: 100px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: .03em;
  font-size: 1.07rem;
  line-height: 1.18;
  box-shadow: 0 6px 24px rgba(98,169,204,0.16);
  border: 2px solid #62A9CC;
  transition: background 0.22s, color 0.22s, box-shadow 0.16s, transform .14s;
  margin-top: 6px;
  margin-bottom: 10px;
  text-shadow: 1px 2px 0 rgba(43,58,85,0.07);
}
.cta-btn:hover, .cta-btn:focus {
  background: #2B3A55;
  color: #fff;
  box-shadow: 0 10px 22px rgba(43,58,85,0.15);
  border-color: #2B3A55;
  transform: translateY(-1px) scale(1.035) skewX(-2deg);
  text-decoration: none;
}

button, .mobile-menu-toggle, .mobile-menu-close {
  background: #62A9CC;
  color: #fff;
  border-radius: 10px;
  padding: 9px 15px;
  font-size: 1.18rem;
  border: none;
  box-shadow: 0 2px 12px rgba(43,58,85,0.13);
  transition: background 0.15s, transform 0.12s;
}
button:hover, .mobile-menu-toggle:hover, .mobile-menu-close:hover {
  background: #2B3A55;
  color: #fff;
  transform: scale(1.06);
}

/*------------------------------------------------------------
  TESTIMONIALS
------------------------------------------------------------*/
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 20px;
  background: #f7fafc;
  border-radius: 20px;
  margin-bottom: 22px;
  border: 2px dashed #2B3A55;
  box-shadow: 0 4px 18px rgba(98,169,204,0.09);
  max-width: 470px;
  min-width: 0;
  color: #222;
}
.testimonial-card p {
  font-size: 1.05rem;
  font-style: italic;
  color: #2B3A55;
  text-align: center;
  margin-bottom: 7px;
}
.testimonial-card span {
  color: #62A9CC;
  font-size: .95rem;
  font-weight: 500;
  font-family: 'Montserrat', Arial, sans-serif;
}

/*------------------------------------------------------------
  HEADER & NAVIGATION
------------------------------------------------------------*/
header {
  background: #fff;
  border-bottom: 3px solid #62A9CC;
  box-shadow: 0 2px 20px rgba(98,169,204,0.07);
  position: sticky;
  top: 0;
  z-index: 1020;
  min-height: 64px;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 64px;
}
header img {
  height: 56px;
  width: auto;
}
header nav {
  display: flex;
  gap: 22px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #2B3A55;
  padding: 10px 6px;
  border-radius: 5px;
  transition: background .18s, color .15s;
}
header nav a:hover, header nav a:focus {
  background: #62A9CC;
  color: #fff;
}
header .cta-btn {
  margin-left: 16px;
  margin-top: 0;
  margin-bottom: 0;
}
.mobile-menu-toggle {
  display: none;
}

/*------------------------------------------------------------
  MOBILE BURGER MENU
------------------------------------------------------------*/
.mobile-menu-toggle {
  position: absolute;
  right: 24px;
  top: 11px;
  z-index: 1100;
  display: none;
  background: #62A9CC;
  color: #fff;
  border: none;
  border-radius: 9px;
  width: 44px;
  height: 44px;
  font-size: 2.05rem;
  align-items: center;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 84vw;
  max-width: 370px;
  height: 100vh;
  background: #fff;
  box-shadow: -4px 0 32px rgba(98, 169, 204, 0.38);
  z-index: 2000;
  transform: translateX(110%);
  transition: transform 0.38s cubic-bezier(.52,.02,.4,1.14);
  display: flex;
  flex-direction: column;
  padding-top: 25px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #2B3A55;
  color: #fff;
  border: none;
  border-radius: 7px;
  width: 42px;
  height: 42px;
  font-size: 1.75rem;
  align-self: flex-end;
  margin: 0 24px 16px 0;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0 0 30px;
}
.mobile-nav a {
  font-size: 1.14rem;
  color: #2B3A55;
  padding: 11px 0;
  border-radius: 6px;
  transition: background 0.16s, color 0.17s;
  font-family: 'Montserrat', Arial, sans-serif;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #62A9CC;
  color: #fff;
}

@media (max-width: 1020px) {
  .container {
    max-width: 96vw;
  }
}
@media (max-width: 860px) {
  .container { padding: 0 5vw; }
  header .container { gap: 6px; }
  .features-grid { justify-content: center; }
  .feature-card { min-width: 195px; max-width: 220px; }
}
@media (max-width: 768px) {
  header nav, header .cta-btn {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex !important;
    justify-content: center;
    align-items: center;
  }
  .section, .hero, .card, .feature-card, .testimonial-card {
    border-radius: 14px;
    padding-left: 12px;
    padding-right: 12px;
  }
  .features-grid {
    gap: 13px;
  }
  .feature-card {
    min-width: 0;
    max-width: 100%;
    flex: 1 1 100%;
    padding: 20px 14px;
  }
  .content-wrapper, .text-image-section, .content-grid {
    gap: 14px;
  }
}
@media (max-width: 700px) {
  .container {
    padding: 0 2.5vw;
  }
  h1 { font-size: 1.35rem; }
  h2 { font-size: 1.11rem; }
  .cta-btn {
    font-size: .99rem;
    padding: 11px 20px;
  }
}
@media (max-width: 600px) {
  html { font-size: 15px; }
  .content-wrapper {
    gap: 11px;
  }
  .section, .hero {
    padding: 18px 3vw 24px 3vw;
    margin-bottom: 36px;
    border-radius: 9px;
  }
  .features-grid {
    gap: 0.6rem;
  }
  .feature-card {
    margin-bottom: 16px;
    min-width: 0; max-width: 100%;
  }
}
@media (max-width: 500px) {
  html { font-size: 14px; }
  .footer-contact p {
    font-size: 0.94rem;
  }
}

@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
  }
}

/*------------------------------------------------------------
  FOOTER
------------------------------------------------------------*/
footer {
  background: #2B3A55;
  padding: 33px 0 14px 0;
  color: #fff;
  letter-spacing: 0.01em;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
  align-items: center;
}
footer nav {
  display: flex;
  gap: 22px;
  margin-bottom: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
footer nav a {
  color: #fff;
  font-size: .97rem;
  padding: 6px 7px;
  border-radius: 4px;
  transition: background .15s, color .17s;
  font-family: 'Montserrat', Arial, sans-serif;
}
footer nav a:hover, footer nav a:focus {
  background: #62A9CC;
  color: #fff;
}
.footer-contact p, .footer-contact a {
  color: #fff;
  opacity: .95;
  font-size: 0.99rem;
  margin-bottom: 6px;
}
.footer-contact a {
  text-decoration: underline;
  transition: color .16s;
}
.footer-contact a:hover {
  color: #62A9CC;
}


/*------------------------------------------------------------
  COOKIE CONSENT BANNER + MODAL
------------------------------------------------------------*/
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #2B3A55;
  color: #fff;
  z-index: 4000;
  padding: 30px 10vw 18px 4vw;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 -4px 24px #62A9CC44;
  animation: cookieSlideIn .65s cubic-bezier(.4,1.14,.29,.97);
}
@keyframes cookieSlideIn {
  0% { transform: translateY(160%); opacity: 0; }
  100% { transform: none; opacity: 1; }
}
.cookie-buttons {
  display: flex;
  gap: 18px;
}
.cookie-btn, .cookie-settings-btn {
  padding: 9px 19px;
  border-radius: 9px;
  background: #62A9CC;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  transition: background 0.2s, color 0.18s, transform 0.13s;
}
.cookie-btn:hover, .cookie-settings-btn:hover {
  background: #2B3A55;
  color: #fff;
  transform: scale(1.045);
}
.cookie-btn.reject {
  background: #F7F3ED;
  color: #2B3A55;
  border: 2px solid #62A9CC;
}
.cookie-btn.reject:hover {
  background: #62A9CC;
  color: #fff;
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(43,58,85,0.84);
  z-index: 4100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #fff;
  color: #2B3A55;
  border-radius: 21px;
  padding: 36px 26px;
  min-width: 310px;
  max-width: 95vw;
  box-shadow: 0 14px 44px rgba(98,169,204,0.17);
  font-family: 'Roboto', Arial, sans-serif;
  display: flex;
  flex-direction: column;
  gap: 19px;
  position: relative;
  animation: modalBounceIn .6s cubic-bezier(.3,.74,.29,.97);
}
@keyframes modalBounceIn {
  0% { transform: translateY(40px) scale(.92); opacity: 0; }
  80% { transform: translateY(-3px) scale(1.01); opacity: 1; }
  100% { transform: none; }
}
.cookie-modal h3 {
  font-size: 1.18rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #62A9CC;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
}
.cookie-modal-category label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.01rem;
  color: #2B3A55;
}
.cookie-modal-category input[type="checkbox"]:not(:disabled) {
  border: 2px solid #62A9CC;
  accent-color: #62A9CC;
}
.cookie-modal-category input[type="checkbox"]:disabled {
  cursor: not-allowed;
  opacity: .6;
}
.cookie-modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 17px;
}
.cookie-modal-close {
  position: absolute;
  top: 15px;
  right: 19px;
  background: #62A9CC;
  color: #fff;
  border-radius: 7px;
  padding: 4px 12px;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background .16s;
}
.cookie-modal-close:hover {
  background: #2B3A55;
}
/* Responsive for Cookie Banner & Modal */
@media (max-width: 600px) {
  .cookie-banner {
    padding: 22px 4vw 10px 2vw;
    flex-direction: column;
    align-items: flex-start;
    font-size: .99rem;
    gap: 10px;
  }
  .cookie-modal {
    padding: 21px 11px;
  }
  .cookie-modal h3 {
    font-size: 1.09rem;
  }
}

/*------------------------------------------------------------
  ARTISTIC EXTRAS & COLOR ACCENTS
------------------------------------------------------------*/
.section {
  position: relative;
  box-shadow: 0 4px 28px rgba(98,169,204,0.09), 0 1.5px 7px #62A9CC16;
  background: linear-gradient(98deg, #f7f3ed 90%, #62A9CC13 100%);
}
.section:before {
  content: '';
  position: absolute;
  width: 60px;
  height: 60px;
  left: -22px;
  top: -22px;
  background: #62A9CC17;
  border-radius: 54% 46% 74% 26%/64% 36% 68% 32%;
  z-index: 0;
  pointer-events: none;
  filter: blur(2px);
  opacity: .35;
}
.section:after {
  content: '';
  position: absolute;
  width: 43px;
  height: 43px;
  right: -12px;
  bottom: -12px;
  background: #2B3A5512;
  border-radius: 70% 30% 44% 56%/54% 46% 52% 48%;
  z-index: 0;
  pointer-events: none;
  filter: blur(1.7px);
  opacity: .28;
}
.section > *, .card > *, .feature-card > * {
  position: relative;
  z-index: 1;
}

/* Artistic underlines for h2 */
h2 {
  display: inline-block;
  position: relative;
}
h2:after {
  content: '';
  display: block;
  width: 45%;
  height: 5px;
  border-radius: 3px;
  background: #F7F3ED;
  background: #62A9CC44;
  position: absolute;
  left: 0;
  bottom: -6px;
  z-index: 0;
}

/* Artistic list icons */
.text-section ul li:before, .feature-list li:before, .service-list li:before {
  content: '●';
  color: #62A9CC;
  font-size: .87em;
  margin-right: 11px;
  position: relative;
  top: -2px;
}

/*------------------------------------------------------------
  ANIMATIONS FOR BUTTONS, CARDS ETC
------------------------------------------------------------*/
.cta-btn, .cookie-btn, .cookie-settings-btn, .mobile-menu-toggle, .mobile-menu-close {
  transition: background 0.22s, box-shadow 0.22s, color 0.14s, transform .16s;
}
.card, .feature-card, .service-list li, .feature-list li, .testimonial-card, .faq-accordion > div {
  transition: box-shadow 0.20s, transform 0.17s, background 0.13s;
}

/*------------------------------------------------------------
  MISC CLASSES
------------------------------------------------------------*/
.text-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.team-values {
  margin-top: 16px;
}
.team-values ul {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
/* FAQ: visual separation */
.faq-accordion > div:not(:last-child) {
  margin-bottom: 14px;
}

/*------------------------------------------------------------
  UTILITIES & OVERRIDES
------------------------------------------------------------*/
::-webkit-scrollbar { width: 13px; background: #F7F3ED; }
::-webkit-scrollbar-thumb { background: #62A9CC55; border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: #2B3A5577; }

/* Prevent overlapping, ensure clear breathing room (GUARANTEED) */
.section, .card, .feature-card, .testimonial-card, .faq-accordion > div, .service-list li, .feature-list li {
  margin-bottom: 20px;
}
/* All cards/sections have minimum 20px margin between them */
.card-container, .features-grid, .content-grid {
  gap: 24px;
}
.testimonial-card + .testimonial-card {
  margin-left: 22px;
}

/* Adjust spacing on mobile so nothing overlaps and no overflow */
@media (max-width: 768px) {
  .card-container, .features-grid, .content-grid {
    flex-direction: column;
    gap: 13px;
  }
  .testimonial-card + .testimonial-card {
    margin-left: 0;
  }
}
section {
  padding: 15px;
}