/* 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; outline: 0; font-size: 100%; vertical-align: baseline; box-sizing: border-box;
}
html { box-sizing: border-box; height: 100%; scroll-behavior: smooth; }
*, *:before, *:after { box-sizing: inherit; }
body { line-height: 1.6; background: #F8FAFB; color: #212232; font-family: 'Open Sans', Arial, sans-serif; min-height: 100vh; -webkit-font-smoothing: antialiased; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; transition: color 0.2s; }
img, video { max-width: 100%; display: block; height: auto; border-radius: 12px; }

/* BRAND COLORS (Soft Pastel Palette + Brand) */
:root {
  --primary: #212232;
  --secondary: #E8BC6A;
  --accent: #F3F3F3;
  --pastel-pink: #FFE3ED;
  --pastel-yellow: #FFF8D8;
  --pastel-blue: #D9ECFF;
  --pastel-green: #DAF5E2;
  --pastel-purple: #E9E3FF;
  --white: #fff;
  --black: #212232;
  --box-shadow: 0 4px 24px 0 rgba(43,34,74,0.06);
  --box-shadow-md: 0 8px 32px 0 rgba(33,34,50,0.10);
  --shadow-soft: 0 2px 12px 0 rgba(100,90,200,0.07);
  --radius: 18px;
  --font-display: 'Oswald', 'Arial Narrow', Arial, sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;
  --transition: 0.22s cubic-bezier(.77,.07,.38,.99);
}

/* TYPOGRAPHY - Soft, Modern, Dreamy */
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-display);
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
  line-height: 1.15;
}
h1 { font-size: 2.2rem; margin-top: 8px; }
h2 { font-size: 1.65rem; }
h3 { font-size: 1.22rem; }
h4 { font-size: 1.1rem; font-weight: 600; margin-bottom: 10px; }
p, li, blockquote, dd, dt, th, td { font-family: var(--font-body); font-size: 1rem; color: #38394f; }
strong, b { color: var(--primary); font-weight: 700; }
.text-section h1, .text-section h2, .text-section h3 { color: #38394f; }

/* Container Pattern */
.container {
  max-width: 1080px;
  padding: 0 18px;
  margin: 0 auto;
  width: 100%;
}
.content-wrapper {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--box-shadow);
  padding: 32px 22px;
  margin-bottom: 28px;
}
.text-section {
  text-align: center;
}

/* SPACING AND FLEXBOX PATTERNS (from brief) */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: var(--radius);
  background: var(--accent);
  box-shadow: var(--box-shadow);
  padding: 24px 22px 28px 22px;
  min-width: 230px;
  flex: 1 1 250px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover,
.card:focus-within {
  box-shadow: var(--box-shadow-md);
  transform: translateY(-3px) scale(1.012);
}
.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: flex-start;
  gap: 20px;
  background: var(--pastel-blue);
  padding: 20px 24px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  box-shadow: var(--box-shadow);
  transition: box-shadow var(--transition), background var(--transition);
}
.testimonial-card strong { color: var(--primary); }
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  border-radius: var(--radius);
  background: var(--pastel-yellow);
  padding: 20px 20px 14px 20px;
}

/* Responsive Flexbox for .service-cards & Team */
.service-cards, .team-members {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
  justify-content: center;
}
.service-cards > div, .team-members > div {
  background: var(--pastel-green);
  border-radius: var(--radius);
  box-shadow: var(--box-shadow);
  flex: 1 1 220px;
  min-width: 250px;
  margin-bottom: 24px;
  padding: 24px 20px 22px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow var(--transition), transform var(--transition);
}
.service-cards > div:hover, .team-members > div:hover {
  box-shadow: var(--box-shadow-md);
  transform: translateY(-5px) scale(1.015);
}
.price {
  font-weight: 700;
  color: var(--secondary);
  font-size: 1.1rem;
  margin-top: 12px;
}

/* HERO SECTION styles */
section:first-of-type .container .content-wrapper {
  background: linear-gradient(125deg, var(--pastel-purple) 0%, var(--pastel-blue) 100%);
  color: var(--primary);
  box-shadow: var(--box-shadow-md);
  padding: 48px 22px 58px 22px;
}
section:first-of-type .content-wrapper .cta-btn {
  margin-top: 28px;
}

/* Button Style */
.cta-btn, .cookie-btn, .modal-btn, .mobile-menu-toggle, .mobile-menu-close {
  display: inline-block;
  background: var(--secondary);
  color: var(--black);
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: 28px;
  border: none;
  font-size: 1rem;
  padding: 0.7em 2.1em;
  box-shadow: var(--box-shadow);
  cursor: pointer;
  margin: 12px 0 0 0;
  letter-spacing: 0.025em;
  transition: background var(--transition), box-shadow var(--transition), color var(--transition), transform var(--transition);
  text-align: center;
  outline: none;
}
.cta-btn:hover, .cta-btn:focus, .cookie-btn:hover, .cookie-btn:focus,
.modal-btn:hover, .modal-btn:focus {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--box-shadow-md);
  transform: translateY(-1px) scale(1.013);
}

/* TABLE */
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 24px 0 22px 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  background: var(--pastel-yellow);
}
thead tr {
  background: var(--pastel-pink);
}
th, td {
  padding: 15px 14px;
  text-align: left;
  font-size: 1rem;
  border-bottom: 1px solid #ebebeb;
}
th { font-weight: 700; }
tr:last-child td { border-bottom: none; }

/* MAP PLACEHOLDER */
.map-placeholder {
  background: var(--pastel-blue);
  border: 2px dashed var(--pastel-purple);
  border-radius: var(--radius);
  padding: 28px 12px 24px 12px;
  text-align: center;
}

/* NAVIGATION */
header {
  background: var(--pastel-purple);
  padding: 0 0 0 0;
  box-shadow: 0 4px 16px 0 rgba(42,47,64,0.04);
  position: sticky;
  top: 0;
  z-index: 30;
}
header nav {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: flex-start;
  padding: 18px 0 16px 0;
}
header nav a {
  color: var(--primary);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 18px;
  padding: 5px 13px;
  margin: 0 4px;
  transition: background var(--transition), color var(--transition);
}
header nav a.cta-btn {
  background: var(--secondary);
  color: var(--black);
  padding: 7px 22px;
  margin-left: 16px;
  font-weight: 700;
}
header nav a:hover,
header nav a:focus {
  background: var(--pastel-blue);
  color: var(--primary);
}
header nav a.cta-btn:hover, header nav a.cta-btn:focus { background: var(--primary); color: #fff; }
header nav img { height: 36px; margin-right: 16px; }

/* MOBILE MENU BUTTON */
.mobile-menu-toggle {
  display: none;
  background: var(--secondary);
  color: var(--primary);
  font-size: 2rem;
  border: none;
  padding: 4px 16px 4px 16px;
  position: absolute;
  right: 26px;
  top: 16px;
  z-index: 202;
  border-radius: 26px;
  box-shadow: var(--box-shadow);
  transition: background var(--transition), color var(--transition);
}
.mobile-menu-toggle:focus { outline: 2px solid var(--primary); }

/* MOBILE MENU OVERLAY */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(120deg, var(--pastel-purple) 30%, var(--pastel-pink) 100%);
  z-index: 9000;
  transform: translateX(100%);
  transition: transform .33s cubic-bezier(.65,.05,.36,1);
  box-shadow: 0 0 0 100vw rgba(36, 44, 68, 0.07);
  opacity: 0.97;
  pointer-events: none;
  padding-top: 46px;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
  transition: transform .33s cubic-bezier(.65,.05,.36,1);
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 2rem;
  color: var(--primary);
  background: none;
  border: none;
  z-index: 9012;
  padding: 3px 16px;
  cursor: pointer;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  padding: 34px 40px 0 33px;
}
.mobile-nav a {
  color: var(--primary);
  font-family: var(--font-body);
  font-size: 1.22rem;
  padding: 11px 4px 11px 0;
  border-radius: 18px;
  transition: background var(--transition), color var(--transition);
}
.mobile-nav a:hover, .mobile-nav a:focus { background: var(--white); color: var(--secondary); }

/* FOOTER */
footer {
  background: var(--pastel-purple);
  padding: 36px 0 14px 0;
  box-shadow: 0 -4px 24px 0 rgba(45,38,70,0.033);
  position: relative;
  margin-top: 40px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
}
footer nav a {
  color: var(--primary);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 5px 13px;
  border-radius: 16px;
  font-weight: 600;
  transition: background var(--transition), color var(--transition);
}
footer nav a:hover {
  background: var(--pastel-blue);
  color: var(--primary);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  font-size: 1rem;
  color: #5C5F89;
  margin-top: 10px;
}
.footer-brand img { height: 28px; }

/* LISTS, DL & FAQ ENHANCEMENTS */
ul, ol, dl { margin-bottom: 14px; }
ul li, ol li, dt, dd {
  margin-bottom: 9px;
  padding-left: 0;
  line-height: 1.8;
  position: relative;
}
ul li::before {
  content: '';
  display: inline-block;
  width: 10px; height: 10px;
  background: var(--secondary);
  border-radius: 50%;
  margin-right: 12px;
  vertical-align: middle;
}
ul li strong, ol li strong { color: var(--primary); }
dt { font-weight: 700; color: var(--primary); margin-top: 4px; }
dd { margin-left: 16px; color: #555; margin-bottom: 9px; }

/* FAQ */
.text-section ul li {
  background: var(--pastel-blue);
  border-radius: 12px;
  padding: 10px 17px 9px 17px;
  margin-bottom: 10px;
}
.text-section ol li {
  background: var(--pastel-yellow);
  border-radius: 11px;
  padding: 10px 17px 9px 17px;
  margin-bottom: 10px;
}

/* TESTIMONIAL STYLES */
.testimonial-card {
  background: var(--pastel-green);
  color: var(--primary);
  border: 1px solid #d8eeea;
  box-shadow: var(--shadow-soft);
  font-size: 1.03rem;
}
.testimonial-card p { margin-bottom: 0; font-style: italic; color: var(--primary); }
.testimonial-card span { font-size: 0.97em; color: #757397; margin-bottom: 0; display: block; }
.testimonial-card strong { color: #352467; font-size: 1.02em; }

/* BRAND/LOGO Collaborations Section (testimonials) */
ul li img { height: 24px; vertical-align: middle; filter: drop-shadow(0 2px 0 rgba(33,34,50,0.09)); }

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 11000;
  background: linear-gradient(95deg, var(--pastel-purple) 40%, var(--pastel-blue) 100%);
  color: var(--primary);
  box-shadow: 0 -2px 20px 2px rgba(79, 51, 169, 0.11);
  padding: 20px 26px 16px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  font-size: 1rem;
  animation: cookieSlideIn 0.5s ease;
}
@keyframes cookieSlideIn {
  from { transform: translateY(120%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-btn {
  background: var(--secondary);
  color: var(--primary);
  border-radius: 24px;
  font-weight: 700;
  font-size: 1rem;
  margin: 0 7px;
  padding: 7px 24px;
  border: none;
  box-shadow: var(--box-shadow);
  transition: background var(--transition), color var(--transition);
}
.cookie-banner .cookie-btn.reject {
  background: var(--pastel-pink);
  color: var(--primary);
}
.cookie-banner .cookie-btn.setting {
  background: var(--pastel-blue);
  color: var(--primary);
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: var(--primary);
  color: #fff;
}

/* COOKIE MODAL */
.cookie-modal-backdrop {
  position: fixed;
  z-index: 12000;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(75,75,99, 0.13);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInBck 0.23s ease;
}
@keyframes fadeInBck {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal {
  background: linear-gradient(120deg, var(--pastel-blue) 32%, var(--white) 110%);
  border-radius: 22px;
  box-shadow: 0 6px 44px 6px rgba(22,20,49,0.09);
  padding: 36px 30px 30px 30px;
  max-width: 440px;
  width: 94vw;
  color: var(--primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 17px;
  animation: modalPopIn 0.37s cubic-bezier(.5,1.54,.77,.96);
}
@keyframes modalPopIn { from { transform: scale(0.86); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.cookie-categories {
  width: 100%;
  margin: 18px 0 18px 0;
}
.cookie-categories label {
  display: flex; align-items: center; gap: 12px;
  font-size: 1rem; font-weight: 600;
  margin-bottom: 14px;
}
.cookie-switch {
  appearance: none;
  width: 38px; height: 22px;
  border-radius: 13px;
  background: var(--pastel-pink);
  outline: none;
  transition: background .2s;
  position: relative;
  cursor: pointer;
}
.cookie-switch:checked {
  background: var(--secondary);
}
.cookie-switch:before {
  content: '';
  display: block;
  width: 17px; height: 17px;
  border-radius: 50%;
  background: var(--white);
  position: absolute;
  left: 2px; top: 2.5px;
  transition: left .2s, background .21s;
  box-shadow: 0 2px 6px 0 rgba(70,50,100,.11);
}
.cookie-switch:checked:before { left: 19px; }
.modal-btn.closemodal {
  background: transparent;
  color: var(--primary);
  border: none;
  font-size: 1.25rem;
  position: absolute;
  top: 16px;
  right: 18px;
  padding: 4px 9px;
}

/* CTA BANNER ANIMATION */
section .cta-btn {
  animation: cta-pop 0.7s cubic-bezier(.39,.62,.60,1.23);
}
@keyframes cta-pop {
  from { transform: scale(.93) translateY(30px); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* MEDIA QUERIES FOR RESPONSIVENESS */
@media (max-width: 1140px) {
  .container { max-width: 100%; }
}
@media (max-width: 900px) {
  .content-wrapper { padding: 24px 9px; }
}
@media (max-width: 768px) {
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.20rem; }
  .container { padding: 0 6px; }
  .section { padding: 26px 7px; margin-bottom: 38px; }
  .content-wrapper { margin-bottom: 20px; padding: 14px 6px 14px 6px; }
  .service-cards > div, .team-members > div, .card {
    min-width: 100%; flex: 1 1 100%; padding: 17px 9px;
  }
  .service-cards, .team-members, .card-container { flex-direction: column; gap: 14px; }
  .content-grid, .text-image-section { flex-direction: column; gap: 12px; }
  .testimonial-card { padding: 14px 9px; }
  header nav { display: none; }
  .mobile-menu-toggle { display: block; }
  .map-placeholder { padding: 18px 3px 18px 3px; }
}
@media (min-width: 769px) {
  .mobile-menu { display: none !important; }
  .mobile-menu-toggle { display: none !important; }
  header nav { display: flex !important; }
}

/* UTILITY */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 8px !important; }
.mb-2 { margin-bottom: 16px !important; }
.mb-3 { margin-bottom: 32px !important; }
.flex { display: flex; }
.flex-col { flex-direction: column !important; }
.w-full { width: 100%; }
.text-center { text-align: center; }

/* FOCUSED ELEMENT OUTLINE IMPROVED */
a:focus, button:focus, .cta-btn:focus, .cookie-btn:focus, .modal-btn:focus {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}

/* CUSTOM SCROLLBAR for dreamy soft style */
::-webkit-scrollbar { width: 11px; background: var(--pastel-yellow); }
::-webkit-scrollbar-thumb { background: var(--pastel-purple); border-radius: 9px; }
::-webkit-scrollbar-thumb:hover { background: var(--secondary); }

/* SELECTION */
::selection { background: var(--pastel-pink); color: var(--primary); }

/* END */