/* ===========================================
   GLOBAL STYLES
   =========================================== */
html {
  scroll-padding-top: 10rem;
}

/* this adds an spacer before the anchor target which pushes the page content below the navbar. And clears up the navbar getting cut off*/
[id]:target::before {
  content: "";
  display: block;
  height: 100px; 
  margin-top: -100px;
  visibility: hidden;
}

* {
  font-family: "Rethink Sans", sans-serif;
  font-optical-sizing: auto;
}

a.navbar-brand {
  font-family: "Rethink Sans", sans-serif;
  font-optical-sizing: auto;
}

.brand {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: .5px;
}
.brand2 {
  font-weight: 700;
  color: #4123D2;
  letter-spacing: .75px;
}

header {
  padding-top: 9.5rem;
  padding-bottom: 6rem;
}

span.identifier {
  font-weight: 700;
}

.bi::before,
[class*=" bi-"]::before,
[class^="bi-"]::before {
  font-size: 1.85rem;
}

/* ===========================================
   NAVBAR STYLES
   =========================================== */
.custom-header {
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
   z-index: 1030;
}

.navbar-nav {
  align-items: center;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.about-link {
  font-weight: 700;
  font-family: "Rethink Sans", sans-serif;
  font-optical-sizing: auto;
}

.contact-info {
  display: flex;
  flex-direction: column;
}

.contact-item-wrapper {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.contact-item i {
  font-size: 1.85rem;
  margin-right: 0.5rem;
}

.nav-link {
  font-size: 1.2rem;
  color: #4123D2;
  letter-spacing: .75px;
}

.bg-light {
  background-color: #ffffff !important;
}

/* ===========================================
   MINDSNUG BANNER - BASE (UPDATED)
   =========================================== */
.mindsnug-banner {
  background-image: url('../assets/img/bg-masthead.jpg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 100%;
  max-width: 1600px;
  min-height: 60vh;
  height: auto;
  overflow: hidden;
  border-radius: 25px;
  padding: 3rem;
  margin: 48px auto;
  position: relative;
}

.titleContents {
  position: relative;
  bottom: 0;
  font-weight: 400;
}

.titleContents h1 {
  color: #000000;
  font-size: 6rem;
}

.subTitle {
  color: #000000;
  font-size: 3.1rem;
  font-weight: 100;
  letter-spacing: -0.1rem;
  position: relative;
  bottom: 40px;
}

.mainTitle {
  font-size: 2rem;
  color: #000000;
  line-height: 40px;
}

/* Mobile-only styles (up to 575.98px) */
@media (max-width: 575.98px) {
  .titleContents h1 {
    font-size: 4rem;
  }
  h2.subTitle {
    font-size: 2rem;
    margin-top: 2rem;
  }
}




/* === Desktop large spacing === */
@media (min-width: 1200px) {
  .mindsnug-banner {
    min-height: 900px;
    margin: 130px auto 0;
  }
}

/* === Ultra-wide 21:9 monitors === */
@media (min-aspect-ratio: 21/9) {
  .mindsnug-banner {
    background-position: 60% center; /* shift slightly right to keep subject centered */
    background-size: cover;
    min-height: 80vh;
  }
}

/* ===========================================
   CAT PRICING SECTION - BASE
   =========================================== */
.cat-pricing-section {
  padding: 0.25rem;
  width: fit-content;
  max-width: 400px;
  max-height: 324px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);

}

.pricing-bubble {
  background-color: #FBE9E9;
  border-radius: 50%;
  width: 160px;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(0, 0, 0);
  position: relative;
  z-index: 2;
}

.pricing-text {
  text-align: center;
  line-height: 1.2;
}

.pricing-label {
  font-size: 1.5rem;
  display: block;
  font-weight: 400;
}

.pricing-amount {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.kitten-image {
  width: 200px;
  height: auto;
  position: relative;
  z-index: 3;
}


/* Mobile-only styles (up to 575.98px) */
@media (max-width: 575.98px) {
  .kitten-image {
    position: relative;
    bottom: 72px;
    left: 52px;
    width: 200px;
  }
}


.quote-btn {
  background-color: #FBE9E9;
  border: none;
  border-radius: 40px;
  padding: 12px 24px;
  font-size: 1.4rem;
  font-weight: bold;
  color: #000000;
  cursor: pointer;
  transition: background-color 0.3s ease;
  position: relative;
  bottom: 56px;
  z-index: 1;
  width: 265px;
}

/* Mobile-only styles (up to 575.98px) */
@media (max-width: 575.98px) {
  .quote-btn {
    position: relative;
    right: 8px;
    bottom: 72px;
  }
}



.quote-btn:hover {
  background-color: #A76CAC;
  color: #fef;
}

/* ===========================================
   PAPER THERAPY SECTION (UPDATED)
   =========================================== */
.paperTherapyContainer {
  background-image: url('../assets/img/doorBackground.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  max-width: 1600px;
  min-height: 70vh;
  height: auto;
  border-radius: 25px;
  padding: 3rem;
  margin: 50px 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  overflow: hidden;
}

.paperTherapyWrapper {
  width: 100%;
  display: flex;
  justify-content: flex-end !important;;
}

.papertherapyBook {
  position: relative;
  bottom: 48px;
}

/* === Updated promo-content layout === */
.promo-content {
  margin: 0 auto;
  width: 100%;
  max-width: 900px;
  text-align: center;
  padding: 0 1rem;
}

/* Desktop right-aligned version */
@media (min-width: 992px) {
  .paperTherapyContainer {
    justify-content: flex-end;
    padding-right: 6rem;
  }
  .promo-content {
    text-align: right;
    margin-right: 2rem;
    max-width: 600px;
  }
}

/* Ultra-wide 21:9 background centering */
@media (min-aspect-ratio: 21/9) {
  .paperTherapyContainer {
    background-position: 55% center; /* shift focal point slightly */
  }
}

/* Tablet and below adjustments */
@media (max-width: 991.98px) {
  .paperTherapyContainer {
    flex-direction: column;
    padding: 2rem 1.5rem;
    border-radius: 0;
    min-height: auto;
  }
  .promo-content {
    text-align: center;
    margin: 0 auto;
    padding: 0 1rem;
  }
}



/* ===========================================
   SERVICES BOX SECTION
   =========================================== */
.services-box {
  position: absolute;
  bottom: 8rem;
  right: 6rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem 2.5rem;
  max-width: 400px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}




.service-item {
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  text-align: left;
}

.service-item:last-of-type {
  margin-bottom: 2rem;
}

.consultation-btn {
  display: block;
  background-color: rgba(255, 255, 255, 0.9);
  color: #000000;
  text-align: center;
  padding: 0.9rem 1.5rem;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.consultation-btn:hover {
  background-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  color: #000000;
  text-decoration: none;
}

/* ===========================================
   RESPONSIVE - SERVICES BOX
   =========================================== */


/* Tablet (768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .services-box {
    position: static;
    margin: 2rem auto 0;
    margin-left: -38px; /* Align to left */
    margin-right: auto;
    max-width: 450px;
    position: relative;
    top: 21px;
    left: 1px;
  }

  /* Dark text for tablet */
  .service-item {
    color: #111111;
  }
}

/* Mobile (up to 767px) */
@media (max-width: 767px) {
  .services-box {
    position: static;
    margin: auto 0;
    background: rgba(255, 255, 255, 0.35);
    padding: 1.5rem;
    max-width: 100%;
    position: relative;
    bottom: 0px;
    left: 0px;
  }

  .service-item {
    font-size: 1rem;
    margin-bottom: 1.2rem;
    text-align: center;
    color: #111111; /* Dark text for mobile */
  }

  .service-item br {
    display: none;
  }

  .consultation-btn {
    font-size: 1rem;
    padding: 0.8rem 1.2rem;
  }
}

/* Desktop - adjust positioning */
@media (min-width: 992px) {
  .services-box {
    position: absolute;
    bottom: 8rem;
    right: 6rem;
  }
}

/* Desktop - adjust positioning */
@media (min-width: 992px) {
  .services-box {
    position: absolute;
    bottom: 4rem;
    right: 5.5rem;

  }
}

/* ===========================================
   RESPONSIVE STYLES (Desktop)
   =========================================== */
@media (min-width: 992px) {
  .mindsnug-banner {
    height: 900px;
    background-position: 92% 108%;
    background-size: 102%;
    max-width: 1600px;
    margin: 130px auto 0;
    border-radius: 25px;
    padding: 3rem;
  }

  .titleContents {
    position: relative;
    bottom: 14rem;
    text-align: left;
  }

  .titleContents h1 {
    font-size: 6rem;
  }

  .subTitle {
    font-size: 3.1rem !important;
    bottom: 40px;
    position: relative;
  }

  .mainTitle {
    font-size: 2rem;
    line-height: 40px;
  }

  .cat-pricing-section {
    position: absolute;
    bottom: 30rem;
    right: 5.5rem;
    display: block;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 0 2.5rem;
  }

  .pricing-bubble {
    top: 16px;
    margin-left: 20px;
  }

  .kitten-image {
    margin-left: 90px;
    transform: translateY(-16px);
    position: relative;
    bottom: 40px;
    width: 200px;
  }

  .quote-btn {
    left: 4px;
    bottom: 56px;
    width: 265px;
  }
}

/* ===========================================
   PAPER THERAPY SECTION
   =========================================== */
.paperTherapyContainer {
  background-image: url('../assets/img/doorBackground.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  min-height: 100vh;
  height: auto;
  border-radius: 25px;
  padding: 3rem;
  margin: 50px 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  overflow: hidden;
}


.paperTherapyWrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

.papertherapyBook {
  position: relative;
  bottom: 48px;
}

/* Text styling */
.promo-content {
  max-width: 1000px;
  margin-left: 50rem;
}

.promo-title {
  font-weight: 400;
  font-size: 4.8rem;
  letter-spacing: 2px;
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  margin-bottom: 4rem;
}

.promo-subtitle {
  font-size: 2rem;
  position: relative;
  bottom: 4rem;
}

.promo-text {
  font-size: 1.5rem;
  position: relative;
  bottom: 1rem;
  max-width: 400px;
  padding-bottom: 8px;
}

.promo-buttons {
  margin-top: 0.5rem;
}

.learnMore {
  font-size: 1.2rem;
  font-weight: 700;
  padding: 1.8rem 1.5rem; 
  width: 230px;
  border-color: #000;
  border-width: 2px;
}

.buyNow {
  background-color: #cedc54;
  color: rgb(0, 0, 0);
  font-size: 1.5rem;
  font-weight: 400;
  width: 250px;
  padding: 1.5rem; 
}

.buyNow:hover {
   background-color: #121a1a;
  color: rgb(255, 255, 255);
  font-size: 1.5rem;
  font-weight: 400;
  width: 250px;
  padding: 1.5rem; 
}

/* === Tablet (768px to 991px) === */
@media (max-width: 991.98px) {
  .paperTherapyContainer {
    background: linear-gradient(179.98deg, #E69375 -4.72%, #E79675 2.65%, #F0BB75 99.99%);
    height: auto;
    padding: 2rem 1.5rem;
    border-radius: 0;
    flex-direction: column;
  }

  .promo-content {
    margin-left: 0;
    text-align: center;
    max-width: 100%;
  }

  .promo-title {
    font-size: 3rem;
    margin-bottom: 2rem;
  }

  .promo-subtitle {
    font-size: 1.5rem;
    bottom: 0;
  }

  .papertherapyBook {
    bottom: 0;
    margin: 1.5rem auto;
    max-width: 300px;
  }

  .promo-text {
    font-size: 1.25rem;
    bottom: 0;
    margin: 0 auto 1rem auto;
    max-width: 500px;
  }

  .promo-buttons {
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
  }

  .learnMore,
  .buyNow {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
}

/* === Mobile (up to 767px) === */
@media (max-width: 767.98px) {
  .paperTherapyContainer {
    background: linear-gradient(179.98deg, #E69375 -4.72%, #E79675 2.65%, #F0BB75 99.99%);
    height: auto;
    padding: 2rem 1rem;
    flex-direction: column;
  }

  .promo-title {
    font-size: 2.4rem;
  }

  .promo-subtitle {
    font-size: 1.2rem;
  }

  .promo-text {
    font-size: 1rem;
  }

  .papertherapyBook {
    max-width: 260px;
  }

  .promo-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .learnMore {
    width: 100%;
    font-size: 1rem;
    font-weight: 700;
    padding: 1.5rem; 
    height: 86px;
    line-height: 2.2;
  }

  .buyNow {
    font-weight: 400;
    margin-bottom: 40px;
  }
}

/* ===========================================
   SENSORY ROOMS SECTION
   =========================================== */
.whatAreSensoryRooms {
  background-color: #FBE9E9;
}

.accordion-wrapper {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  max-width: 1000px;
}

.accordion-button {
  background-color: #fff;
  font-weight: 700;
  font-size: 1.4rem;
  padding: 1.25rem;
  border-radius: 0.5rem;
}

.accordion-button:not(.collapsed) {
  background-color: #9FBB60;
  color: #000000; 
}

.accordion-item {
  border: none;
  margin-bottom: 2rem;
  background-color: transparent;
}

.accordion-body {
  background-color: #fff;
  border-radius: 0.5rem;
  padding: 1.25rem;
  font-size: 1.2rem;
  line-height: 32px;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.06);
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

#accordionExample > h1 {
  font-size: 3rem;
  color: #0D1242;
  padding-bottom: 1.5rem;
}

.accordion-button:not(.collapsed) {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

#sensoryRooms .accordion-body p.lead {
  padding: 1rem 0;
  margin-bottom: 0.5rem;
}


/* ===========================================
   WHO USES SECTION
   =========================================== */
#whoUses {
  padding-top: 8rem !important;
  background: linear-gradient(180deg, #FDFBF9 0%, #FDFBF9 100%);
}

.whoUses {
  font-size: 1.5rem;
}

.whoUses p.lead {
  font-size: 2rem;
}

.image-grid .col {
  padding-top: 40px;
  padding-bottom: 40px;
}

.who-uses-list {
  text-align: left;
}

/* Center align the whole 3-column block in container */
@media (min-width: 768px) {
  .who-uses-list {
    display: flex;
    justify-content: center;
    gap: 2rem;
  }

  .who-uses-list > div {
    max-width: 300px;
  }
}

@media (max-width: 767.98px) {
  .who-uses-list > div {
    margin-left: auto;
    margin-right: auto;
  }
}

/* ===========================================
   ABOUT SECTION
   =========================================== */
#about {
  padding: 8rem 0;
  position: relative;
  font-size: 1.3rem;
}

#about .col-lg-4 p.mb-4:first-of-type { 
  padding-bottom: 1.5rem
}

#about .bg-light {
  border-radius: 1rem;
}

/* ===========================================
   CONTACT SECTION
   =========================================== */

   /* Make quote button work as a link */
.quote-btn {
  display: inline-block;
  text-decoration: none;
  text-align: center;
  line-height: normal;
}

.quote-btn:hover {
  text-decoration: none;
}


/* Tablet (768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .cat-pricing-section .quote-btn {
    position: static;
    margin: 2rem auto 0;
    margin-left: -38px; /* Align to left */
    margin-right: auto;
    max-width: 450px;
    position: relative;
    bottom: 68px;
    left: 1px;
  }

  img.kitten-image {
    position: relative;
    bottom: 36px;
  }

}

   #contact {
  background-color: #1a1a1a;
  padding: 6rem 0;
  color: #ffffff;
}

#contact .section-title {
  text-align: center;
  margin-bottom: 4rem;
}

#contact .subtitle {
  color: #ff6b6b;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  display: block;
}

#contact .section-title p {
  font-size: 1.75rem !important;
}

#contact h2 {
  color: #ffffff;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

#contact p {
    font-size: 1.5rem;
}


#contact .section-title p {
  color: #b0b0b0;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

/* Info Items - Left Column */
.contact .info-item {
  background: #2a2a2a;
  padding: 30px;
  border-radius: 10px;
  border: 1px solid #3a3a3a;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  transition: 0.3s;
}

.contact .info-item:hover {
  border-color: #ff6b6b;
  box-shadow: 0 5px 20px rgba(255, 107, 107, 0.2);
}

.contact .info-item .icon-wrapper {
  width: 50px;
  height: 50px;
  background: rgba(255, 107, 107, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
  transition: 0.3s;
}

.contact .info-item .icon-wrapper i {
  color: #ff6b6b;
  font-size: 24px;
  transition: 0.3s;
}

.contact .info-item:hover .icon-wrapper {
  background: #ff6b6b;
}

.contact .info-item:hover .icon-wrapper i {
  color: #ffffff;
}

.contact .info-item h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #ffffff;
}

.contact .info-item p {
  margin: 0;
  font-size: 14px;
  color: #b0b0b0;
}

/* Contact Form - Right Column */
.contact .php-email-form {
  background: #2a2a2a;
  padding: 40px;
  border-radius: 10px;
  border: 1px solid #3a3a3a;
}

.contact .php-email-form .form-control {
  color: #ffffff;
  background-color: #1a1a1a;
  border: 1px solid #3a3a3a;
  padding: 12px 15px;
  font-size: 14px;
  border-radius: 5px;
  transition: 0.3s;
}

.contact .php-email-form .form-control:focus {
  border-color: #ff6b6b;
  box-shadow: 0 0 0 0.2rem rgba(255, 107, 107, 0.25);
  background-color: #1a1a1a;
  color: #ffffff;
}

.contact .php-email-form .form-control::placeholder {
  color: #666666;
}

.contact .php-email-form textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.contact .php-email-form button[type=submit] {
  background: #ff6b6b;
  color: #ffffff;
  border: none;
  padding: 12px 40px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
  display: inline-block;
}

.contact .php-email-form button[type=submit]:hover {
  background: #ff5252;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

/* Loading, error, and success messages */
.contact .loading,
.contact .error-message,
.contact .sent-message {
  display: none;
  margin-bottom: 15px;
  padding: 10px;
  border-radius: 5px;
}

.contact .loading {
  background: #2a2a2a;
  color: #ffffff;
  text-align: center;
}

.contact .error-message {
  background: rgba(255, 0, 0, 0.1);
  color: #ff6b6b;
  border: 1px solid #ff6b6b;
}

.contact .sent-message {
  background: rgba(0, 255, 0, 0.1);
  color: #4CAF50;
  border: 1px solid #4CAF50;
}

/* Contact Section Responsive */
@media (max-width: 768px) {
  #contact h2 {
    font-size: 2rem;
  }

  .contact .info-item {
    padding: 20px;
  }

  .contact .info-item .icon-wrapper {
    width: 40px;
    height: 40px;
    margin-right: 15px;
  }

  .contact .info-item .icon-wrapper i {
    font-size: 20px;
  }

  .contact .info-item h3 {
    font-size: 16px;
  }

  .contact .php-email-form {
    padding: 30px 20px;
  }
}

/* ===========================================
   FOOTER SECTION
   =========================================== */
.custom-divider {
  border-right: 1px solid rgb(69, 73, 77) !important;
}

/* ===== DEBUG / FORCE OVERRIDES for mindsnug-banner ===== */
.mindsnug-banner {
  /* enforce background fill and stable focal point */
  background-repeat: no-repeat !important;
  background-position: center top !important;
  background-size: cover !important;

  /* let the section size with viewport/content */
  min-height: 60vh !important;
  height: auto !important;

  /* ensure nothing shows outside rounded corners */
  overflow: hidden !important;

  /* leave layout padding but force container background transparent */
  padding: 3rem !important;
  margin: 48px auto !important;
  border-radius: 25px !important;

  /* keep this on top of normal page flow (not over header) */
  position: relative !important;
  z-index: 0 !important;
}



/* remove any pseudo-element that might be overlaying the banner */
.mindsnug-banner::before, 
.mindsnug-banner::after {
  display: none !important;
  content: none !important;
}

/* revert any earlier desktop overrides that might still exist */
@media (min-width: 992px) {
  .mindsnug-banner {
    background-position: center top !important;
    background-size: cover !important;
    min-height: 900px !important;
    height: auto !important;
    margin: 130px auto 0 !important;
  }
  .titleContents { bottom: 0 !important; position: relative !important; }
}
/* ===== PATCH: PAPER THERAPY ALIGNMENT FIX ===== */
.paperTherapyContainer {
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end; /* align right side gracefully */
  background-position: center center !important;
  background-size: cover !important;
  padding: 3rem 5rem !important;
  overflow: hidden !important;
  width: 100%;
  max-width: 1600px;
  min-height: 70vh;
  border-radius: 25px;
  margin: 50px auto;
}

/* Fix promo-content layout */
.promo-content {
  margin: 0 !important;
  padding: 0 2rem !important;
  text-align: right !important;
  max-width: 600px !important;
  flex: 0 1 600px;
}

/* Ensure buttons stay inside container */
.promo-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 1rem;
}

/* Adjust for tablet & mobile */
@media (max-width: 991.98px) {
  .paperTherapyContainer {
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 2rem 1rem !important;
    border-radius: 0;
    min-height: auto;
  }

  .promo-content {
    text-align: center !important;
    max-width: 100% !important;
    padding: 0 1rem !important;
    margin: 0 auto !important;
  }

  .promo-buttons {
    justify-content: center;
  }
}

/* For ultra-wide (21:9) screens */
@media (min-aspect-ratio: 21/9) {
  .paperTherapyContainer {
    background-position: 55% center !important;
    justify-content: flex-end;
    padding-right: 8rem !important;
  }

  .promo-content {
    max-width: 700px !important;
    padding-right: 2rem !important;
  }
}
