:root{
  --bg:#ffffff;
  --text:#2f2f2f;
  --muted:#6e6e6e;
  --muted-2:#8b8b8b;
  --line:#e9e9e9;

  --teal:#00c3b3;
  --pink:#ff3b6f;
  --blue:#0aa0ff;

  --container:1280px;
  --radius:14px;
  --shadow:0 14px 28px rgba(0,0,0,.08);

  --card-bg:#fbfbfb;
  --card-border:#eeeeee;
}

*{box-sizing:border-box}
html{
  height:100%;
  overflow-x:hidden;
}
body{
  min-height:100%;
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.45;
  overflow-x:hidden;
}

/* ===== GLOBAL: Prevent mid-word breaking for ALL headings (ALL SCREENS) ===== */
h1, h2, h3, h4, h5, h6 {
  word-break: normal !important;
  overflow-wrap: break-word !important;
  word-wrap: break-word !important;
  hyphens: none !important;
  -webkit-hyphens: none !important;
  -moz-hyphens: none !important;
  -ms-hyphens: none !important;
}

p {
  word-break: normal !important;
  overflow-wrap: break-word !important;
  hyphens: none !important;
}

img{max-width:100%;display:block}
a{color:inherit}

.container{
  width:min(var(--container), calc(100% - 48px));
  margin-inline:auto;
}

.skip-link{
  position:absolute;
  left:12px;
  top:12px;
  padding:10px 12px;
  background:#111;
  color:#fff;
  border-radius:10px;
  transform:translateY(-160%);
  transition:transform .18s ease;
  z-index:10000;
}
.skip-link:focus{transform:translateY(0)}

/* Focus visibility */
:where(a,button,[tabindex]:not([tabindex="-1"])):focus-visible{
  outline:3px solid rgba(0, 195, 179, .55);
  outline-offset:3px;
  border-radius:10px;
}

.sr-only{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

/* Header row 1 */
.topbar{
  border-bottom:1px solid var(--line);
  background:#fff;
}
.topbar__inner{
  display:grid;
  grid-template-columns: 1fr auto 1fr;
  align-items:center;
  padding:18px 0;
  gap:16px;
}

.brand{
  display:inline-flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
}
.brand__mark{
  font-weight:800;
  letter-spacing:.5px;
  font-size:42px;
  color:var(--teal);
}

.topbar__center{
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
}
.topbar__right{
  display:flex;
  justify-content:flex-end;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
}
.toplink{
  font-size:14px;
  color:var(--muted);
  text-decoration:none;
}
.toplink:hover{color:#3a3a3a;text-decoration:underline}

/* Language dropdown */
.lang__flag{
  display:inline-flex;
  border-radius:2px;
  overflow:hidden;
  box-shadow:0 0 0 1px rgba(0,0,0,.08);
}
.lang__chev{font-size:12px;color:var(--muted-2)}
.lang-menu{position:relative}
.lang-menu__trigger{
  display:inline-flex;
  align-items:center;
  gap:8px;
  border:0;
  background:transparent;
  padding:6px 8px;
  color:var(--muted);
  cursor:pointer;
  font-size:14px;
  border-radius:10px;
}
.lang-menu__trigger:hover{color:#3a3a3a}
.lang-menu__trigger:hover{background:rgba(0,0,0,.02)}
.lang-menu__list{
  position:absolute;
  right:0;
  top:100%;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:0 18px 36px rgba(0,0,0,.12);
  border-radius:14px;
  padding:6px 0;
  min-width:210px;
  margin:0;
  list-style:none;
  opacity:0;
  visibility:hidden;
  transform:translateY(-4px);
  pointer-events:none;
  transition:opacity .15s ease, transform .15s ease, visibility .15s ease;
  z-index:1000;
}
.lang-menu::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:100%;
  height:12px;
}
.lang-menu:hover .lang-menu__list,
.lang-menu:focus-within .lang-menu__list,
.lang-menu[data-open="true"] .lang-menu__list{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
  pointer-events:auto;
}
.lang-menu[data-suppress="true"] .lang-menu__list{
  opacity:0 !important;
  visibility:hidden !important;
  transform:translateY(-4px) !important;
  pointer-events:none !important;
}
.lang-menu__option{
  width:100%;
  border:0;
  background:transparent;
  padding:10px 14px;
  display:flex;
  align-items:center;
  gap:10px;
  color:#5f5f5f;
  font-size:14px;
  cursor:pointer;
  text-align:left;
}
.lang-menu__option:hover{background:rgba(0,0,0,.04); color:#2f2f2f}
.lang-menu__option[aria-selected="true"]{color:#1f1f1f; font-weight:700}
.lang-menu__flag{width:18px; display:inline-flex; justify-content:center}

/* Header row 2 */
.mainnav{
  background:#fff;
  border-bottom:1px solid var(--line);
}
.mainnav__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:18px;
}
.mainnav__links{display:flex;align-items:center;gap:14px}
.navlist{
  display:flex;
  align-items:center;
  gap:22px;
  list-style:none;
  padding:0;
  margin:0;
}
.navlink{
  text-decoration:none;
  color:#4a4a4a;
  font-size:15px;
}
.navlink:hover{color:#1f1f1f}
.mainnav__right{
  display:flex;
  align-items:center;
  gap:12px;
}
.contact{
  text-decoration:none;
  font-size:15px;
  color:#3a3a3a;
}
.contact:hover{text-decoration:underline}
.icon-btn{
  border:0;
  background:transparent;
  padding:8px;
  border-radius:12px;
  cursor:pointer;
  color:#3b3b3b;
}
.icon-btn:hover{background:rgba(0,0,0,.04)}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 18px;
  border-radius:10px;
  font-weight:600;
  font-size:14px;
  letter-spacing:.1px;
  cursor:pointer;
  text-decoration:none;
  user-select:none;
}
.btn--outline{
  background:transparent;
  border:2px solid currentColor;
}
.btn--neutral{
  color:#ff3b6f;
  border-color:rgba(255, 59, 111, .7);
  padding:10px 16px;
  font-weight:600;
}
.btn--whatsapp{
  color:#25D366;
  border-color:rgba(37, 211, 102, .7);
}
.btn--whatsapp:hover{
  background:rgba(37, 211, 102, .08);
}
.btn--neutral:hover{background:rgba(255, 59, 111, .06)}
.btn--pink{
  color:var(--pink);
  border-color:rgba(255, 59, 111, .9);
  padding:14px 18px;
  width:fit-content;
}
.btn--pink:hover{background:rgba(255, 59, 111, .07)}
.btn__icon{display:inline-flex}

/* Mobile menu */
.mainnav__toggle{display:none}
.mobile-menu{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.35);
  z-index:9999;
}
.mobile-menu__panel{
  position:absolute;
  top:0;
  right:0;
  height:100%;
  width:min(360px, 88vw);
  background:#fff;
  box-shadow:0 18px 46px rgba(0,0,0,.22);
  display:flex;
  flex-direction:column;
}
.mobile-menu__header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:16px 16px 10px;
  border-bottom:1px solid var(--line);
}
.mobile-menu__title{font-weight:800;color:#3a3a3a}
.mobile-menu__list{
  list-style:none;
  padding:10px 0;
  margin:0;
}
.mobile-menu__link{
  display:flex;
  padding:14px 16px;
  text-decoration:none;
  color:#3a3a3a;
  font-weight:600;
}
.mobile-menu__link:hover{background:rgba(0,0,0,.04)}
.mobile-menu__footer{
  margin-top:auto;
  border-top:1px solid var(--line);
  padding:10px 0;
}

/* Sticky CTA */
.sticky-cta{
  position:fixed;
  left:50%;
  transform:translateX(-50%);
  bottom:16px;
  background:#4b1fb8;
  color:#fff;
  border:0;
  padding:14px 22px;
  border-radius:6px;
  font-weight:700;
  display:inline-flex;
  align-items:center;
  gap:10px;
  box-shadow:0 14px 30px rgba(0,0,0,.22);
  cursor:pointer;
  z-index:9997;
}
.sticky-cta:hover{background:#3f1aa0}
.sticky-cta[hidden]{display:none !important}
.sticky-cta__icon{display:inline-flex}

/* Footer */
.site-footer{
  background:#fafafa;
  border-top:1px solid var(--line);
  padding:68px 0 130px;
}
.footer__top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:48px;
  flex-wrap:wrap;
}
.footer__intro{
  flex: 1 1 260px;
  max-width:360px;
}
.footer__brand .brand__mark{font-size:36px}
.footer__blurb{
  margin:10px 0 0;
  color:var(--muted);
  font-size:14px;
  line-height:1.7;
}
.footer__grid{
  flex: 1 1 520px;
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:34px;
}
.footer__heading{
  margin:0 0 12px;
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:#8d8d8d;
  font-weight:800;
}
.footer__list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap:10px;
}
.footer__list a,
.footer__mini a{
  text-decoration:none;
  color:var(--muted);
  font-size:14px;
}
.footer__list a:hover,
.footer__mini a:hover{
  text-decoration:underline;
  color:#3a3a3a;
}
.footer__bottom{
  margin-top:34px;
  padding-top:18px;
  border-top:1px solid var(--line);
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:12px;
  color:var(--muted);
  font-size:13px;
}
.footer__mini{display:flex; gap:16px; flex-wrap:wrap}

/* Shared responsive */
@media (max-width: 1100px){
  .topbar__inner{grid-template-columns: 1fr auto 1fr}
  .brand__mark{font-size:38px}
}
@media (max-width: 900px){
  .topbar__inner{
    grid-template-columns: 1fr;
    justify-items:start;
    align-items:start;
  }
  .topbar__center{justify-content:flex-start}
  .topbar__right{justify-content:flex-start}
  .navlist{display:none}
  .mainnav__toggle{display:inline-flex}
}
@media (max-width: 600px){
  .sticky-cta{width:min(520px, calc(100% - 32px)); justify-content:center}
  .lang-menu__list{
    right:auto;
    left:0;
    transform:translateY(-4px);
  }
  .lang-menu[data-open="true"] .lang-menu__list{
    transform:translateY(0);
  }
}
@media (max-width: 520px){
  .container{width:min(var(--container), calc(100% - 32px))}
  .brand__mark{font-size:36px}
  .btn{width:100%}
  .btn--neutral{width:100%}
  .site-footer{padding:54px 0 68px}
  .footer__grid{grid-template-columns: 1fr}
}
/* Page */
.page-hero{
  background:#fbfbfb;
  border-bottom:1px solid var(--line);
}
.page-hero__inner{
  padding:54px 0 34px;
}
.page-hero__title{
  margin:0;
  font-size:44px;
  letter-spacing:-.5px;
  color:#2f2f2f;
  font-weight:800;
}
.page-hero__subtitle{
  margin:10px 0 0;
  max-width:820px;
  color:var(--muted);
  font-size:14px;
  line-height:1.75;
}
.page-blocks{background:#fff}
.page-blocks .container{padding:34px 0 84px}
.page-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:24px;
}
.page-card{
  background:var(--card-bg);
  border:1px solid var(--card-border);
  border-radius:18px;
  box-shadow:0 10px 24px rgba(0,0,0,.06);
  padding:20px 18px;
}
.page-card__title{
  margin:0 0 8px;
  font-size:18px;
  font-weight:800;
  color:#2f2f2f;
}
.page-card__text{
  margin:0;
  color:var(--muted);
  font-size:13px;
  line-height:1.65;
}
.page-actions{margin-top:18px}
@media (max-width: 1000px){
  .page-grid{grid-template-columns: repeat(2, minmax(0, 1fr))}
  .page-hero__title{font-size:40px}
}
@media (max-width: 600px){
  .page-grid{grid-template-columns: 1fr}
  .page-hero__inner{padding:46px 0 28px}
  .page-hero__title{font-size:36px}
}

/* Services Page Specific Styles */
/* Intro Section */
.services-intro{
  background: #ffffff url("/assets/images.jpg") center/cover no-repeat;
  border-bottom:1px solid var(--line);
  padding:50px 0 40px;
  position:relative;
  overflow:hidden;
}
/* Optional: Add overlay for better text readability */
.services-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.85); /* Adjust opacity as needed */
  z-index: 0;
}
.services-intro .container {
  position:relative;
  z-index:1; /* This ensures content stays above the background */
}
.services-intro__subtitle{
  margin:0 0 32px;
  max-width:100%;
  color:#1f1f1f;
  font-size:24px;
  font-weight:600;
  line-height:1.5;
  opacity:0;
  word-break:normal !important;
  overflow-wrap:normal !important;
  white-space:normal;
  hyphens:none !important;
  -webkit-hyphens:none !important;
  -moz-hyphens:none !important;
}
.services-intro__subtitle.animate-in{
  opacity:1;
}
.services-intro__subtitle span{
  display:inline-block;
  opacity:0;
  transform:translateY(20px);
  animation:fadeInUp 0.6s ease forwards;
}
.services-intro__cta{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  margin-top:0;
}
.btn--black{
  background:#1f1f1f;
  color:#fff;
  border:2px solid #1f1f1f;
  padding:14px 24px;
}
.btn--black:hover{
  background:#000;
  border-color:#000;
}
/* Packages Section */
.services-packages{
  padding:68px 0;
  background:#fff;
}
.services-packages__grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:32px;
}
.services-package{
  background:#fbfbfb;
  border:1px solid var(--card-border);
  border-radius:20px;
  padding:38px 28px;
  box-shadow:0 10px 24px rgba(0,0,0,.06);
  display:flex;
  flex-direction:column;
  transition:transform .2s ease, box-shadow .2s ease;
}
.services-package:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 36px rgba(0,0,0,.1);
}
.services-package__header{
  margin-bottom:20px;
}
.services-package__icon{
  width:64px;
  height:64px;
  border-radius:16px;
  display:grid;
  place-items:center;
  margin-bottom:20px;
  color:#fff;
}
.services-package__icon--teal{background:rgba(0, 195, 179, .12); color:var(--teal)}
.services-package__icon--pink{background:rgba(255, 59, 111, .12); color:var(--pink)}
.services-package__icon--yellow{background:rgba(255, 186, 80, .12); color:#f2a50c}
.services-package__title{
  margin:0;
  font-size:24px;
  font-weight:800;
  color:#2f2f2f;
  letter-spacing:-.3px;
}
.services-package__desc{
  margin:0 0 24px;
  color:var(--muted);
  font-size:15px;
  line-height:1.75;
  flex-grow:1;
}
.services-package__features{
  list-style:none;
  padding:0;
  margin:0 0 28px;
  display:grid;
  gap:12px;
}
.services-package__features li{
  position:relative;
  padding-left:24px;
  color:#4a4a4a;
  font-size:14px;
  line-height:1.6;
}
.services-package__features li::before{
  content:"✓";
  position:absolute;
  left:0;
  color:var(--teal);
  font-weight:700;
}
.services-package .btn{
  margin-top:auto;
  width:100%;
  justify-content:center;
}
/* Included Section */
.services-included{
  padding:68px 0;
  background:#fbfbfb;
  border-top:1px solid var(--line);
}
.services-included__title{
  margin:0 0 14px;
  font-size:36px;
  font-weight:800;
  letter-spacing:-.3px;
  color:#2f2f2f;
  text-align:center;
}
.services-included__subtitle{
  margin:0 auto 48px;
  max-width:680px;
  text-align:center;
  color:var(--muted);
  font-size:15px;
  line-height:1.75;
}
.services-included__grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:28px;
}
.services-included__item{
  background:#fff;
  border:1px solid var(--card-border);
  border-radius:16px;
  padding:24px;
  text-align:center;
}
.services-included__item-title{
  margin:0 0 8px;
  font-size:18px;
  font-weight:700;
  color:#2f2f2f;
}
.services-included__item-text{
  margin:0;
  color:var(--muted);
  font-size:13px;
  line-height:1.65;
}
/* CTA Section */
.services-cta{
  padding:68px 0;
  background:#fff;
  border-top:1px solid var(--line);
  text-align:center;
}
.services-cta__title{
  margin:0 0 14px;
  font-size:36px;
  font-weight:800;
  letter-spacing:-.3px;
  color:#2f2f2f;
}
.services-cta__subtitle{
  margin:0 auto 28px;
  max-width:580px;
  color:var(--muted);
  font-size:15px;
  line-height:1.75;
}
/* Responsive */
@media (max-width: 1100px){
  .services-packages__grid{grid-template-columns: repeat(2, minmax(0, 1fr))}
  .services-included__grid{grid-template-columns: repeat(2, minmax(0, 1fr))}
}
@media (max-width: 900px){
}
@media (max-width: 700px){
  .services-packages__grid{grid-template-columns: 1fr}
  .services-included__grid{grid-template-columns: 1fr}
}
@media (max-width: 600px){
  /* Ensure text wrapping rules are maintained on mobile */
  * {
    word-break: normal !important;
    hyphens: none !important;
    -webkit-hyphens: none !important;
    -moz-hyphens: none !important;
    -ms-hyphens: none !important;
  }

  /* Override any aggressive word-breaking that might exist */
  p, h1, h2, h3, h4, h5, h6, li, span, div, a, button {
    word-break: normal !important;
    hyphens: none !important;
    overflow-wrap: break-word !important;
  }

  .services-intro,
  .services-packages,
  .services-included,
  .services-cta{
    padding:48px 0;
  }
  .services-included__title,
  .services-cta__title{font-size:32px}
  .services-package{padding:28px 22px}
}

/* Animations and Effects */
/* Scroll-triggered animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes letterAppear {
  from {
    opacity: 0;
    transform: translateY(20px) rotateX(90deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0);
  }
}

/* Initial hidden state */
[data-animate] {
  opacity: 0;
}

[data-animate].animate-in {
  animation-fill-mode: forwards;
}

[data-animate="fade-up"].animate-in {
  animation: fadeInUp 0.6s ease-out forwards;
}

[data-animate="scale"].animate-in {
  animation: scaleIn 0.5s ease-out forwards;
}

[data-delay="100"].animate-in { animation-delay: 0.1s; }
[data-delay="200"].animate-in { animation-delay: 0.2s; }
[data-delay="300"].animate-in { animation-delay: 0.3s; }

/* Enhanced package card hover effects */
.services-package {
  position: relative;
  overflow: hidden;
}

.services-package::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  transition: left 0.6s ease;
  z-index: 1;
}

.services-package:hover::before {
  left: 100%;
}

.services-package:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
  border-color: var(--teal);
}

.services-package__icon {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              background-color 0.3s ease;
  position: relative;
  z-index: 2;
}

.services-package:hover .services-package__icon {
  transform: scale(1.15) rotate(10deg);
}

.services-package__icon--teal:hover { 
  background: rgba(0, 195, 179, 0.2) !important; 
}

.services-package__icon--pink:hover { 
  background: rgba(255, 59, 111, 0.2) !important; 
}

.services-package__icon--yellow:hover { 
  background: rgba(255, 186, 80, 0.2) !important; 
}

/* Feature list animations */
.services-package__features li {
  transition: all 0.2s ease;
  padding-left: 24px;
}

.services-package__features li::before {
  transition: transform 0.2s ease, color 0.2s ease;
}

.services-package:hover .services-package__features li {
  padding-left: 28px;
  color: #2f2f2f;
}

.services-package:hover .services-package__features li::before {
  transform: scale(1.2);
  color: var(--pink);
}

/* Included items hover effect */
.services-included__item {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
}

.services-included__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  border-color: var(--teal);
}

.services-included__item-title {
  transition: color 0.2s ease;
}

.services-included__item:hover .services-included__item-title {
  color: var(--teal);
}

/* Package subtitle styling */
.services-package__subtitle {
  margin: 8px 0 0;
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Button hover enhancement */
.services-package .btn {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 2;
}

.services-package:hover .btn {
  background: var(--pink);
  color: #fff;
  border-color: var(--pink);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(255, 59, 111, 0.25);
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  [data-animate],
  .services-package,
  .services-included__item {
    transition: none;
    animation: none;
  }
  
  [data-animate] {
    opacity: 1;
  }
}

/* ===== Global: Natural word wrapping - no hyphens, no mid-word breaking (ALL SCREENS) ===== */
/* Apply to all text elements globally */
* {
  word-break: normal;
  hyphens: none;
  -webkit-hyphens: none;
  -moz-hyphens: none;
  -ms-hyphens: none;
}

/* Allow wrapping at word boundaries only (between words, not within words) */
p, h1, h2, h3, h4, h5, h6, li, ul, ol,
span, div, a, button,
.hero__title, .hero__desc,
.services__title, .services__lead, .panel__title, .panel__desc,
.provider__title, .provider__subtitle,
.why__title, .why__desc,
.about-story__title, .about-story__lead, .about-story__text,
.about-values__title, .about-values__subtitle, .about-values__card-title, .about-values__card-text,
.about-process__title, .about-process__subtitle, .about-process__step-title, .about-process__step-text,
.contact-section, .contact-info, .form-label, .form-input, .form-textarea,
.services-intro, .services-package, .services-included,
.results-section__title, .results-section__lead, .result-card__title, .result-card__desc,
.footer__blurb, .footer__list a,
.btn, .toplink, .navlink,
.checklist, .checklist li,
.about-story__stat-label,
.about-process__step-list, .about-process__step-list li {
  overflow-wrap: break-word;  /* Only breaks at word boundaries */
  word-wrap: break-word;       /* Legacy support */
  word-break: normal;          /* Prevents breaking words in the middle */
  hyphens: none;               /* No hyphenation */
  -webkit-hyphens: none;
  -moz-hyphens: none;
  -ms-hyphens: none;
}

/* Ensure text elements can wrap properly */
p, div, span, h1, h2, h3, h4, h5, h6 {
  max-width: 100%;
  box-sizing: border-box;
}

/* ===== Desktop: Ensure word-breaking rules apply ===== */
@media (min-width: 601px) {
  h1, h2, h3, h4, h5, h6 {
    word-break: normal !important;
    overflow-wrap: break-word !important;
    hyphens: none !important;
  }
}

