/* CSS RESET & BASE STYLES - SOFT PASTEL DESIGN */
html {
  box-sizing: border-box;
  font-size: 100%;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  min-height: 100vh;
  background: #F9FAFC;
  color: #453A4D;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.01em;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #14A7C7;
  text-decoration: none;
  transition: color 0.18s ease;
}
a:hover, a:focus {
  color: #FFBCB8;
  outline: none;
}
ul, ol {
  list-style: none;
}
button, input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  background: none;
  border: none;
  outline: none;
}
button {
  cursor: pointer;
}

/* SOFT PASTEL COLOR PALETTE */
:root {
  --color-primary: #23272B;
  --color-secondary: #74C8E2;
  --color-accent: #F1F2F6;
  --color-pink: #FFDFE3;
  --color-blue: #C9EEFF;
  --color-green: #C8F8CA;
  --color-yellow: #FFF7B0;
  --color-violet: #F2E6FF;
  --color-shadow: 0 2px 16px 0 rgba(137,131,189,.08);
  --color-border: #E6ECF5;
  --bg-gradient: linear-gradient(135deg, #FFDFE3 30%, #C9EEFF 100%);
}

/* TYPOGRAPHY */
h1, .h1 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 2.375rem;
  font-weight: 700;
  line-height: 1.15;
  color: #23272B;
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}
h2, .h2 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.625rem;
  font-weight: 600;
  line-height: 1.2;
  color: #23272B;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}
h3, .h3 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #23272B;
  margin-bottom: 12px;
}
h4, .h4 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #23272B;
  margin-bottom: 8px;
}
p, li {
  font-size: 1rem;
  color: #453A4D;
}

strong {
  color: #118AB2;
  font-weight: 600;
}

/* CONTAINERS & LAYOUT */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 28px;
  box-shadow: var(--color-shadow);
  transition: box-shadow 0.18s;
}
.section:nth-child(even) {
  background: linear-gradient(115deg, #FFDFE3 35%, #C9EEFF 80%, #F1F2F6);
}

.service-list, .category-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.category-grid > div,
.service-list > div {
  flex: 1 1 230px;
  background: #fff;
  border-radius: 20px;
  padding: 28px 22px;
  box-shadow: var(--color-shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  position: relative;
  margin-bottom: 20px;
  border: 1px solid var(--color-border);
  min-width: 230px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.category-grid > div:hover,
.service-list > div:hover {
  box-shadow: 0 6px 32px 0 rgba(137,131,189,.14);
  transform: translateY(-4px) scale(1.025);
}
.price {
  font-weight: 600;
  color: #14A7C7;
  background: #F2E6FF;
  border-radius: 8px;
  padding: 4px 12px;
  margin-top: 8px;
  font-size: 1rem;
}

/* CARDS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--color-shadow);
  padding: 28px 24px;
  transition: box-shadow 0.16s, transform 0.16s;
}
.card:hover {
  box-shadow: 0 6px 24px rgba(137,131,189,.12);
  transform: translateY(-3px);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.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;
  margin-bottom: 32px;
}

/* FEATURE & TESTIMONIALS */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 18px 18px 14px 18px;
  background: #C8F8CA;
  border-radius: 16px;
  min-width: 190px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--color-shadow);
  margin-bottom: 20px;
  border-left: 5px solid #74C8E2;
  transition: box-shadow 0.15s, transform 0.15s;
}
.testimonial-card p {
  color: #23272B;
  font-size: 1.1rem;
}
.testimonial-card span {
  font-size: 0.98rem;
  color: #118AB2;
}
.testimonial-card:hover {
  box-shadow: 0 6px 32px rgba(137,131,189,0.13);
  transform: scale(1.01);
}


/* HEADER & NAVIGATION */
header {
  position: sticky;
  top: 0;
  background: rgba(252,252,255,0.98);
  z-index: 100;
  box-shadow: 0 2px 9px 0 rgba(178,193,231,0.07);
}
nav {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
nav ul {
  display: flex;
  align-items: center;
  gap: 22px;
}
nav ul li {
  list-style: none;
}
nav ul li a {
  color: #23272B;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 12px;
  transition: background 0.19s, color 0.17s;
}
nav ul li a:hover,
nav ul li a:focus {
  background: #FFDFE3;
  color: #14A7C7;
}
nav a.cta {
  padding: 11px 26px;
  border-radius: 18px;
  background: linear-gradient(120deg,#C9EEFF 0%,#F2E6FF 100%);
  color: #23272B;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: var(--color-shadow);
  border: 2px solid #14A7C7;
  margin-left: 18px;
  transition: background 0.16s, color 0.18s, border-color 0.18s;
}
nav a.cta:hover,
nav a.cta:focus {
  background: #14A7C7;
  color: #fff;
  border-color: #74C8E2;
  text-decoration: none;
}
nav img {
  height: 38px;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  font-size: 2.3rem;
  background: #C9EEFF;
  border-radius: 12px;
  border: none;
  width: 50px;
  height: 50px;
  color: #118AB2;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  transition: box-shadow 0.12s, background 0.15s;
}
.mobile-menu-toggle:active {
  background: #FFDFE3;
  color: #23272B;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1200;
  background: rgba(255,255,255,0.97);
  transform: translateX(120vw);
  transition: transform 0.35s cubic-bezier(0.63,0,0.27,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 24px;
  box-shadow: 0 3px 22px rgba(93,174,175,0.08);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  margin-left: auto;
  font-size: 2.1rem;
  color: #118AB2;
  background: transparent;
  border: none;
  padding: 8px 18px;
  border-radius: 12px;
  transition: background 0.15s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #FFDFE3;
  color: #23272B;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  margin: 40px 24px 0 32px;
}
.mobile-nav a {
  color: #23272B;
  font-size: 1.1rem;
  border-radius: 10px;
  padding: 13px 8px 13px 18px;
  font-weight: 500;
  transition: background 0.15s, color 0.14s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #C9EEFF;
  color: #14A7C7;
}

/* Main - spacing & content */
main {
  display: flex;
  flex-direction: column;
  gap: 42px;
  padding-top: 30px;
  margin-bottom: 70px;
}
main section {
  border: none;
  box-shadow: none;
}

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

/* BUTTON STYLES */
.cta, .btn {
  background: linear-gradient(120deg,#FFDFE3 55%,#C9EEFF 110%);
  color: #118AB2;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 11px 26px;
  border-radius: 18px;
  font-size: 1.05rem;
  border: 2px solid #C9EEFF;
  box-shadow: 0 2px 8px 0 #f2e6ff46;
  display: inline-block;
  margin-top: 22px;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.17s, color 0.18s, box-shadow 0.19s, border-color 0.17s;
}
.cta:hover,
.cta:focus, .btn:hover, .btn:focus {
  background: #118AB2;
  color: #fff;
  border-color: #FFDFE3;
  box-shadow: 0 4px 16px 0 #C9EEFF55;
  text-decoration: none;
}

/* LISTS, DETAILS, ICONS */
ul, ol {
  margin-left: 18px;
  margin-bottom: 8px;
  padding-left: 8px;
}
ul li, ol li {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #23272B;
  line-height: 1.65;
  position: relative;
  padding-left: 24px;
}
ul li strong {
  color: #14A7C7;
  font-weight: 600;
}
ul li img, .contact-list img {
  vertical-align: middle;
  height: 18px;
  width: 18px;
  margin-right: 8px;
}

/* CONTACT DATA */
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 12px;
}


/* FOOTER */
footer {
  background: linear-gradient(102deg,#FFF7B0 18%, #C9EEFF 82%, #F1F2F6);
  padding: 50px 0 16px 0;
  color: #23272B;
  margin-top: 38px;
  border-radius: 36px 36px 0 0;
  box-shadow: 0 -2px 22px 0 #C9EEFF11;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 18px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: flex-start;
  justify-content: space-between;
}
footer a {
  color: #118AB2;
  text-decoration: none;
}
footer a:hover {
  color: #FF65A3;
  text-decoration: underline;
}
footer nav ul, footer nav {
  display: flex;
  gap: 20px;
}
footer img {
  height: 36px;
  margin-bottom: 8px;
}
footer p {
  margin-bottom: 0;
  margin-top: 12px;
  font-size: 1rem;
  color: #23272B;
}
footer div span {
  font-size: 0.99rem;
  color: #23272B;
}
footer div span+span {
  margin: 0 8px;
  color: #70B1B1;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  z-index: 2000;
  background: linear-gradient(90deg, #FFDFE3 60%, #C9EEFF 120%);
  box-shadow: 0 -3px 18px rgba(178,193,231,.12);
  padding: 21px 14px 17px 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  border-radius: 22px 22px 0 0;
  animation: cookieSlideIn 0.4s cubic-bezier(.63,0,.27,1);
}
@keyframes cookieSlideIn {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  color: #23272B;
  font-size: 1rem;
  text-align: center;
  max-width: 620px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 8px;
}
.cookie-banner button {
  min-width: 120px;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 8px 20px;
  border-radius: 13px;
  font-size: 1rem;
  border: none;
  margin: 0;
  transition: background 0.15s, color 0.13s;
}
.cookie-banner .accept {
  background: #C8F8CA;
  color: #174063;
  border: 2px solid #32C48D;
}
.cookie-banner .accept:hover{
  background: #32C48D;
  color: #fff;
}
.cookie-banner .reject {
  background: #FFDFE3;
  color: #C72E53;
  border: 2px solid #C72E53;
}
.cookie-banner .reject:hover{
  background: #C72E53;
  color: #fff;
}
.cookie-banner .settings {
  background: #fff;
  border: 2px solid #C9EEFF;
  color: #118AB2;
}
.cookie-banner .settings:hover{
  background: #C9EEFF;
  color: #118AB2;
}

/* COOKIE SETTINGS MODAL */
.cookie-modal {
  position: fixed;
  left: 0; right: 0;
  top: 50%;
  z-index: 2050;
  margin: 0 auto;
  transform: translateY(-50%) scale(0.99);
  background: #fff;
  box-shadow: 0 12px 44px rgba(34,39,43,.21);
  border-radius: 18px;
  padding: 34px 28px 22px 28px;
  max-width: 400px;
  width: 96vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: modalFadeIn 0.27s cubic-bezier(.55,0,.3,1);
}
@keyframes modalFadeIn {
  from { opacity: 0; transform: translateY(-55%) scale(0.93); }
  to   { opacity: 1; transform: translateY(-50%) scale(0.99); }
}
.cookie-modal h2 {
  font-size: 1.35rem;
  color: #118AB2;
  margin-bottom: 12px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: #174063;
}
.cookie-category label {
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-category input[type='checkbox'] {
  accent-color: #118AB2;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 10px;
  justify-content: flex-end;
}
.cookie-modal .btn {
  font-size: 1rem;
  font-weight: 600;
  border-radius: 10px;
  border: 2px solid #C9EEFF;
}
.cookie-modal .btn.accept {
  background: #C8F8CA;
  color: #174063;
  border-color: #32C48D;
}
.cookie-modal .btn.accept:hover {
  background: #32C48D;
  color: #fff;
}
.cookie-modal .btn.reject {
  background: #FFDFE3;
  color: #C72E53;
  border-color: #C72E53;
}
.cookie-modal .btn.reject:hover {
  background: #C72E53;
  color: #fff;
}
.cookie-modal .btn.cancel {
  background: #fff;
  color: #118AB2;
  border-color: #C9EEFF;
}
.cookie-modal .btn.cancel:hover {
  background: #C9EEFF;
}


/* RESPONSIVE RULES */
@media (max-width: 991px) {
  nav ul {
    gap: 12px;
  }
  .service-list > div,
  .category-grid > div {
    min-width: 180px;
    padding: 19px 12px;
  }
}

@media (max-width: 840px) {
  .container {
    max-width: 98vw;
  }
  .section {
    padding: 30px 8px;
  }
  .content-wrapper, .card-content {
    gap: 16px;
  }
  .service-list, .category-grid {
    gap: 14px;
  }
}

@media (max-width: 768px) {
  nav ul {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  nav .cta {
    display: none;
  }
  .service-list, .category-grid {
    flex-wrap: wrap;
    gap: 16px;
  }
  .service-list > div, .category-grid > div {
    flex: 1 1 100%;
    min-width: 0;
  }
  .content-grid, .card-container {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  footer .content-wrapper {
    gap: 22px;
    flex-direction: column;
  }
  main {
    padding-top: 16px;
    gap: 20px;
    margin-bottom: 50px;
  }
  .section {
    margin-bottom: 34px;
    padding: 20px 4vw;
  }
  .testimonial-card, .card {
    padding: 16px 10px;
    font-size: 1rem;
  }
}

@media (max-width: 500px) {
  h1,.h1 {
    font-size: 1.35rem;
    margin-bottom: 16px;
  }
  h2,.h2 {
    font-size: 1.05rem;
    margin-bottom: 12px;
  }
  nav img, footer img {
    height: 27px;
  }
  .cookie-modal {
    padding: 18px 5vw 12px 5vw;
  }
  .cookie-banner {
    padding: 15px 3vw 10px 3vw;
  }
}

/* MICRO-INTERACTIONS & ANIMATIONS */
.cta, .btn, .category-grid > div, .service-list > div, .testimonial-card, .card {
  transition: box-shadow 0.18s, transform 0.17s, background 0.14s, color 0.13s, border 0.14s;
}

/* SCROLLBAR STYLE FOR SOFT/PASTEL */
::-webkit-scrollbar {
  width: 12px;
  background: #F8F8FF;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb {
  background: #FFDFE3;
  border-radius: 14px;
}
::-webkit-scrollbar-thumb:hover {
  background: #C9EEFF;
}

/* A11Y FOCUS OUTLINE */
a:focus, button:focus, .cta:focus, .btn:focus {
  outline: 2px dashed #14A7C7;
  outline-offset: 2px;
}
