/* 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;
  background: none;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  font-size: 16px;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #FCFCFC;
  color: #252A34;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #08D9D6;
  text-decoration: none;
  transition: color 0.2s;
  word-break: break-word;
}
a:hover, a:focus {
  color: #252A34;
  text-decoration: underline;
}
ul, ol {
  list-style: none;
}
strong {
  font-weight: 700;
}

/* TYPOGRAPHY --------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Arial Rounded MT Bold', Arial, sans-serif;
  font-weight: 700;
  color: #252A34;
}
h1 {
  font-size: 2.7rem;
  line-height: 1.1;
  margin-bottom: 28px;
  letter-spacing: -.5px;
}
h2 {
  font-size: 2rem;
  line-height: 1.12;
  margin-bottom: 20px;
  position: relative;
  letter-spacing: -.3px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 14px;
  font-weight: 600;
}
h4 {
  font-size: 1.1rem;
  font-weight: 500;
}
p {
  margin-bottom: 18px;
  color: #2B2E39;
}
small {
  font-size: .92em;
}

.text-section {
  max-width: 770px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

/* LAYOUT & CONTAINER -------------------------------------------- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  border-radius: 16px;
}

/* SPACING & FLEX PATTERNS ---------------------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 14px;
  padding: 24px 22px;
  box-shadow: 0 6px 28px 0 rgba(37,42,52,0.08);
  transition: box-shadow 0.18s, transform 0.18s;
  flex: 1 1 270px;
  min-width: 230px;
}
.card:hover {
  box-shadow: 0 10px 36px rgba(8,217,214,0.17);
  transform: translateY(-3px) scale(1.018);
  z-index: 2;
}
.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;
  padding: 20px;
  background: #F8F3D4;
  border-radius: 14px;
  box-shadow: 0 3px 12px 0 rgba(37,42,52,0.06);
  margin-bottom: 28px;
  color: #252A34;
  font-style: italic;
  position: relative;
  flex: 1 1 340px;
  min-width: 220px;
}
.testimonial-card p {
  color: #252A34;
  margin-bottom: 10px;
  font-size: 1.05rem;
  line-height: 1.7;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 24px;
}

/* HERO SECTION -------------------------------------------------- */
.hero {
  background: linear-gradient(118deg, #08D9D6 0%, #F8F3D4 100%);
  background-size: 200% 200%;
  color: #252A34;
  width: 100%;
  padding: 60px 0 42px 0;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 38px;
  border-radius: 0 0 80px 0 / 0 0 70px 0;
  box-shadow: 0 10px 26px 0 rgba(8,217,214,0.13);
  position: relative;
  overflow: hidden;
}
.hero .content-wrapper {
  margin: 0;
  gap: 18px;
}
.hero h1 {
  color: #252A34;
  font-family: 'Montserrat', 'Arial Rounded MT Bold', Arial, sans-serif;
  letter-spacing: .5px;
  text-shadow: 1px 2px 0 #fff6;
}
.hero p {
  color: #222;
}

/* FEATURE GRID & LISTS ------------------------------------------- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 36px;
  margin: 16px 0 0 0;
  width: 100%;
  justify-content: flex-start;
}
.feature-grid li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.13rem;
  font-family: 'Roboto', Arial, sans-serif;
  background: #fff;
  box-shadow: 0 3px 14px 0 rgba(8,217,214,0.10);
  padding: 18px 20px;
  border-radius: 10px;
  color: #252A34;
  min-width: 265px;
  flex: 1 1 265px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.22s;
}
.feature-grid li:hover {
  box-shadow: 0 7px 28px rgba(8,217,214,0.18);
  transform: translateY(-2px) scale(1.025);
}
.feature-grid img {
  width: 38px; height: 38px;
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 16px;
  width: 100%;
}
.service-list li {
  background: #fff;
  border: 2.5px solid #08D9D6;
  border-radius: 12px;
  padding: 18px 20px 20px 20px;
  min-width: 240px;
  flex: 1 1 225px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.17s, border-color 0.15s, transform 0.2s;
  margin-bottom: 22px;
  box-shadow: 0 2px 9px 0 rgba(8,217,214,0.13);
  position: relative;
}
.service-list li strong {
  color: #252A34;
  font-size: 1.08rem;
}
.service-list li:hover {
  border-color: #252A34;
  box-shadow: 0 4px 19px rgba(37,42,52,0.15);
  transform: translateY(-3px) scale(1.014);
}

/* CONTACT DETAILS ---------------------------------------------- */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 1.04rem;
  color: #252A34;
}
.contact-details img {
  width: 22px;
  height: 22px;
  vertical-align: middle;
}

/* NAVIGATION & HEADER ------------------------------------------ */
header {
  background: #fff;
  box-shadow: 0 2px 10px 0 rgba(37,42,52,0.06);
  position: sticky;
  top: 0;
  z-index: 20;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  flex-wrap: wrap;
  gap: 18px;
}
.logo img {
  height: 44px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1em;
  color: #252A34;
  padding: 6px 1px 6px 1px;
  border-bottom: 2.5px solid transparent;
  background: none;
  border-radius: 0;
  transition: color 0.18s, border-color 0.22s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  color: #08D9D6;
  border-bottom: 2.5px solid #08D9D6;
}

/* CTA BUTTONS -------------------------------------------------- */
.cta {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: .3px;
  padding: 13px 34px;
  font-size: 1.13rem;
  border-radius: 30px;
  cursor: pointer;
  border: none;
  outline: none;
  display: inline-block;
  transition: background 0.14s, color 0.14s, box-shadow 0.14s, transform 0.18s;
  box-shadow: 0 2px 10px 0 rgba(37,42,52,0.07);
  margin-top: 14px;
  margin-bottom: 10px;
}
.cta.primary {
  background: #08D9D6;
  color: #252A34;
  border: 2px solid #08D9D6;
}
.cta.primary:hover, .cta.primary:focus {
  background: #252A34;
  color: #fff;
  border-color: #252A34;
  transform: scale(1.045) translateY(-1px);
}
.cta.secondary {
  background: #252A34;
  color: #F8F3D4;
  border: 2px solid #252A34;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #08D9D6;
  color: #252A34;
  border-color: #08D9D6;
  transform: scale(1.045) translateY(-1px);
}

/* FOOTER ------------------------------------------------------ */
footer {
  background: #252A34;
  color: #F8F3D4;
  font-size: 1rem;
  padding: 45px 0 30px 0;
  margin-top: 47px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 26px;
  margin-bottom: 10px;
}
.footer-nav a {
  color: #F8F3D4;
  font-size: 1.03rem;
  opacity: 0.8;
  transition: opacity 0.14s, text-decoration 0.14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  opacity: 1;
  text-decoration: underline;
}
footer span {
  font-size: 0.97rem;
}

/* MOBILE NAVIGATION ------------------------------------------- */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 18px;
  top: 23px;
  font-size: 2.25rem;
  line-height: 1;
  background: #fff;
  border: 2px solid #08D9D6;
  color: #08D9D6;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  z-index: 201;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-toggle:active {
  background: #08D9D6;
  color: #fff;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  z-index: 9999;
  background: #252A34;
  color: #F8F3D4;
  width: 100vw;
  height: 100vh;
  left: 0;
  top: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  transition: transform 0.37s cubic-bezier(.78,.08,.33,1.12), opacity 0.26s;
}
.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
  transform: translateX(0);
  box-shadow: -2px 0 38px 0 rgba(20,30,42,0.23);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 24px 24px 0 0;
  font-size: 2.18rem;
  background: none;
  border: none;
  color: #F8F3D4;
  cursor: pointer;
  z-index: 10001;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  margin: 34px 0 0 42px;
}
.mobile-nav a {
  color: #F8F3D4;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.43rem;
  padding: 8px 0;
  font-weight: 500;
  transition: color 0.15s, padding-left 0.18s;
  border-left: 4px solid transparent;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #08D9D6;
  border-left: 4px solid #08D9D6;
  padding-left: 13px;
}

@media (max-width: 1000px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (max-width: 1000px) {
  .cta.primary {
    margin-right: 62px;
  }
}
@media (max-width: 600px) {
  .footer-nav {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
}

/* COOKIE CONSENT BANNER & MODAL ------------------------------- */
#cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #252A34;
  color: #F8F3D4;
  z-index: 8889;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 24px 18px 20px 18px;
  box-shadow: 0 -3px 24px 0 rgba(8, 217, 214, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(120%);
  transition: opacity 0.28s, transform 0.32s;
  font-size: 1.08rem;
}
#cookie-consent-banner.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
#cookie-consent-banner .cookie-banner-content {
  flex: 1 1 0;
  color: #F8F3D4;
  margin-bottom: 14px;
}
#cookie-consent-banner .cookie-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.cookie-btn {
  border: none;
  background: #08D9D6;
  color: #252A34;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 10px 23px;
  border-radius: 22px;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 2px;
  cursor: pointer;
  margin-right: 0;
  transition: background 0.13s, color 0.13s, box-shadow 0.17s;
  box-shadow: 0 1.5px 10px 0 rgba(8,217,214,0.10);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #F8F3D4;
  color: #252A34;
  box-shadow: 0 3px 18px rgba(8,217,214,0.16);
}
.cookie-btn.secondary {
  background: #F8F3D4;
  color: #252A34;
}
.cookie-btn.ghost {
  background: transparent;
  color: #F8F3D4;
  border: 2px solid #F8F3D4;
}
.cookie-btn.ghost:hover, .cookie-btn.ghost:focus {
  background: #F8F3D4;
  color: #252A34;
}
#cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(37,42,52,0.63);
  z-index: 9991;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.26s;
}
#cookie-modal-overlay.visible {
  pointer-events: all;
  opacity: 1;
}
#cookie-modal {
  background: #fff;
  border-radius: 16px;
  padding: 34px 24px 28px 24px;
  min-width: 318px;
  color: #252A34;
  box-shadow: 0 8px 35px 0 rgba(8,217,214,0.19);
  z-index: 9992;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 95vw;
  max-height: 95vh;
  overflow-y: auto;
}
#cookie-modal h2 {
  font-size: 1.48rem;
  margin-bottom: 13px;
}
#cookie-modal .modal-close {
  position: absolute;
  top: 13px;
  right: 17px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #08D9D6;
  cursor: pointer;
  z-index: 10001;
}
#cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 14px;
  padding: 0 0 14px 0;
  border-bottom: 1.5px solid #eee;
}
.cookie-category:last-child {
  border: none;
}
.cookie-category-label {
  font-weight: 600;
  color: #252A34;
}
.cookie-category-toggle {
  margin-left: auto;
}

/* Custom Toggle Switch */
.switch {
  position: relative;
  width: 46px; height: 26px;
  display: inline-block;
}
.switch input {
  opacity: 0;
  width: 0; height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #ccc;
  border-radius: 26px;
  transition: background 0.16s;
}
.slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 2px;
  bottom: 2px;
  background: #fff;
  border-radius: 50%;
  transition: 0.16s;
  box-shadow: 0 2px 6px 0 rgba(8,217,214,0.09);
}
input:checked + .slider {
  background: #08D9D6;
}
input:checked + .slider:before {
  transform: translateX(20px);
  background: #F8F3D4;
}
/* END Cookie ------------------------------------------------------------------------------------------- */

/* UTILITY: ARTISTIC UNDERLINES, DECORATIVE STROKES ETC --------- */
h2:after {
  content: "";
  display: block;
  width: 67px;
  height: 5px;
  background: #08D9D6;
  margin-top: 8px;
  border-radius: 10px;
  margin-left: 0;
  opacity: 0.78;
}
@media (max-width: 770px) { h2:after { width: 37px; height: 4px; } }

/* Add unique accent splashes for artistic feel (SVG patterns or pseudo-elements) */
.hero::before {
  content: "";
  position: absolute;
  right: -82px; top: -52px;
  width: 190px; height: 190px;
  background: #F8F3D4;
  border-radius: 60% 60% 38% 80% / 48% 50% 65% 80%;
  opacity: 0.32;
  filter: blur(1px);
  z-index: 2;
}
.hero::after {
  content: "";
  position: absolute;
  left: -67px; bottom: -60px;
  width: 130px; height: 110px;
  background: #08D9D6;
  border-radius: 64% 42% 100% 58% / 54% 63% 52% 76%;
  opacity: 0.19;
  filter: blur(6px);
  z-index: 2;
}

.card:before, .service-list li:before {
  content: "";
  position: absolute;
  left: -16px; top: -16px;
  width: 39px; height: 36px;
  background: #08D9D6;
  border-radius: 77% 33% 67% 43%;
  opacity: 0.08;
  z-index: 1;
  pointer-events: none;
}
.service-list li:before {
  left: unset; right: -16px; top: -13px;
  width: 36px; height: 34px;
  background: #252A34;
  opacity: 0.07;
}


/* TRANSITIONS & INTERACTIVITY ---------------------------------- */
button, .cta, .cookie-btn {
  transition: all 0.13s cubic-bezier(.62,.4,.14,1.01);
}
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  background: #F8F3D4;
  border: 1.5px solid #08D9D6;
  border-radius: 6px;
  padding: 10px 14px;
  margin-bottom: 14px;
  outline: none;
  color: #252A34;
  transition: border-color 0.16s, box-shadow 0.13s;
}
input:focus, textarea:focus, select:focus {
  border-color: #252A34;
  box-shadow: 0 2px 12px rgba(8,217,214,0.09);
}

/* ARTISTIC FONTS (load fallbacks with artistic touch) ---------- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;500;700&display=swap');
h1, h2, h3, .cta {
  font-family: 'Montserrat', 'Arial Rounded MT Bold', Arial, sans-serif;
  letter-spacing: 0.02em;
}

/* MEDIA QUERIES: RESPONSIVE ADJUSTMENTS ----------------------- */
@media (max-width: 1100px) {
  .container {
    max-width: 930px;
  }
  .feature-grid, .service-list {
    gap: 16px;
  }
  .main-nav { gap: 20px; }
}
@media (max-width: 900px) {
  .container { max-width: 97vw; }
  .footer-nav { gap: 10px; }
  .section { padding: 33px 10px; }
  .service-list, .feature-grid { flex-direction: column; gap: 20px; }
}
@media (max-width: 768px) {
  .section { padding: 23px 7px; margin-bottom: 36px; }
  .container { padding: 0 5px; }
  .content-wrapper { gap: 13px; }
  .main-nav { gap: 13px; }
  .feature-grid, .service-list { flex-direction: column; gap: 17px; }
  .testimonial-card { min-width: 0; }
  .text-image-section { flex-direction: column; gap: 19px; }
  .hero { padding: 38px 0 26px 0; min-height: 130px; border-radius: 0 0 46px 0 / 0 0 37px 0; }
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.48rem; }
}

@media (max-width: 500px) {
  .container { max-width: 99vw; }
  .hero { padding: 21px 0 16px 0; }
  .service-list li, .feature-grid li {
    min-width: unset;
    font-size: 1.01rem;
    padding: 13px 9px;
  }
  .card, .testimonial-card {
    min-width: unset;
    padding: 15px 7px;
  }
}

/* PRINT -------------------------------------------------------- */
@media print {
  header, footer, #cookie-consent-banner, #cookie-modal-overlay, .mobile-menu { display: none !important; }
  .container { max-width: 100vw !important; padding: 0; }
  .section { margin-bottom: 30px; padding: 0; }
}

/* EXTRA: ANIMATION KEYFRAMES ----------------------------------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
.section, .content-wrapper, .card, .testimonial-card, .service-list li, .cta, .feature-grid li {
  animation: fadeInUp .28s cubic-bezier(.7,.02,.21,1.16) backwards;
}

/* END OF STYLE ------------------------------------------------- */
