/* RESET AND 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: 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: #FBF9FD;
  color: #232442;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #5EC7CE;
  background: none;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #22263A;
}
ul, ol {
  margin-left: 1.3em;
}
strong { font-weight: 700; }
hr {
  border: none;
  border-top: 1px solid #eaebef;
  margin: 32px 0;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #232442;
  margin-bottom: 16px;
  font-weight: 700;
}
h1 { font-size: 2.5rem; line-height: 1.15; }
h2 { font-size: 2rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.1rem; }

p, li, blockquote, dd {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #232442;
  margin-bottom: 16px;
}
blockquote {
  background: #F6F4FB;
  color: #232442;
  border-left: 5px solid #B9B5EA;
  padding: 16px 24px;
  margin: 0 0 16px 0;
  border-radius: 16px;
  font-style: italic;
}

.subheadline {
  font-size: 1.25rem;
  color: #7985A3;
  margin-bottom: 24px;
  font-weight: 400;
}
.tagline, .team-philosophy {
  font-size: 1.1rem;
  color: #5EC7CE;
  font-style: italic;
  margin-bottom: 28px;
  margin-top: 8px;
}

/* LAYOUT CONTAINERS & FLEX UTILS */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #FFFFFF;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(164,175,204,0.10);
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 6px 32px rgba(94,199,206,0.18);
}
.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;
  background: #FFFFFF;
  box-shadow: 0 2px 20px rgba(94,199,206,.08), 0 0.5px 2px #B9B5EA33;
  padding: 20px;
  border-radius: 20px;
  margin-bottom: 20px;
  min-width: 0;
}
.feature-item, .benefit-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #FAFCFF;
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(245, 214, 255, 0.10);
  padding: 24px;
  min-width: 230px;
  flex: 1 1 240px;
}

/* HEADER & NAVIGATION */
header {
  background: #FFFDF9;
  border-bottom: 1px solid #F0EAFD;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 40;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 16px;
}
.logo img {
  height: 42px;
  width: auto;
  margin-right: 8px;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #5EC7CE;
  font-weight: 600;
  padding: 6px 0;
  position: relative;
  transition: color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #22263A;
}
.cta-button {
  display: inline-block;
  background: linear-gradient(90deg, #5EC7CE 60%, #F9D655 100%);
  color: #232442;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  border: none;
  border-radius: 22px;
  padding: 12px 30px;
  cursor: pointer;
  transition: background 0.3s, box-shadow 0.2s, color 0.2s;
  box-shadow: 0 2px 12px rgba(94,199,206,0.06);
}
.cta-button:hover, .cta-button:focus {
  background: linear-gradient(90deg, #F9D655 60%, #5EC7CE 100%);
  color: #22263A;
  box-shadow: 0 4px 18px rgba(249, 214, 85, 0.15);
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #5EC7CE;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 99;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #F6F6F9;
  color: #22263A;
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(245,249,251,0.97);
  z-index: 120;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.38s cubic-bezier(.75,.18,.37,1), opacity 0.32s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #5EC7CE;
  cursor: pointer;
  margin: 24px 32px 16px 0;
  padding: 6px 12px;
  border-radius: 8px;
  transition: background 0.2s;
  z-index: 140;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #FFF3C8;
  color: #22263A;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  color: #5EC7CE;
  font-weight: 700;
  padding: 12px 0;
  border-radius: 14px;
  width: 100%;
  text-align: center;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:active,
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #F9D65533;
  color: #22263A;
}

/* HERO SECTIONS */
.hero {
  background: linear-gradient(120deg, #EFFAFB 80%, #FCF7D7 100%);
  padding: 60px 0 40px 0;
  min-height: 260px;
  margin-bottom: 0;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
  max-width: 600px;
  margin: 0 auto;
  justify-content: center;
}
.hero h1 {
  color: #22263A;
  margin-bottom: 12px;
}

/* FEATURES & BENEFITS */
.features .feature-grid,
.features .benefit-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  justify-content: flex-start;
  margin-top: 20px;
}
.feature-item img, .benefit-item img {
  width: 42px;
  height: 42px;
}

.feature-item h3, .benefit-item h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
  color: #5EC7CE;
}

/* ABOUT & TEAM/PROFILE LISTS */
.profile-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.profile {
  background: #FFFFFF;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(164,175,204,0.10);
  padding: 20px 24px;
  flex: 1 1 260px;
}
.profile h3 {
  color: #5EC7CE;
  font-size: 1.13rem;
  margin-bottom: 8px;
}

/* SERVICES & PRICES */
.services .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 20px 0 32px 0;
  list-style: none;
}
.services .service-list li {
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(249,214,85,0.08);
  padding: 24px 20px;
  flex: 1 1 230px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 200px;
  max-width: 320px;
}
.price {
  color: #F9D655;
  font-size: 1.17rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  margin-top: 6px;
}
/* PRICING TABLE */
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0 0 0;
  font-size: 1rem;
  background: #F8FDFD;
  border-radius: 14px;
  overflow: hidden;
}
.price-table caption {
  font-weight: 700;
  padding: 10px;
  font-size: 1.14rem;
  color: #5EC7CE;
}
.price-table th {
  background: #F1FAFE;
  color: #232442;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  padding: 14px 8px;
}
.price-table td {
  background: #FFFFFF;
  color: #232442;
  padding: 13px 8px;
  text-align: left;
  border-bottom: 1px solid #F2EBFA;
}
.price-table tr:last-child td {
  border-bottom: none;
}

/******** TESTIMONIALS & RATING ********/
.testimonials .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}
.rating-summary {
  font-size: 1.1rem;
  color: #22263A;
  background: #FFFAE5;
  padding: 10px 24px;
  border-radius: 32px;
  width: fit-content;
  margin: 32px auto 0 auto;
  display: block;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  box-shadow: 0 2px 7px rgba(249,214,85,0.09);
}
.customer-info {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
  color: #5EC7CE;
  margin-bottom: 0;
  font-weight: 600;
  letter-spacing: 0.01em;
}

/****** CTA SECTION (CALL TO ACTION) *****/
.cta {
  background: linear-gradient(90deg, rgba(94,199,206,0.07) 65%, rgba(255,250,229,0.40) 100%);
  padding: 36px 0;
}
.cta .content-wrapper {
  align-items: center;
  gap: 18px;
  text-align: center;
}
.cta h2 {
  color: #22263A;
  font-size: 2rem;
}

/* FOOTER */
footer {
  background: #F8FBFD;
  color: #232442;
  padding: 0 0 16px 0;
  margin-top: 48px;
  border-top: 1px solid #EDEDF4;
}
footer .container {
  padding: 32px 20px 0 20px;
}
footer .footer-flex img {
  width: 44px;
  height: 44px;
  margin-bottom: 8px;
  border-radius: 8px;
  box-shadow: 0 2px 8px #9EC7CE22;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer nav a {
  color: #5EC7CE;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  padding: 2px 0;
}
footer nav a:hover, footer nav a:focus {
  color: #F9D655;
}
.footer-meta {
  font-size: 0.97rem;
  color: #A9B0C1;
  margin-top: 12px;
  text-align: center;
  letter-spacing: 0.01em;
}
address {
  font-style: normal;
  color: #232442;
  margin-bottom: 8px;
  line-height: 1.5;
}

/* TABLES & DL */
table {
  width: 100%;
  border-collapse: collapse;
}
th, td {
  padding: 8px 10px;
}
dl.faq-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
dl.faq-list dt {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  margin-top: 8px;
  font-size: 1.07rem;
}
dl.faq-list dd {
  margin: 0 0 8px 16px;
  color: #5EC7CE;
  font-size: 1rem;
}

/* LEGAL & SIMPLE PAGES */
.legal .content-wrapper {
  background: #F8FDFE;
  border-radius: 14px;
  box-shadow: 0 2px 11px #D4EFF730;
  padding: 40px 28px;
  gap: 12px;
  margin: 28px 0;
}
.confirmation .content-wrapper {
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 2px 18px rgba(94,199,206,0.08);
  padding: 34px 26px;
  text-align: center;
  gap: 20px;
}
.thank-you-message {
  font-size: 1.22rem;
  color: #5EC7CE;
  margin: 18px 0;
}
.next-steps-info {
  font-size: 1.07rem;
  color: #A9B0C1;
  margin-bottom: 6px;
}

/********* CONTACT STYLES **********/
.contact-info-block {
  background: #F6F9FD;
  border-radius: 12px;
  padding: 18px 24px;
  margin-bottom: 18px;
  box-shadow: 0 1px 6px #D4EFF744;
}
.contact-description {
  color: #5EC7CE;
  font-style: italic;
  font-size: 1.05rem;
}

/********* SPECIALTY LISTS **********/
.feature-icons {
  display: flex;
  gap: 24px;
  margin-bottom: 20px;
  align-items: center;
  justify-content: flex-start;
}
.feature-icons img {
  width: 50px;
  height: 50px;
}
.statements {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 1rem;
}
.statements li {
  background: #FFFFFF;
  border-radius: 16px;
  box-shadow: 0 1px 7px #D4EFF733;
  padding: 14px 18px;
}

/********* OL/UL/LI custom BULLETS *********/
ul, .statements {
  list-style: none;
  padding-left: 0;
}
ul li, .statements li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
}
ul li:before, .statements li:before {
  content: '';
  display: inline-block;
  position: absolute;
  left: 0;
  top: 11px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: linear-gradient(90deg, #F9D655 60%, #5EC7CE 100%);
  opacity: 0.56;
}
ol li {
  margin-bottom: 8px;
  padding-left: 0;
}

/***** LISTS FOR PROCESSES *****/
.consultation-steps li strong,
.coaching-process li strong {
  color: #5EC7CE;
}
.key-benefits ul {
  list-style: none;
  padding-left: 0;
}
.key-benefits ul li {
  padding-left: 25px;
  position: relative;
}
.key-benefits ul li:before {
  content: '';
  width: 10px;
  height: 10px;
  background: #F9D655;
  border-radius: 50%;
  position: absolute;
  left: 0; top: 10px;
  opacity: 0.4;
}

/************************************
   COOKIE CONSENT BANNER & MODAL
*************************************/
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: linear-gradient(90deg, #F9D655 4%, #5EC7CE 75%, #FFF 100%);
  box-shadow: 0 -2px 18px rgba(94,199,206,0.13);
  padding: 16px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
  animation: banner-slidein 0.55s cubic-bezier(.37,1.47,.52,.94);
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}
@keyframes banner-slidein {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner-message {
  font-size: 1rem;
  color: #232442;
  flex: 1 1 240px;
}
.cookie-buttons {
  display: flex;
  gap: 18px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  padding: 8px 22px;
  border-radius: 18px;
  border: none;
  cursor: pointer;
  transition: background 0.17s, color 0.17s, box-shadow 0.11s;
  font-weight: 600;
}
.cookie-banner .accept {
  background: #5EC7CE;
  color: #232442;
  box-shadow: 0 3px 10px #5EC7CE33;
}
.cookie-banner .accept:hover {
  background: #34BAD0;
  color: #22263A;
}
.cookie-banner .reject {
  background: #F6F9FD;
  color: #5EC7CE;
  border: 1.5px solid #5EC7CE55;
}
.cookie-banner .reject:hover {
  background: #F9D655;
  color: #22263A;
}
.cookie-banner .settings {
  background: #FFF9DD;
  color: #5EC7CE;
  border: 1.5px solid #F9D65560;
}
.cookie-banner .settings:hover {
  background: #5EC7CE22;
  color: #22263A;
}

/* COOKIE MODAL OVERLAY */
.cookie-modal {
  position: fixed;
  z-index: 12001;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(32, 42, 66, 0.36);
  display: none;
  align-items: center;
  justify-content: center;
  animation: modalfadein 0.22s;
}
@keyframes modalfadein {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal.open { display: flex; }
.cookie-modal-content {
  background: linear-gradient(120deg,#FAFCFF 80%, #F6F4FB 100%);
  border-radius: 20px;
  padding: 40px 28px 32px 28px;
  box-shadow: 0 4px 38px #5EC7CE33;
  width: 95%;
  max-width: 410px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: modalcontent-slide 0.27s;
}
@keyframes modalcontent-slide {
  0% { transform: translateY(32px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-modal-content h3 {
  font-size: 1.16rem;
  color: #5EC7CE;
  margin-bottom: 10px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  color: #232442;
}
.category-switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 24px;
}
.category-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.switch-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background-color: #F6F6F9;
  border-radius: 24px;
  transition: background 0.2s;
}
.category-switch input:checked + .switch-slider {
  background: #5EC7CE;
}
.switch-slider:before {
  content: '';
  position: absolute;
  left: 4px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #FAFCFF;
  transition: transform 0.2s;
}
.category-switch input:checked + .switch-slider:before {
  transform: translateX(16px);
}
.cookie-category-essential .switch-slider, .cookie-category-essential input {
  opacity: 0.4;
  pointer-events: none;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 14px;
  justify-content: flex-end;
}
.cookie-modal-actions button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 8px 20px;
  font-size: 1rem;
  border-radius: 16px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.18s;
}
.cookie-modal-actions .save {
  background: #5EC7CE;
  color: #232442;
}
.cookie-modal-actions .save:hover {
  background: #34BAD0;
}
.cookie-modal-actions .cancel {
  background: #F6F9FD;
  color: #5EC7CE;
}
.cookie-modal-actions .cancel:hover {
  background: #FFE389;
}
.cookie-modal-content .modal-close {
  position: absolute;
  top: 10px; right: 14px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #5EC7CE;
  cursor: pointer;
  border-radius: 8px;
  padding: 5px 10px;
  transition: background 0.2s;
}
.cookie-modal-content .modal-close:hover,
.cookie-modal-content .modal-close:focus {
  background: #FFF6D4;
  color: #22263A;
}

/********* RESPONSIVE LAYOUT *********/
@media (max-width: 1120px) {
  .container { max-width: 97vw; }
}
@media (max-width:900px) {
  .footer-flex { flex-direction: column; gap: 16px; }
  .main-nav { gap: 16px; }
}
@media (max-width: 810px) {
  .feature-grid, .benefit-grid, .profile-list { flex-direction: column; align-items: stretch; }
}
@media (max-width: 768px) {
  h1 { font-size: 2.0rem; }
  h2 { font-size: 1.38rem; }
  .container { padding: 0 10px; }
  .content-wrapper, .footer-flex { gap: 14px; }
  .hero { padding: 34px 0 18px 0; }
  .footer-meta { font-size: 0.93rem; }
  .cta .content-wrapper { padding: 0; }
  .services .service-list { flex-direction: column; gap: 12px; }
  .text-image-section { flex-direction: column; gap: 18px; }
  .main-nav { display: none; }
  .cta-button { padding: 12px 22px; font-size: 1rem; }
  .mobile-menu-toggle {
    display: inline-block;
    margin-left: 8px;
  }
}
@media (max-width: 620px) {
  .section { padding: 24px 6px; margin-bottom: 37px; }
  .content-wrapper { padding: 0 0; }
  .profile, .testimonial-card, .feature-item, .benefit-item { padding: 18px 12px; }
  .cookie-banner { flex-direction: column; gap: 14px; align-items: flex-start; }
  .cookie-banner-message { font-size: 0.98rem; }
}
@media (max-width: 420px) {
  .footer-flex img { width: 36px; height: 36px; }
  .cta-button { font-size: 0.98rem; padding: 10px 9vw; }
  .hero h1 { font-size: 1.5rem; }
}

/************************************
   MICRO-INTERACTIONS & TRANSITIONS
*************************************/
.card, .feature-item, .benefit-item, .testimonial-card {
  transition: box-shadow 0.19s, transform 0.19s;
}
.card:hover, .feature-item:hover, .benefit-item:hover, .testimonial-card:hover {
  box-shadow: 0 8px 36px rgba(94,199,206,0.13);
  transform: translateY(-2px) scale(1.01);
}
.cta-button, .cookie-banner button, .mobile-menu-toggle, .mobile-menu-close {
  outline: none;
  box-shadow: 0 0 0 0 #5EC7CE44;
  transition: box-shadow 0.15s, background 0.2s;
}
.cta-button:focus, .cookie-banner button:focus, .mobile-menu-toggle:focus, .mobile-menu-close:focus {
  box-shadow: 0 0 0 3px #F9D65599;
}
.main-nav a:focus, .mobile-nav a:focus, footer nav a:focus {
  outline: 2px solid #5EC7CE;
  outline-offset: 3px;
}

/********************************************
 CUSTOM SOFT PASTEL PALETTE FOR UI ELEMENTS
*********************************************/
/* Pastel color scheme for backgrounds and highlights */
body {
  background: linear-gradient(160deg, #FAFCFF 70%, #FFF9DD 98%);
}
.hero, .cta {
  background: linear-gradient(120deg, #EFFAFB 85%, #FFF9DD 100%);
}
.feature-item, .benefit-item, .profile, .testimonial-card {
  background: #FFFFFF;
  box-shadow: 0 2px 20px rgba(115, 189, 225, 0.07);
}
.profile-list, .service-list, .feature-grid, .benefit-grid, .content-wrapper {
  gap: 24px;
}

/* Pastel accent lines */
hr {
  border-top: 1.5px dashed #B6E6F2;
}

/* Emphasized text blocks */
.benefit-highlights, .success-stories-teaser, .pricing-info, .cookie-banner-message {
  background: #FAFCFF;
  border-left: 5px solid #F9D655;
  border-radius: 6px;
  padding: 14px 20px;
  margin: 14px 0 20px 0;
  color: #232442;
  font-weight: 500;
  font-size: 1.05rem;
}

/**** Utility classes for spacing and alignment ****/
.mb-20 { margin-bottom: 20px !important; }
.mb-32 { margin-bottom: 32px !important; }
.mt-30 { margin-top: 30px !important; }
.mb-60 { margin-bottom: 60px !important; }

/**** Hide elements visually but keep readable for screen readers ****/
.sr-only {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden; clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

/**** Pastel Scrollbar Styling ****/
body::-webkit-scrollbar { width: 10px; background: #F6F9FD; }
body::-webkit-scrollbar-thumb {
  background: linear-gradient(120deg, #B6E6F2 10%, #F9D655 90%);
  border-radius: 8px;
}
