:root {
  --hero-bg: #f8f4ef;
  --hero-primary: #334E71;
  --hero-text: #2A4F74;
  --what-text: #000000;
}

.hero-section {
  position: relative;
  isolation: isolate;
  min-height: clamp(520px, 80vh, 900px);
  background-color: var(--hero-bg);
  color: var(--hero-text);
  padding: 5rem 0;
  overflow: hidden;
}

.hero-bg-media,
.hero-overlay-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.hero-bg-media {
  z-index: 0;
}

.hero-overlay-media {
  z-index: 2;
  opacity: 0.45;
  mix-blend-mode: multiply;
}

.hero-bg-img,
.hero-overlay-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 580px;
}

.hero-title {
  position: relative;
  color: var(--hero-text);
  font-size: 4rem;
  font-style: normal;
  font-weight: 300;
  line-height: 120%;
  padding-top: 40px;
}
.hero-title:before {
  display: block;
  width: 5rem;
  height: 0.25rem;
  background: #2A4F74;
  position: absolute;
  left: 0px;
  top: 0;
  content: "";
}
.hero-description {
  color: var(--hero-text);
  font-size: 1.25rem;
  font-weight: 400;
}

.letter-spacing-1 {
  letter-spacing: 0.1em;
}

.hero-btn {
  padding: 0.85rem 1.75rem;
  font-weight: 600;
  border-radius: 0;
  text-transform: none;
  font-size: 1rem;
}

.hero-section .btn-primary {
  background-color: var(--hero-primary);
  border-color: var(--hero-primary);
  margin: 0;
}

.hero-section .btn-primary:hover,
.hero-section .btn-primary:focus {
  background-color: #253957;
  border-color: #253957;
}

.hero-section .btn-outline-primary {
  color: var(--hero-primary);
  border-color: var(--hero-primary);
}

.hero-section .btn-outline-primary:hover,
.hero-section .btn-outline-primary:focus {
  background-color: var(--hero-primary);
  color: #fff;
}

@media (max-width: 991.98px) {
  .hero-section {
    padding: 4rem 0;
  }

  .hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
    pointer-events: none;
  }

  .hero-overlay-media {
    opacity: 0.35;
  }

  .hero-copy {
    margin-inline: auto;
  }
}

@media (max-width: 575.98px) {
  .hero-section {
    min-height: 620px;
    padding: 3.5rem 0;
  }

  .hero-title {
    font-size: 3rem;
    color: #fff;
  }
  .hero-title:before {
    display: none;
  }

  .hero-description {
    font-size: 1rem;
    color: #fff;
  }
  .hero-section .btn-primary{
    font-size: 1rem;
    display: flex;
    align-items: center;
  }
}

.what-is-section {
  padding: clamp(3.5rem, 7vw, 6.5rem) 0;
}

.what-is-title {
  color: var(--hero-text);
  text-align: left;
  font-size: 2.25rem;
  font-weight: 600;
}

.what-is-body,
.what-is-body p,
.what-is-body ul,
.what-is-body ul li{
  color: var(--what-text);
  font-size: 1.25rem;
  line-height:1.6rem;
}

.btn.what-is-btn {
  background-color: var(--hero-primary);
  border-color: var(--hero-primary);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.95rem 1.9rem;
  margin: 0;
}

.btn.what-is-btn:hover,
.btn.what-is-btn:focus {
  background-color: #253957;
  border-color: #253957;
}

.what-is-figure {
  max-width: 520px;
}

.what-is-figure img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 991.98px) {
  .what-is-section {
    padding: 3rem 0;
  }

  .what-is-title {
    font-size: 2rem;
  }
}

@media (max-width: 575.98px) {
  .what-is-body {
    font-size: 1rem;
  }

  .what-is-figure {
    margin-inline: auto;
  }
}

.symptoms-section {
  /*padding: clamp(3.5rem, 7vw, 6.5rem) 0;*/
}
.symptoms-section .col{
  background: #F6F6F6;
  padding: 2.875rem 3.75rem 3.5rem 3.75rem;
}
.symptoms-title {
  color: var(--hero-text);
  font-size: 2.25rem;
  font-weight: 600;
  margin-bottom: 0;
}

.symptoms-intro {
  color: var(--what-text);
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 0;
  max-width: 900px;
  margin-inline: auto;
}

.symptoms-subtitle {
  color: var(--hero-text);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}

.symptoms-list {
  margin-bottom: 3rem;
}

.symptoms-item {
  position: relative;
  padding-left: 1.75rem !important;
  display: flex;
  align-items: flex-start;
}

.symptoms-item::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--hero-text);
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.4;
}

.symptoms-text {
  color: var(--what-text);
  font-size: 1.25rem;
  line-height: 1.5;
}

.symptoms-cta {
  background-color: var(--hero-primary);
  border-color: var(--hero-primary);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 1rem 2rem;
  border-radius: 0;
  transition: all 0.3s ease;
  margin: 0;
}

.symptoms-cta:hover,
.symptoms-cta:focus {
  background-color: #253957;
  border-color: #253957;
  color: #fff;
}

@media (min-width: 1200px) {
  .symptoms-item {
    max-width: 20%;
    flex: 0 0 20%;
  }
}

@media (max-width: 991.98px) {
  .symptoms-section {
    padding: 3rem 0;
  }

  .symptoms-subtitle {
    font-size: 1.35rem;
  }

  .symptoms-item {
    padding-left: 1.5rem !important;
  }

  .symptoms-text {
    font-size: 1rem;
  }
  .hero-title,
  .hero-description{
    color: #fff;
  }
  .hero-title:before{
    background: #fff;
  }
}

@media (max-width: 767.98px) {
  .symptoms-intro {
    font-size: 1rem;
  }

  .symptoms-cta {
    font-size: 1rem;
    padding: 0.875rem 1.75rem;
    width: 100%;
  }
  .symptoms-section .col{
    padding: 1.25rem;
  }
  .symptoms-list{
    padding-left: 40px;
  }
  .symptoms-item{
    padding-left: 1.5rem !important;
  }
  .symptoms-item::before{
    top: -0.17rem;
  }
}

/* Causes Section - Splide Slider */
.causes-section {
  padding: clamp(3.5rem, 7vw, 6.5rem) 0;
  background: #fff;
}

.causes-title {
  color: var(--hero-text);
  font-size: 2.25rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 0;
}

.causes-description {
  color: var(--what-text);
  font-size: 1.25rem;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

.causes-splide {
  margin-top: 0;
}

.causes-splide .splide__list {
  display: flex;
  align-items: stretch;
}

.causes-splide .splide__slide {
  height: auto;
}

.cause-card-title {
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--hero-text);
  margin-bottom: 0;
  line-height: 1.3;
  padding-bottom: 1.25rem;
}

.cause-card-text {
  color: var(--what-text);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  padding-bottom: 0;
}
.splide.causes-splide{
  display: flex;
  flex-direction: column;
}
.causes-splide .splide__arrows{
  order: 2;
}
.causes-splide .splide__track{
  order: 1;
}
/* Splide arrows customization for mobile */
@media (max-width: 1200px) {
  .causes-section {
    padding: 3rem 0;
  }

  .causes-description {
    font-size: 1rem;
    margin-bottom: 0;
  }

  .causes-splide .splide__arrows {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
  }

  .causes-splide .splide__arrow {
    width: 3rem;
    height: 3rem;
    background: #F6F6F6;
    border-radius: 0;
    position: static;
    transform: none;
    opacity: 1;
  }

  .causes-splide .splide__arrow svg {
    fill: var(--hero-primary);
  }

  .causes-splide .splide__arrow:hover {
    width: 3rem;
    height: 3rem;
    background: var(--hero-primary);
    border-radius: 0;
    position: static;
    transform: none;
    opacity: 1;
  }

  .causes-splide .splide__arrow:hover svg {
    fill: #fff;
  }

  .causes-splide .splide__arrow:disabled {
    opacity: 1;
  }

  .causes-splide .splide__pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    position: static;
  }

  .causes-splide .splide__pagination__page {
    background: rgba(42, 79, 116, 0.3);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    padding: 0;
    transition: background 0.3s ease;
  }

  .causes-splide .splide__pagination__page.is-active {
    background: var(--hero-text);
    transform: scale(1.2);
  }
}
@media (max-width: 991px) {
  .causes-splide .splide__arrows{
    margin-top: 1.5rem;
  }
  .causes-title{
    text-align: left;
  }
}
@media (max-width: 575.98px) {
  .causes-title {
    font-size: 2rem;
  }

  .cause-card {
    padding: 0;
  }

  .cause-card-title {
    font-size: 1.25rem;
  }
}

/* Before & After Section */
.ba-section {
  padding: clamp(3.5rem, 7vw, 6.5rem) 0;
  background: #E8E8E8;
}

.ba-section-wight {
  background: #fff;
}
.ba-title {
  color: var(--hero-text);
  font-size: 2.25rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 2rem;
}

.ba-splide .splide__list {
  display: flex;
  align-items: stretch;
}

.ba-splide .splide__slide {
  height: auto;
}

.ba-card {
  height: 100%;
}

.ba-figure {
  position: relative;
  overflow: hidden;
  /*background: #fff;*/
}

.ba-figure img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.ba-labels {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.25rem 0;
  margin: 0;
  /*background: #fff;*/
}

.ba-label {
  flex: 1;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--what-text);
  padding-left: 0.25rem;
}

.ba-label-left {
  /*border-right: 1px solid #E8E8E8;*/
}

.ba-disclaimer {
  font-size: 1.25rem;
  color: var(--what-text);
  margin-bottom: 0;
  padding-bottom: 1.5rem;
}

.btn.ba-cta {
  background-color: var(--hero-primary);
  border-color: var(--hero-primary);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 1rem 2rem;
  border-radius: 0;
  transition: all 0.3s ease;
  margin: 0;
}

.ba-cta:hover,
.ba-cta:focus {
  background-color: #253957;
  border-color: #253957;
  color: #fff;
}

@media (max-width: 991.98px) {
  .ba-section {
    padding: 3rem 0;
  }
}

@media (max-width: 767.98px) {
  .ba-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  .ba-label {
    font-size: 1rem;
  }

  .ba-labels {
    padding: 0.5rem 0;
  }

  .ba-disclaimer {
    font-size: 0.9rem;
  }

  .ba-cta {
    font-size: 1rem;
    padding: 0.875rem 1.75rem;
    width: 100%;
  }
}

/* Solutions Section */
.solutions-section {
  background: #334E71;
  color: #fff;
  overflow: hidden;
  padding: clamp(3.5rem, 7vw, 6.5rem) 0;
}

.solutions-content {
  /*padding: clamp(3rem, 6vw, 5.5rem) clamp(1.5rem, 4vw, 3.75rem);*/
}

.solutions-title {
  color: #fff;
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0;
  padding-bottom: 2rem;
  text-align: left;
}

.solutions-intro {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 0rem;
  padding-bottom: 2rem;
  color: #fff;
}

.solutions-text {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 0rem;
  padding-bottom: 1.25rem;
  color: #fff;
}

.btn.solutions-btn {
  background-color: #fff;
  color: #334E71;
  border-color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.95rem 1.9rem;
  border-radius: 0;
  transition: all 0.3s ease;
  margin: 1.5rem 0 0 0;
  align-self: flex-start;
}

.btn.solutions-btn:hover,
.btnsolutions-btn:focus {
  background-color: #f0f0f0;
  border-color: #f0f0f0;
  color: #334E71;
}

.solutions-image-wrapper {
  width: 100%;
  height: 100%;
  min-height: 400px;
  overflow: hidden;
}

.solutions-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (min-width: 992px) {
  .solutions-image-wrapper {
    min-height: 600px;
  }
}

@media (max-width: 991.98px) {
  .solutions-section{
    padding: 3rem 0;
  }
  .solutions-content {
    /*padding: 2.5rem 1.5rem;*/
  }

  .solutions-title {
    font-size: 2rem;
  }

  .solutions-intro {
    font-size: 1.25rem;
  }

  .solutions-text {
    font-size: 1.25rem;
  }

  .solutions-image-wrapper {
    min-height: 350px;
  }
}

@media (max-width: 575.98px) {

  .solutions-title {
    font-size: 2rem;
  }

  .solutions-intro {
    font-size: 1rem;
  }

  .solutions-text {
    font-size: 1rem;
  }

  .solutions-btn {
    width: 100%;
    font-size: 1rem;
    padding: 0.875rem 1.75rem;
  }

}

/* About Dr Section */
.aboutdr-section {
  background: #fff;
  overflow: hidden;
  position: relative;
}

.aboutdr-image-wrapper-dt {
  position: absolute;
  inset: 0;
  width: 50%;
  height: 100%;
  z-index: 1;
  top: 0;
  left: 0;
}
.aboutdr-image-wrapper-dt img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.aboutdr-image-wrapper {
  width: 100%;
  height: 100%;
  min-height: 600px;
  overflow: hidden;
}

.aboutdr-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.aboutdr-content {
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 3vw, 3rem);
}

.aboutdr-title {
  color: var(--hero-primary);
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0;
  text-align: left;
}

.aboutdr-text {
  color: var(--what-text);
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 0;
  padding-bottom: 1.5rem;
}

.aboutdr-text:last-of-type {
  margin-bottom: 0;
  padding-bottom: 2.5rem;
}

.aboutdr-cta {
  display: flex;
  flex-direction: column;
  align-items: start;
  max-width: 300px;
  gap: 0.75rem;
  color: var(--hero-primary);
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  padding-bottom: 0.5rem;
  transition: all 0.3s ease;
}
.aboutdr-cta:hover {
  color: var(--hero-primary);
}

@media (min-width: 992px) {
  .aboutdr-image-wrapper {
    min-height: 700px;
  }
}

@media (max-width: 991.98px) {
  .aboutdr-image-wrapper {
    min-height: 400px;
  }

  .aboutdr-content {
    padding: 3rem 1.5rem;
  }

  .aboutdr-title {
    font-size: 2rem;
  }

  .aboutdr-text {
    font-size: 1.25rem;
  }

  .aboutdr-cta {
    font-size: 1rem;
  }
  .aboutdr-image-wrapper-dt {
    position: unset;
    width: 100%;
    height: auto;
  }
}

@media (max-width: 575.98px) {
  .aboutdr-image-wrapper {
    min-height: 350px;
  }

  .aboutdr-content {
    padding: 2rem 1rem;
  }

  .aboutdr-title {
    font-size: 2rem;
  }

  .aboutdr-text {
    font-size: 1rem;
  }

  .aboutdr-cta {
    font-size: 1rem;
  }
}

/* Awards Section */
.awards-section {
  padding: clamp(3.5rem, 7vw, 6.5rem) 0;
  background: #fff;
}

.awards-title {
  color: var(--hero-text);
  font-size: 2.25rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 0;
}

.awards-splide {
  margin-top: 0;
}

.awards-splide .splide__list {
  display: flex;
  align-items: stretch;
}

.awards-splide .splide__slide {
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.award-card {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: #fff;
  transition: transform 0.3s ease;
}

.award-card:hover {
  transform: translateY(-5px);
}

.award-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  max-height: 200px;
}

.award-card a {
  display: block;
  width: 100%;
}

.award-card .sl_badge_150 {
  text-align: center;
  font-size: 0.875rem;
}

.award-card .sl_badge_150 .profile {
  margin-bottom: 0.5rem;
}

.award-card .sl_badge_150 .online {
  font-size: 0.75rem;
  margin-bottom: 0.25rem;
}

.award-card .sl_badge_150 img {
  max-height: 150px;
  margin: 0.5rem auto;
}

.award-card .sl_badge_150 .visit {
  margin-top: 0.5rem;
}

.award-card .sl_badge_150 a {
  color: var(--hero-primary);
  text-decoration: none;
}

.award-card .sl_badge_150 a:hover {
  text-decoration: underline;
}

.splide.awards-splide {
  display: flex;
  flex-direction: column;
}

.awards-splide .splide__arrows {
  order: 2;
}

.awards-splide .splide__track {
  order: 1;
}
.awards-splide .splide__arrows {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
}

.awards-splide .splide__arrow {
  width: 3rem;
  height: 3rem;
  background: #F6F6F6;
  border-radius: 0;
  position: static;
  transform: none;
  opacity: 1;
}

.awards-splide .splide__arrow svg {
  fill: var(--hero-primary);
}

.awards-splide .splide__arrow:hover {
  width: 3rem;
  height: 3rem;
  background: var(--hero-primary);
  border-radius: 0;
  position: static;
  transform: none;
  opacity: 1;
}

.awards-splide .splide__arrow:hover svg {
  fill: #fff;
}

.awards-splide .splide__arrow:disabled {
  opacity: 1;
}

/* Splide arrows customization - same as causes section */
@media (max-width: 1200px) {
  .awards-section {
    padding: 3rem 0;
  }

  .awards-splide .splide__pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    position: static;
  }

  .awards-splide .splide__pagination__page {
    background: rgba(42, 79, 116, 0.3);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    padding: 0;
    transition: background 0.3s ease;
  }

  .awards-splide .splide__pagination__page.is-active {
    background: var(--hero-text);
    transform: scale(1.2);
  }
}

@media (max-width: 991px) {
  .awards-splide .splide__arrows {
    margin-top: 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .awards-title {
    font-size: 2rem;
    margin-bottom: 0;
  }

  .award-card {
    padding: 0.5rem;
  }

  .award-card img {
    max-height: 180px;
  }
}

/* Process Section */
.process-section {
  padding: clamp(3.5rem, 7vw, 6.5rem) 0;
  background: #F8F9FA;
}

.process-title {
  color: var(--hero-text);
  font-size: 2.25rem;
  font-weight: 600;
  text-align: center;
}

.process-splide {
  margin-top: 0;
}

.process-splide .splide__list {
  display: flex;
  align-items: stretch;
}

.process-splide .splide__slide {
  height: auto;
}

.process-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: transparent;
  padding: 0;
}

.process-card-title-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.process-number {
  display: flex;
  width: 2.25rem;
  height: 2.25rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  border-radius: 1.25rem;
  color: var(--hero-text);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom:0rem;
}

.process-card-title {
  width: calc(100% - 3.5rem);
  padding-top: 0;
  font-size: 1.875rem;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  color: var(--hero-text);
  margin-bottom: 0;
  padding-bottom: 0;
}

.process-card-text {
  color: var(--what-text);
  font-size: 1.25rem;
  line-height: 1.6;
  margin: 0;
  padding-bottom: 1.5rem;
}
.process-card-text:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
}

.splide.process-splide {
  display: flex;
  flex-direction: column;
}

.process-splide .splide__arrows {
  order: 2;
}

.process-splide .splide__track {
  order: 1;
}

.page-content .bg-light{
  background: #fff !important;
}
@media (max-width: 1199px) {
  .process-section {
    padding: 3rem 0;
  }

  .process-splide .splide__arrows {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
  }

  .process-splide .splide__arrow {
    width: 3rem;
    height: 3rem;
    background: var(--hero-primary);
    border-radius: 0;
    position: static;
    transform: none;
    opacity: 1;
  }

  .process-splide .splide__arrow svg {
    fill: #fff;
  }

  .process-splide .splide__arrow:hover {
    width: 3rem;
    height: 3rem;
    background: #253957;
    border-radius: 0;
    position: static;
    transform: none;
    opacity: 1;
  }

  .process-splide .splide__arrow:hover svg {
    fill: #fff;
  }

  .process-splide .splide__arrow:disabled {
    opacity: 0.5;
  }

  .process-splide .splide__pagination {
    order: 3;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    position: static;
  }

  .process-splide .splide__pagination__page {
    background: #BDD2E5;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    padding: 0;
    transition: background 0.3s ease;
  }

  .process-splide .splide__pagination__page.is-active {
    background: var(--hero-text);
    transform: scale(1.2);
  }
}

@media (max-width: 991px) {
  .process-splide .splide__arrows {
    margin-top: 1.5rem;
  }
  
  .process-card {
    padding: 0 1rem;
  }
  .process-title{
    text-align: left;
  }
}

@media (max-width: 575.98px) {
  .process-title {
    font-size: 2rem;
  }

  .process-card {
    padding: 0;
  }

  .process-number {
    font-size: 1.25rem;
  }

  .process-card-title-wrapper{
    margin-bottom: 1rem;
  }

  .process-card-title {
    font-size: 1.25rem;
  }

  .process-card-title:first-of-type {
    padding-top: 0.25rem;
  }

  .process-card-text {
    font-size: 1rem;
  }
}

/* Further Reading Section */
.further-reading-section {
  padding: clamp(3.5rem, 7vw, 6.5rem) 0;
  background: #fff;
}

.further-reading-title {
  color: var(--hero-text);
  font-size: 2.25rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 0;
}

.further-reading-splide {
  margin-top: 0;
}

.further-reading-splide .splide__list {
  display: flex;
  align-items: stretch;
}

.further-reading-splide .splide__slide {
  height: auto;
  display: flex;
  justify-content: end;
}

.further-reading-card {
  height: 100%;
  width: calc(100% - 0.0625rem);
  display: flex;
  flex-direction: column;
  padding: 0 1.5rem;
  background: #fff;
  border-left: 0.0625rem solid #2A4F74;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.further-reading-badge {
  display: inline-block;
  background: rgba(172, 230, 252, 0.41);
  color: var(--hero-text);
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  padding: 0.5rem 1rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.further-reading-card-title {
  color: var(--hero-text);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0;
  padding-bottom: 1.25rem;
}

.further-reading-authors {
  color: var(--what-text);
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 0;
  flex-grow: 1;
  padding-bottom: 2rem;
}

.further-reading-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  margin-top: auto;
}

.further-reading-link:hover {
  text-decoration: none;
}

.further-reading-link-text {
  color: var(--hero-text);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
}

.further-reading-link svg {
  transition: transform 0.3s ease;
}

.further-reading-card:hover .further-reading-link svg {
  transform: translateX(5px);
}

.splide.further-reading-splide {
  display: flex;
  flex-direction: column;
}

.further-reading-splide .splide__arrows {
  order: 2;
}

.further-reading-splide .splide__track {
  order: 1;
}

@media (max-width: 1200px) {
  .further-reading-section {
    padding: 3rem 0;
  }

  .further-reading-splide .splide__arrows {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
  }

  .further-reading-splide .splide__arrow {
    width: 3rem;
    height: 3rem;
    background: #F6F6F6;
    border-radius: 0;
    position: static;
    transform: none;
    opacity: 1;
  }

  .further-reading-splide .splide__arrow svg {
    fill: var(--hero-primary);
  }

  .further-reading-splide .splide__arrow:hover {
    width: 3rem;
    height: 3rem;
    background: var(--hero-primary);
    border-radius: 0;
    position: static;
    transform: none;
    opacity: 1;
  }

  .further-reading-splide .splide__arrow:hover svg {
    fill: #fff;
  }

  .further-reading-splide .splide__arrow:disabled {
    opacity: 1;
  }

  .further-reading-splide .splide__pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    position: static;
  }

  .further-reading-splide .splide__pagination__page {
    background: rgba(42, 79, 116, 0.3);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    padding: 0;
    transition: background 0.3s ease;
  }

  .further-reading-splide .splide__pagination__page.is-active {
    background: var(--hero-text);
    transform: scale(1.2);
  }
}

@media (max-width: 991px) {
  .further-reading-splide .splide__arrows {
    margin-top: 1.5rem;
  }

  .further-reading-title {
    text-align: center;
  }
}

@media (max-width: 575.98px) {
  .further-reading-title {
    font-size: 2rem;
    margin-bottom: 0;
  }

  .further-reading-card {
    padding: 0 1.25rem;
  }

  .further-reading-badge {
    font-size: 0.75rem;
    padding: 0.4rem 0.875rem;
  }

  .further-reading-card-title {
    font-size: 1.25rem;
  }

  .further-reading-authors {
    font-size: 0.9375rem;
    margin-bottom: 0;
  }

  .further-reading-link-text {
    font-size: 1rem;
  }
}

/* Read More Tips Section */
.read-more-tips-section {
  background: #B0E0F5;
  padding: clamp(3.5rem, 7vw, 6.5rem) 0;
}

.read-more-tips-title {
  color: var(--hero-text);
  font-size: 2.25rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 0;
}

.tip-card {
  background: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tip-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.tip-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.tip-card-link:hover {
  text-decoration: none;
  color: inherit;
}

.tip-image-wrapper {
  width: 100%;
  padding-top: 1.5rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.tip-image {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

.tip-content {
  padding: 1.25rem 1.25rem 1.25rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.tip-title {
  color: var(--hero-text);
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0;
  min-height: 3.6rem;
  padding-bottom: 1.25rem;
}

.tip-meta {
  color: var(--what-text);
  font-size: 0.9375rem;
  line-height: 1.4;
  margin-bottom: 0;
  padding-bottom: 1.25rem;
}

.tip-excerpt {
  color: var(--what-text);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0;
  flex-grow: 1;
  padding-bottom: 1.25rem;
}

.tip-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
}

.tip-cta-text {
  color: var(--hero-text);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
}

.tip-cta svg {
  transition: transform 0.3s ease;
}

.tip-card:hover .tip-cta svg {
  transform: translateX(5px);
}

@media (max-width: 991.98px) {
  .read-more-tips-section {
    padding: 3rem 0;
  }

  .read-more-tips-title {
    text-align: center;
    margin-bottom: 0;
  }

  .tip-card {
    flex-direction: row;
  }

  .tip-card-link {
    flex-direction: row;
  }

  .tip-image-wrapper {
    flex-shrink: 0;
    width: 140px;
    padding: 20px;
  }

  .tip-image {
    width: 100px;
    height: 100px;
  }

  .tip-content {
    padding: 1.25rem 1.25rem 1.25rem 0;
    flex: 1;
  }

  .tip-title {
    font-size: 1.25rem;
    min-height: auto;
    margin-bottom: 0;
  }

  .tip-meta {
    font-size: 0.875rem;
    margin-bottom: 0;
  }
}

@media (max-width: 767.98px) {
  .read-more-tips-title {
    font-size: 2rem;
    margin-bottom: 0;
  }

  .tip-title {
    font-size: 1.125rem;
  }

  .tip-meta {
    font-size: 0.8125rem;
  }

  .tip-cta-text {
    font-size: 1rem;
  }
}

@media (max-width: 575.98px) {
  .tip-image-wrapper {
    width: 120px;
    padding: 15px;
  }

  .tip-image {
    width: 90px;
    height: 90px;
  }

  .tip-content {
    padding: 1rem 1rem 1rem 0;
  }

  .tip-title {
    font-size: 1rem;
    margin-bottom: 0;
  }

  .tip-meta {
    margin-bottom: 0;
  }
}

/* Book a Consultation Section */
.book-consultation-section {
  background: var(--hero-primary);
  color: #fff;
  padding: clamp(3.5rem, 7vw, 6.5rem) 0;
}

.book-consultation-content {
  max-width: 100%;
}

.book-consultation-title {
  color: #fff;
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0;
  padding-bottom: 2.81rem;
}

.book-consultation-text {
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 2.81rem;
}

.btn.book-consultation-btn {
  background-color: #fff;
  color: #334E71;
  border-color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.95rem 1.9rem;
  border-radius: 0;
  transition: all 0.3s ease;
  margin: 0;
  display: inline-block;
  width: 100%;
  max-width: 21.6875rem;
  box-sizing: border-box;
}

.btn.book-consultation-btn:hover,
.btn.book-consultation-btn:focus {
  background-color: #f0f0f0;
  border-color: #f0f0f0;
  color: #334E71;
}

@media (max-width: 991.98px) {
  .book-consultation-section {
    padding: 3rem 0;
  }

  .book-consultation-title {
    font-size: 2rem;
    padding-bottom: 1.75rem;
  }

  .book-consultation-text {
    font-size: 1.25rem;
    margin-bottom: 0;
    padding-bottom: 1.75rem;
  }
}

@media (max-width: 575.98px) {
  .book-consultation-section {
    padding: 2.5rem 0;
  }

  .book-consultation-title {
    font-size: 2rem;
    margin-bottom: 0;
    padding-bottom: 1.25rem;
  }

  .book-consultation-text {
    font-size: 1rem;
    margin-bottom: 0;
    padding-bottom: 1.25rem;
  }

  .btn.book-consultation-btn {
    width: 100%;
    padding: 0.875rem 1.75rem;
  }
}

/* Related Procedure Section */
.related-procedure-section {
  padding: clamp(2.25rem, 7vw, 3.5rem) 0;
  background: #fff;
}

.related-procedure-title {
  color: var(--hero-text);
  font-size: 2.25rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 0;
}

.related-procedure-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s ease;
  position: relative;
}

.related-procedure-card:hover {
  transform: translateY(-5px);
}

.related-procedure-image-wrapper {
  width: 100%;
  aspect-ratio: 1;
  background: #BDD2E5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 1.25rem;
}

.related-procedure-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-procedure-card-title {
  color: var(--hero-text);
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  margin: 0;
  line-height: 1.3;
}

@media (max-width: 991.98px) {
  .related-procedure-section {
    padding: 1.25rem 0;
  }

  .related-procedure-title {
    margin-bottom: 0;
  }

  .related-procedure-card-title {
    font-size: 1.25rem;
  }
}

@media (max-width: 767.98px) {
  .related-procedure-title {
    font-size: 2rem;
    margin-bottom: 0;
  }

  .related-procedure-image-wrapper {
    margin-bottom: 0;
  }

  .related-procedure-card-title {
    font-size: 1.125rem;
    padding-bottom: 1rem;
    margin-bottom: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
  }
}

/* Written By Dr. Sam Rizk Section */
.written-by-dr-section {
  background: #fff;
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.written-by-dr-image-wrapper {
  width: 100%;
  max-width: 200px;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
}

.written-by-dr-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.written-by-dr-content {
  text-align: left;
}

.written-by-dr-title {
  color: var(--hero-primary);
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0;
  padding-bottom: 1.25rem;
  text-align: left;
}

.written-by-dr-text {
  color: var(--what-text);
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 0;
  padding-bottom: 1.25rem;
}

.written-by-dr-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn.written-by-dr-btn {
  background-color: #F5F5F5;
  color: #334E71;
  border: none;
  padding: 0.875rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  white-space: normal;
  text-align: center;
}

.btn.written-by-dr-btn:hover,
.btn.written-by-dr-btn:focus {
  background-color: #F5F5F5;
  color: #334E71;
}

@media (min-width: 768px) {
  .written-by-dr-content {
    padding-left: 0;
  }

  .written-by-dr-image-wrapper {
    margin: 0;
  }
}

@media (max-width: 767.98px) {
  .written-by-dr-section {
    padding: 2.5rem 0;
  }

  .written-by-dr-content {
    text-align: left;
  }

  .written-by-dr-image-wrapper {
    max-width: 150px;
  }

  .written-by-dr-title {
    font-size: 2rem;
    margin-bottom: 0;
    padding-bottom: 1.25rem;
  }

  .written-by-dr-text {
    font-size: 1rem;
    margin-bottom: 0;
    padding-bottom: 1.25rem;
  }

  .written-by-dr-cta-group {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .written-by-dr-btn {
    width: 100%;
    max-width: 100%;
    padding: 0.75rem 1.25rem;
    font-size: 1rem;
  }
}

/* Warning Section */
.warning-section {
  padding: 3.5rem 0;
  background-color: #ffffff;
}

.warning-icon {
  width: 185px;
  height: 185px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.warning-icon svg {
  width: 100%;
  height: 100%;
}

.warning-content {
  max-width: 100%;
}

.warning-title {
  color: #FF1100;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0;
  padding-bottom: 1rem;
  text-align: left;
}

.warning-text {
  color: #000000;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.6;
  padding-bottom: 0;
  text-align: left;
}

.warning-text a {
  color: #334E71;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.warning-text a:hover {
  color: #253957;
}

@media (min-width: 992px) {
  .warning-section {
    padding: 4rem 0;
  }

  .warning-content {
    padding-left: 0;
  }
}

@media (max-width: 991.98px) {
  .warning-section {
    padding: 3rem 0;
  }

  .warning-icon {
    width: 150px;
    height: 150px;
  }

  .warning-title {
    font-size: 1.75rem;
  }

  .warning-text {
    font-size: 1.25rem;
  }
}

@media (max-width: 575.98px) {
  .warning-section {
    padding: 2.5rem 0;
  }

  .warning-icon {
    width: 120px;
    height: 120px;
  }

  .warning-title {
    font-size: 1.5rem;
    text-align: center;
  }

  .warning-text {
    font-size: 1rem;
    text-align: center;
  }
}

section.quicklinks.page-newdesign p {
  color: #fff;
}

footer .getconnected {
  color: #0A4976;
}

.anchors.page-newdesign {
  background: #334E71;
}
.anchors.page-newdesign #toc-list {
  grid-template-columns: repeat(4, 1fr);
  gap: 0 10px;
}

.anchors.page-newdesign #toc-list li{
  padding-bottom: 0;
  border-bottom: none;
}
.anchors.page-newdesign #toc-list li a {
  padding: 0;
}

.anchors.page-newdesign #toc-list li::before{
  top: 0.30rem;
  transform: unset;
}

@media screen and (max-width: 991px) {
  .anchors.page-newdesign #toc-list {
    grid-template-columns: repeat(1, 1fr);
    gap: 0 5px;
  }
}

/* About Procedure Section */
.about-proc-section {
  padding: clamp(3.5rem, 7vw, 6.5rem) 0;
  background: #fff;
}

.about-proc-title {
  color: var(--hero-text);
  font-size: 2.25rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0;
  padding-bottom: 2rem;
  line-height: 1.3;
}

.about-proc-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  padding-bottom: 2rem;
}

.about-proc-btn {
  display: inline-block;
  padding: 0.625rem 1.5rem;
  border: 0;
  border-radius: 0.625rem;
  color: #2A4F74;
  font-size: 0.9375rem;
  font-weight: 400;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  background: #F4F4F4;
  white-space: nowrap;
}

.about-proc-btn:hover,
.about-proc-btn:focus {
  background: #e8e8e8;
  color: #2A4F74;
  text-decoration: none;
}

.about-proc-description {
  text-align: center;
  color: var(--what-text);
  font-size: 1.125rem;
  line-height: 1.7;
}

.about-proc-description p {
  margin-bottom: 0;
  color: var(--what-text);
  font-size: 1.125rem;
  line-height: 1.7;
}

@media (max-width: 991.98px) {
  .about-proc-section {
    padding: 3rem 0;
  }

  .about-proc-title {
    font-size: 2rem;
    padding-bottom: 1.5rem;
  }

  .about-proc-buttons {
    gap: 0.75rem;
    padding-bottom: 1.5rem;
  }

  .about-proc-btn {
    font-size: 0.875rem;
    padding: 0.5rem 1.25rem;
  }

  .about-proc-description,
  .about-proc-description p {
    font-size: 1rem;
    line-height: 1.6;
  }
}

@media (max-width: 575.98px) {
  .about-proc-section {
    padding: 2.5rem 0;
  }

  .about-proc-section .col-12 {
    display: flex;
    flex-direction: column;
  }

  .about-proc-title {
    font-size: 1.75rem;
    padding-bottom: 1.25rem;
    order: 1;
  }

  .about-proc-description {
    order: 2;
    padding-bottom: 1.25rem;
  }

  .about-proc-buttons {
    order: 3;
    flex-direction: column;
    gap: 0.5rem;
    padding-bottom: 0;
  }

  .about-proc-btn {
    width: 100%;
    font-size: 0.875rem;
    padding: 0.75rem 1rem;
  }

  .about-proc-description,
  .about-proc-description p {
    font-size: 0.9375rem;
    text-align: left;
  }
}

/* ─── Meet Nose Job Expert Section ─── */
.meet-expert-section {
  padding: 5rem 0;
  background-color: #ECECEC;
}

.meet-expert-img {
  width: 100%;
  height: auto;
  display: block;
}

.meet-expert-content {
  padding-left: 2rem;
}

.meet-expert-heading {
  font-size: 2.25rem;
  font-weight: 700;
  color: #2A4F74;
  margin-bottom: 1.25rem;
  text-align: left;
  padding-bottom: 0;
}

.meet-expert-desc {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 1.5rem;
  padding-bottom: 0;
}

.meet-expert-list {
  list-style: disc;
  padding-left: 2.25rem;
  margin-bottom: 2rem;
}

.meet-expert-list li {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 0.625rem;
}

.meet-expert-list li:last-child {
  margin-bottom: 0;
}

.meet-expert-cta {
  text-align: left;
}

.meet-expert-btn {
  display: inline-block;
  padding: 0.875rem 2.5rem;
  background-color: #2A4F74;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0.375rem;
  transition: background-color 0.3s ease;
}

.meet-expert-btn:hover,
.meet-expert-btn:focus {
  background-color: #1d3a57;
  color: #fff;
  text-decoration: none;
}

@media (max-width: 991.98px) {
  .meet-expert-section {
    padding: 3rem 0;
  }

  .meet-expert-content {
    padding-left: 0;
    padding-top: 2rem;
  }

  .meet-expert-heading {
    font-size: 1.75rem;
  }
}

@media (max-width: 575.98px) {
  .meet-expert-section {
    padding: 2.5rem 0;
  }

  .meet-expert-heading {
    font-size: 1.5rem;
    text-align: center;
  }
  .meet-expert-cta {
    text-align: left;
  }
}

/* Your Guide Section */
.yourguide-section {
  padding: clamp(3.5rem, 7vw, 6.5rem) 0;
  background: #F5F6F8;
}

.yourguide-title {
  color: var(--hero-text);
  font-size: 2.25rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0;
  padding-bottom: 1.5rem;
}

.yourguide-intro {
  color: var(--what-text);
  font-size: 1rem;
  line-height: 1.6;
  text-align: center;
  margin: 0 auto;
  padding-bottom: 2.5rem;
}

.yourguide-grid {
  justify-content: center;
}

.yourguide-card {
  background: #fff;
  border: 1px solid #2A4F74;
  padding: 1.75rem 1.5rem;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.yourguide-card-title {
  color: var(--hero-text);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0;
  padding-bottom: 0.75rem;
}

.yourguide-card-text {
  color: #5A6A7A;
  font-size: 0.9375rem;
  line-height: 1.5;
  margin: 0;
  padding-bottom: 0;
}

@media (max-width: 991.98px) {
  .yourguide-section {
    padding: 3rem 0;
  }

  .yourguide-title {
    font-size: 2rem;
  }

  .yourguide-intro {
    font-size: 0.9375rem;
    padding-bottom: 2rem;
  }
}

@media (max-width: 767.98px) {
  .yourguide-card {
    padding: 1rem 1.25rem;
    text-align: center;
    cursor: pointer;
  }

  .yourguide-card-title {
    padding-bottom: 0;
  }

  .yourguide-card-text {
    display: none;
    padding-top: 0.75rem;
  }

  .yourguide-card.yourguide-active .yourguide-card-text {
    display: block;
  }
}

/* Intro Text Section */
.rhino-intro-text-section {
  background-color: #f2f2f2;
  padding: 4rem 0;
}

.rhino-intro-text-title {
  color: #2c4964;
  font-size: 2.25rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.25rem;
  padding-bottom: 0;
}

.rhino-intro-text-desc {
  color: #333;
  font-size: 0.9375rem;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 1.5rem;
}

.rhino-intro-text-btn-wrap {
  text-align: center;
}

.rhino-intro-text-btn {
  background-color: #2c4964;
  color: #fff;
  border: 2px solid #2c4964;
  padding: 0.75rem 2rem;
  border-radius: 30px;
  font-size: 0.9375rem;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.rhino-intro-text-btn:hover {
  background-color: transparent;
  color: #2c4964 !important;
}

@media (max-width: 991.98px) {
  .rhino-intro-text-section {
    padding: 3rem 0;
  }

  .rhino-intro-text-title {
    font-size: 1.75rem;
  }
}

@media (max-width: 575.98px) {
  .rhino-intro-text-title {
    font-size: 1.5rem;
  }

  .rhino-intro-text-desc {
    font-size: 0.875rem;
  }
}

/* What Can Be Treated Section */
.rhino-treated-section {
  padding: 4rem 0 0;
}

.rhino-treated-img {
  width: 100%;
  height: auto;
  display: block;
}

.rhino-treated-title {
  color: #2c4964;
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  text-align: left;
  padding-bottom: 0;
}

.rhino-treated-text {
  color: #333;
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  text-align: left;
  padding-bottom: 0;
}

.rhino-treated-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding-bottom: 1.5rem;
}

.rhino-treated-tag {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  border: 1px solid #2c4964;
  color: #2c4964;
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.rhino-treated-tag:hover {
  background-color: #2c4964;
  color: #fff;
  text-decoration: none;
}

.rhino-treated-btn-wrap {
  padding-top: 0.5rem;
}

.rhino-treated-btn {
  background-color: #2c4964;
  color: #fff;
  border: 2px solid #2c4964;
  border-radius: 25px;
  padding: 0.625rem 2rem;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.rhino-treated-btn:hover {
  background-color: transparent;
  color: #2c4964 !important;
}

@media (max-width: 991.98px) {
  .rhino-treated-section {
    padding: 3rem 0;
  }

  .rhino-treated-title {
    font-size: 1.75rem;
  }

  .rhino-treated-img {
    margin-bottom: 2rem;
  }
}

@media (max-width: 767.98px) {
  .rhino-treated-title {
    font-size: 1.5rem;
  }

  .rhino-treated-text {
    font-size: 0.875rem;
  }
}

/* Rhinoplasty Surgery Timeline Section */
.rhino-tl-section {
  padding: 2.25rem 0 0;
  background: #fff;
}

.rhino-tl-heading {
  color: #2A4F74;
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 0;
  padding-bottom: 0.5rem;
  text-align: left;
}

.rhino-tl-subtext {
  color: #333;
  font-size: 1rem;
  margin-bottom: 0;
  padding-bottom: 2rem;
}

.rhino-tl-card {
  padding: 2rem 2rem 2.5rem;
  height: 100%;
}

.rhino-tl-card--checklist {
  background: #E6F5FC;
}

.rhino-tl-card--surgery {
  background: #EDEDED;
}

.rhino-tl-card-heading {
  color: #2A4F74;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0;
  padding-bottom: 1.25rem;
  text-align: left;
}

.rhino-tl-list {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0;
}

.rhino-tl-list li {
  color: #333;
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.rhino-tl-list li:last-child {
  margin-bottom: 0;
}

.rhino-tl-card-text {
  color: #333;
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 0;
  padding-bottom: 1rem;
}

.rhino-tl-card-text:last-child {
  padding-bottom: 0;
}

@media (max-width: 991.98px) {
  .rhino-tl-section {
    padding: 3rem 0;
  }

  .rhino-tl-heading {
    font-size: 1.75rem;
  }

  .rhino-tl-card {
    padding: 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .rhino-tl-heading {
    font-size: 1.5rem;
  }

  .rhino-tl-card {
    padding: 1.25rem;
  }

  .rhino-tl-card-heading {
    font-size: 1.125rem;
  }
}

/* Healing After Rhinoplasty Section */
.rhino-heal-section {
  padding: 2.75rem 0;
  background: #fff;
}

.rhino-heal-heading {
  color: #2A4F74;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0;
  padding-bottom: 2rem;
  text-align: left;
}

.rhino-heal-grid {
  --bs-gutter-x: 0;
}

.rhino-heal-card {
  /*padding: 1rem 1.25rem;*/
  height: 100%;
}

.rhino-heal-grid > div:first-child .rhino-heal-card {
  padding-left: 0;
}

.rhino-heal-time {
  color: #2A4F74;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0;
  line-height: 1.2;
  padding-bottom: 0.75rem;
}

.rhino-heal-time span {
  display: block;
  font-weight: 600;
  font-size: 1rem;
  padding-top: 0.15rem;
}

.rhino-heal-desc {
  color: #333;
  font-size: 0.8125rem;
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 1199.98px) {
  .rhino-heal-grid {
    --bs-gutter-x: 1.5rem;
    row-gap: 1.5rem;
  }

  .rhino-heal-card {
    border-left: none;
    padding-left: 0;
    border-top: 1px solid #D0D0D0;
    padding-top: 1rem;
  }

  .rhino-heal-grid > div:first-child .rhino-heal-card,
  .rhino-heal-grid > div:nth-child(2) .rhino-heal-card,
  .rhino-heal-grid > div:nth-child(3) .rhino-heal-card {
    border-top: none;
    padding-top: 0;
  }
}

@media (max-width: 991.98px) {
  .rhino-heal-section {
    padding: 3rem 0;
  }

  .rhino-heal-heading {
    font-size: 1.75rem;
  }
}

@media (max-width: 767.98px) {
  .rhino-heal-grid > div:nth-child(3) .rhino-heal-card {
    border-top: 1px solid #D0D0D0;
    padding-top: 1rem;
  }

  .rhino-heal-heading {
    font-size: 1.5rem;
  }

  .rhino-heal-time span {
    display: inline;
    font-size: inherit;
    font-weight: inherit;
    padding-top: 0;
  }
}

/* 1 Year & Beyond Surgery Section */
.rhino-beyond-section {
  padding: 0 0 clamp(3rem, 6vw, 5rem);
  background: #fff;
}

.rhino-beyond-section > .container {
  border-top: 2px solid #2A4F74;
  padding-top: clamp(3rem, 6vw, 5rem);
}

.rhino-beyond-heading {
  color: #2A4F74;
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 0;
  padding-bottom: 1.25rem;
  text-align: left;
}

.rhino-beyond-text {
  color: #333;
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 0;
  padding-bottom: 1.5rem;
}

.rhino-beyond-congrats {
  color: #2A4F74;
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
}

.rhino-beyond-img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 991.98px) {
  .rhino-beyond-section {
    padding: 0 0 3rem;
  }

  .rhino-beyond-section > .container {
    padding-top: 3rem;
  }

  .rhino-beyond-heading {
    font-size: 1.75rem;
  }

  .rhino-beyond-img {
    margin-top: 2rem;
  }
}

@media (max-width: 575.98px) {
  .rhino-beyond-heading {
    font-size: 1.5rem;
  }

  .rhino-beyond-text {
    font-size: 0.875rem;
  }
}

/* Why Choose Dr. Rizk Section */
.why-choose-section {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: #f4f6f5;
}

.why-choose-img-wrapper {
  overflow: hidden;
}

.why-choose-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.why-choose-content {
  padding-left: 2rem;
}

.why-choose-heading {
  color: #2A4F74;
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
  padding-bottom: 0;
  text-align: left;
}

.why-choose-intro {
  color: #333;
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  padding-bottom: 0;
}

.why-choose-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.why-choose-list li {
  position: relative;
  padding-left: 1.25rem;
  color: #333;
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.why-choose-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  background: #B0E0F5;
}

@media (max-width: 991.98px) {
  .why-choose-content {
    padding-left: 0;
    padding-top: 2rem;
  }

  .why-choose-heading {
    font-size: 1.75rem;
  }
}

@media (max-width: 575.98px) {
  .why-choose-heading {
    font-size: 1.5rem;
  }

  .why-choose-list li {
    font-size: 0.875rem;
  }

  .why-choose-intro {
    font-size: 0.875rem;
  }
}

/* Video Testimonials Section */
.video-testimonials-section {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: #dce8f0;
}

.vt-left-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.video-testimonials-heading {
  color: var(--hero-text);
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
  padding-bottom: 0;
  text-align: left;
}

.video-testimonials-btn {
  display: inline-block;
  align-self: flex-start;
  margin-top: auto;
  padding: 0.75rem 1.5rem;
  background-color: var(--hero-primary);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.video-testimonials-btn:hover,
.video-testimonials-btn:focus {
  background-color: #253957;
  color: #fff;
  text-decoration: none;
}

.splide.video-testimonials-splide {
  display: flex;
  flex-direction: column;
}

.video-testimonials-splide .splide__arrows {
  order: 2;
}

.video-testimonials-splide .splide__track {
  order: 1;
}

.vt-results-note {
  text-align: center;
  font-size: 0.85rem;
  color: #555;
  margin-top: 1rem;
  margin-bottom: 0;
  display: none;
}

.video-testimonials-splide .splide__arrows {
  display: flex;
  justify-content: flex-start;
  gap: 1rem;
  margin-top: 1.25rem;
}

.video-testimonials-splide .splide__arrow {
  width: 2.75rem;
  height: 2.75rem;
  background: #b7cfe0;
  border-radius: 0;
  position: static;
  transform: none;
  opacity: 1;
}

.video-testimonials-splide .splide__arrow svg {
  fill: #fff;
  width: 1rem;
  height: 1rem;
}

.video-testimonials-splide .splide__arrow:hover {
  background: var(--hero-primary);
}

.video-testimonials-splide .splide__arrow:disabled {
  opacity: 0.5;
}

.video-testimonials-btn-mobile {
  display: none;
}

.vt-video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #000;
  cursor: pointer;
  overflow: hidden;
}

.vt-video-wrapper img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
}

.vt-video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.vt-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 2;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.vt-play-btn:hover {
  opacity: 1;
}

@media (max-width: 991.98px) {
  .video-testimonials-heading {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    text-align: center;
  }

  .vt-left-col .video-testimonials-btn {
    display: none;
  }

  .video-testimonials-btn-mobile {
    display: block;
    text-align: center;
    width: 100%;
    margin-top: 0.5rem;
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }

  .vt-results-note {
    display: block;
  }

  .video-testimonials-splide .splide__arrows {
    justify-content: space-between;
  }

  .video-testimonials-splide .splide__arrow {
    width: 2.5rem;
    height: 2.5rem;
    background: #b7cfe0;
  }

  .video-testimonials-splide .splide__arrow svg {
    fill: #fff;
  }
}

@media (max-width: 575.98px) {
  .video-testimonials-heading {
    font-size: 1.5rem;
  }
  .video-testimonials-heading br{
    display: none;
  }
}

/* ── Rhinoplasty Process Explained Section ── */
.rhino-process-section {
  background: #e8e8e8;
  padding: 4rem 0 4.5rem;
}

.rhino-process-title {
  color: #334E71;
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  padding-bottom: 0;
  text-align: left;
}

.rhino-process-subtitle {
  color: #444;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 55%;
}

/* Unified step layout */
.rhino-process-steps {
  position: relative;
}

.rhino-step-header {
  display: flex;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  margin-bottom: 0;
  border-radius: 0;
}

.rhino-step-dot {
  border-radius: 50%;
  background: #334E71;
  flex-shrink: 0;
  z-index: 1;
}

.rhino-step-label {
  color: #334E71;
  font-weight: 600;
}

.rhino-step-text h3 {
  color: #334E71;
  font-weight: 700;
  margin-bottom: 0.75rem;
  padding-bottom: 0;
}

.rhino-step-text p {
  color: #444;
  font-size: 0.9rem;
}

.rhino-step-text ul,
.rhino-step-text ol {
  margin: 0 0 1rem;
  padding-left: 1.35rem;
}

.rhino-step-text ul {
  list-style: disc;
}

.rhino-step-text ol {
  list-style: decimal;
}

.rhino-step-text li {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.rhino-step-text li:last-child {
  margin-bottom: 0;
}

.rhino-step-text li::marker {
  color: #2A4F74;
}

.rhino-step-text li p {
  margin-bottom: 0;
  padding-bottom: 0;
}

.rhino-step-text a {
  color: #334E71;
  text-decoration: underline;
}

.rhino-mobile-cta {
  margin-top: 1.5rem;
}

.rhino-mobile-cta-btn {
  display: block;
  text-align: center;
  background: #334E71;
  color: #fff;
  padding: 16px 24px;
  border-radius: 6px;
  font-size: 1.05rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.25s;
}

.rhino-mobile-cta-btn:hover {
  background: #263b56;
  color: #fff;
  text-decoration: none;
}

/* ── Desktop (>=992px): 3-column tabbed layout ── */
@media (min-width: 992px) {
  .rhino-process-steps {
    display: grid;
    grid-template-columns: minmax(280px, 34%) minmax(0, 1fr) minmax(0, 1fr);
    grid-template-rows: repeat(5, auto);
    gap: 0 2rem;
  }
  .rhino-process-steps::before {
    display: none;
  }
  .rhino-step {
    display: contents;
  }
  .rhino-step-header {
    grid-column: 1;
    gap: 14px;
    padding: 14px 28px 14px 16px;
    border-right: 2px solid #334E71;
    align-items: flex-start;
    position: relative;
    transition: border-color 0.25s;
  }
  .rhino-step.active .rhino-step-header {
    background: #fff;
  }
  .rhino-step-dot {
    position: absolute;
    right: -7px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
  }
  .rhino-step-label {
    display: block;
    max-width: 100%;
    font-size: 1.25rem;
    line-height: 1.35;
    white-space: normal;
    overflow-wrap: anywhere;
  }
  .rhino-step-content {
    display: contents;
  }
  .rhino-step-image {
    grid-column: 2;
    grid-row: 1 / -1;
    display: none;
    align-self: start;
  }
  .rhino-step.active .rhino-step-image {
    display: block;
  }
  .rhino-step-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
    max-height: 360px;
  }
  .rhino-step-text {
    grid-column: 3;
    grid-row: 1 / -1;
    display: none;
    align-self: start;
  }
  .rhino-step.active .rhino-step-text {
    display: block;
  }
  .rhino-step-text h3 {
    font-size: 1.5rem;
  }
  .rhino-step-text p {
    line-height: 1.75;
  }
}

@media (max-width: 1199.98px) and (min-width: 992px) {
  .rhino-process-steps {
    grid-template-columns: minmax(240px, 36%) minmax(0, 1fr) minmax(0, 1fr);
    gap: 0 1.5rem;
  }
  .rhino-step-label {
    font-size: 1rem;
  }
}

/* ── Mobile (<992px): accordion layout ── */
@media (max-width: 991.98px) {
  .rhino-process-section {
    padding: 3rem 0 2.5rem;
  }
  .rhino-process-title {
    font-size: 1.75rem;
  }
  .rhino-process-subtitle {
    font-size: 0.9rem;
    padding-bottom: 0;
    margin-bottom: 0;
    max-width: 100%;
  }
  .rhino-process-steps {
    padding-left: 18px;
    margin-top: 1.5rem;
  }
  .rhino-process-steps::before {
    content: "";
    position: absolute;
    left: 7px;
    top: 12px;
    bottom: 12px;
    width: 2px;
    background: #334E71;
  }
  .rhino-step {
    position: relative;
    margin-bottom: 0;
    padding: 0 10px;
  }
  .rhino-step.active {
    background: #fff;
  }
  .rhino-step-header {
    gap: 12px;
    padding: 14px 0;
    width: 100%;
  }
  .rhino-step-dot {
    position: absolute;
    left: -19px;
    top: 18px;
    width: 14px;
    height: 14px;
    border: 2px solid #e8e8e8;
    box-sizing: content-box;
  }
  .rhino-step-label {
    font-size: 1.15rem;
  }
  .rhino-step-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }
  .rhino-step.active .rhino-step-content {
    max-height: 2000px;
  }
  .rhino-step-image img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    margin-bottom: 1rem;
  }
  .rhino-step-text p {
    line-height: 1.7;
    padding-bottom: 0.5rem;
  }
}

@media (max-width: 575.98px) {
  .rhino-process-section {
    padding: 2.5rem 0 2rem;
  }
  .rhino-process-title {
    font-size: 1.5rem;
  }
}

/* Dr. Rizk In The Media Section */
.rhino-media-section {
  background: #393939;
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.rhino-media-title {
  text-align: center;
  color: #fff;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 600;
  margin-bottom: 1.75rem;
}

.rhino-media-tabs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.rhino-media-tab {
  background: var(--hero-primary, #334E71);
  border: none;
  color: #fff;
  padding: 0.6rem 2.25rem;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.rhino-media-tab:hover {
  background: #253957;
}

.rhino-media-tab.active {
  background: var(--hero-primary, #334E71);
}

.rhino-media-panel {
  display: none;
}

.rhino-media-panel.active {
  display: block;
}

/* Fallback before Splide mounts */
.rhino-publications-splide:not(.is-initialized) .splide__list,
.rhino-videos-splide:not(.is-initialized) .splide__list {
  display: flex;
  overflow: hidden;
}

.rhino-publications-splide:not(.is-initialized) .splide__slide {
  flex: 0 0 25%;
  max-width: 25%;
  padding: 0 0.75rem;
  box-sizing: border-box;
}

.rhino-videos-splide:not(.is-initialized) .splide__slide {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 0 0.75rem;
  box-sizing: border-box;
}

/* Publications cards */
.rhino-pub-card {
  text-align: center;
}

.rhino-pub-card a {
  display: block;
}

.rhino-pub-card .rhino-pub-img-wrap {
  height: 280px;
  overflow: hidden;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rhino-pub-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 6px;
  transition: opacity 0.3s;
  display: block;
}

.rhino-pub-card a:hover img {
  opacity: 0.85;
}

.rhino-pub-card p {
  color: #ccc;
  font-size: 0.875rem;
  line-height: 1.5;
  margin-top: 0.75rem;
}

/* Videos cards */
.rhino-video-card {
  border-radius: 6px;
  overflow: hidden;
}

.rhino-video-card .lazyyoutube {
  position: relative;
  height: 0;
  overflow: hidden;
  cursor: pointer;
  background: #000;
}

.rhino-video-card .lazyyoutube img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  transition: opacity 0.3s;
}

.rhino-video-card .lazyyoutube:hover img {
  opacity: 0.8;
}

.rhino-video-card .lazyyoutube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.rhino-video-card .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 68px;
  height: 48px;
  background: rgba(255,0,0,0.85);
  border-radius: 12px;
  z-index: 2;
  pointer-events: none;
}

.rhino-video-card .play-button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent #fff;
}

/* CTA button */
.rhino-media-cta {
  margin-top: 2.5rem;
  padding-bottom: 1rem;
}

.rhino-media-btn {
  display: inline-block;
  background: var(--hero-primary, #334E71);
  color: #fff;
  padding: 0.65rem 2rem;
  border-radius: 4px;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.3s;
}

.rhino-media-btn:hover {
  background: #253957;
  color: #fff;
  text-decoration: none;
}

/* Splide layout for media section - no arrows */
.rhino-publications-splide .splide__arrows,
.rhino-videos-splide .splide__arrows {
  display: none !important;
}

.rhino-publications-splide .splide__list,
.rhino-videos-splide .splide__list {
  align-items: flex-start;
}

.rhino-publications-splide .splide__slide,
.rhino-videos-splide .splide__slide {
  height: auto;
}

@media (max-width: 575.98px) {
  .rhino-media-tab {
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* Types of Rhinoplasty Section */
.types-rhino-section {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  background: linear-gradient(180deg, #eef3f8 0%, #f5f8fb 100%);
}

.types-rhino-image-wrapper {
  overflow: hidden;
  border-radius: 6px;
}

.types-rhino-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.types-rhino-title {
  color: var(--hero-text);
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  line-height: 1.25;
  padding-bottom: 0;
  text-align: left;
}

.types-rhino-intro {
  color: var(--what-text);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  padding-bottom: 0;
}

.types-rhino-card {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  padding: 1.5rem;
  height: 100%;
}

.types-rhino-card-title {
  color: var(--hero-text);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  padding-bottom: 0;
}

.types-rhino-card-text {
  color: var(--what-text);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 0;
  padding-bottom: 0;
}

.types-rhino-bottom-text {
  color: var(--what-text);
  font-size: 1rem;
  line-height: 1.75;
  margin: 2.5rem auto 0 0;
  padding-bottom: 0;
}

@media (max-width: 991.98px) {
  .types-rhino-section {
    padding: 3rem 0;
  }

  .types-rhino-title {
    font-size: 2rem;
    margin-top: 1.5rem;
  }

  .types-rhino-image-wrapper {
    max-width: 420px;
    margin-inline: auto;
  }
}

@media (max-width: 767.98px) {
  .types-rhino-card {
    margin-bottom: 1rem;
  }
}

@media (max-width: 575.98px) {
  .types-rhino-title {
    font-size: 1.625rem;
  }

  .types-rhino-intro {
    font-size: 0.9375rem;
  }

  .types-rhino-bottom-text {
    font-size: 0.9375rem;
    text-align: left;
  }
}

/* Versus Section */
.versus-section {
  position: relative;
  overflow: hidden;
}

.versus-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  z-index: 0;
  display: block;
}

.versus-inner {
  position: relative;
  z-index: 1;
}

.versus-card {
  background: #fff;
  padding: 2.5rem 2.25rem;
  background: #EFFAFF;
}

.versus-card-title {
  color: var(--hero-text, #2A4F74);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 3rem;
  line-height: 1.25;
  padding-bottom: 0;
  text-align: left;
}

.versus-card-text {
  color: var(--what-text, #000);
  font-size: 0.875rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
  padding-bottom: 0;
}

.versus-card-text:last-child {
  margin-bottom: 0;
}

.versus-risks {
  padding: 2.5rem ;
  position: relative;
}
.versus-risks::before {
  content: "";
  position: absolute;
  top: 0;
  left: -500%;
  width: 100000%;
  height: 110%;
  background: #fff;
  z-index: -1;
}

.versus-risks-title {
  color: var(--hero-text, #2A4F74);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2.5rem;
  line-height: 1.25;
  padding-bottom: 0;
  text-align: left;
}

.versus-risks-text {
  color: var(--what-text, #000);
  font-size: 0.875rem;
  line-height: 1.8;
  margin-bottom: 0;
  padding-bottom: 0;
}

@media (min-width: 992px) {
  .versus-section {
    padding: 6.83rem 0 0;
    margin-bottom: 2.5rem;
  }

  .versus-section .row {
    align-items: end;
  }

}

@media (max-width: 991.98px) {
  .versus-section {
    padding: 0;
  }

  .versus-section .versus-bg {
    height: auto;
    position: relative;
    inset: auto;
    aspect-ratio: 3 / 4;
    max-height: 520px;
  }

  .versus-inner {
    margin-top: -12rem;
  }

  .versus-card {
    padding: 1.75rem 1.25rem;
    margin: 0 0.5rem;
  }

  .versus-card-title {
    font-size: 1.75rem;
  }

  .versus-risks {
    background: #fff;
    padding: 2rem 1.25rem;
    margin-top: 0;
  }

  .versus-risks-title {
    font-size: 1.75rem;
    text-align: center;
  }
}

@media (max-width: 575.98px) {
  .versus-inner {
    margin-top: -70%;
  }

  .versus-card-title {
    font-size: 1.5rem;
  }

  .versus-card {
    border-left-width: 4px;
    padding: 1.5rem 1rem;
  }

  .versus-risks {
    padding: 1.75rem 1rem;
  }

  .versus-risks-title {
    font-size: 1.5rem;
  }
}

/* Candidate Section */
.candidate-section {
  background: #2A4F74;
  padding: 4rem 0 3rem;
}

.candidate-title {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.25rem;
}

.candidate-intro {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9375rem;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 0;
}

.candidate-items {
  margin-top: 2.5rem;
}

.candidate-item {
  padding: 0.5rem 0;
}

.candidate-item-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.candidate-item-text strong {
  color: #fff;
  font-weight: 700;
}

.candidate-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 1);
  margin: 0 0 2.5rem;
  opacity: 1;
}

.candidate-footer {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.8125rem;
  line-height: 1.7;
  text-align: center;
  margin-bottom: 0;
  max-width: 70%;
  margin-inline: auto;
  padding-bottom: 0;
}

@media (max-width: 1199.98px) {
  .candidate-items .col-6 {
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }
}

@media (max-width: 991.98px) {
  .candidate-section {
    padding: 3rem 0 2.5rem;
  }

  .candidate-title {
    font-size: 2rem;
  }

  .candidate-items .col-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 575.98px) {
  .candidate-section {
    padding: 2.5rem 0 2rem;
  }

  .candidate-title {
    font-size: 1.625rem;
  }

  .candidate-intro {
    font-size: 0.875rem;
  }

  .candidate-items .col-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .candidate-item {
    text-align: center;
    padding: 0.75rem 0;
  }

  .candidate-footer {
    font-size: 0.75rem;
  }
}

/* Rhinoplasty Cost Section */
.rhino-cost-section {
  padding: 2.5rem 0;
  background: #fff;
}

.rhino-cost-title {
  color: var(--hero-text);
  font-size: 2.25rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0;
  padding-bottom: 1.5rem;
}

.rhino-cost-text {
  color: var(--what-text);
  font-size: 1rem;
  line-height: 1.75;
  text-align: center;
  margin: 0 auto;
  max-width: 760px;
}

@media (max-width: 991.98px) {
  .rhino-cost-section {
    padding: 3rem 0;
  }

  .rhino-cost-title {
    font-size: 2rem;
  }

  .rhino-cost-text {
    font-size: 0.9375rem;
  }
}

@media (max-width: 575.98px) {
  .rhino-cost-title {
    font-size: 1.625rem;
  }
}

/* Graft Types Section */
.graft-types-section {
  padding: 4rem 0;
  background: #f5f5f5;
}

.graft-types-title {
  color: var(--hero-text);
  font-size: 2.25rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.25rem;
}

.graft-types-intro {
  color: var(--what-text);
  font-size: 0.9375rem;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 2.5rem;
}

.graft-types-body {
  width: 100%;
}

.graft-types-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: end;
}

.graft-type-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.25rem;
  border: none;
  color: #2A4F74;
  font-size: 1.25rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
  text-align: center;
  line-height: 1.4;
  font-family: inherit;
  border-radius: 0.625rem;
  background: #ECEDEE;
}

.graft-type-tab:hover {
  background: #2A4F74;
  color: #fff;
}

.graft-type-tab.active {
  background: var(--hero-text);
  color: #fff;
}

.graft-types-panel {
  width: 100%;
}

.graft-panel-title {
  color: var(--hero-text);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
  padding-bottom: 0;
}

.graft-panel-images {
  position: relative;
  max-width: 25rem;
}

.graft-panel-img {
  width: 100%;
  height: auto;
  display: block;
}

.graft-panel-labels {
  display: flex;
}

.graft-panel-label {
  flex: 1;
  display: block;
  background: var(--hero-text);
  color: #fff;
  text-align: center;
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.35rem 0;
  letter-spacing: 0.08em;
}

.graft-panel-text {
  color: var(--what-text);
  font-size: 0.9375rem;
  line-height: 1.75;
  margin-top: 1.25rem;
  margin-bottom: 0;
  padding-bottom: 0;
}

.graft-panel-nav {
  display: flex;
  gap: 0.375rem;
  margin-top: 1.25rem;
}

.graft-nav-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--hero-text);
  background: transparent;
  color: var(--hero-text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, opacity 0.2s;
  padding: 0;
}

.graft-nav-btn:hover:not(.disabled) {
  background: var(--hero-text);
  color: #fff;
}

.graft-nav-btn.disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

@media (max-width: 991.98px) {
  .graft-types-section {
    padding: 3rem 0;
  }

  .graft-types-title {
    font-size: 2rem;
  }

  .graft-types-tabs {
    flex-direction: column;
    gap: 0;
  }

  .graft-type-tab {
    border-radius: 0;
    padding: 0.875rem 1rem;
    text-align: left;
    justify-content: flex-start;
    font-size: 0.9375rem;
    font-weight: 600;
    background: #eaeaea;
    border-bottom: 1px solid #ddd;
  }

  .graft-type-tab:first-child {
    border-radius: 0.375rem 0.375rem 0 0;
  }

  .graft-type-tab:last-child {
    border-radius: 0 0 0.375rem 0.375rem;
    border-bottom: none;
  }

  .graft-type-tab.active {
    background: var(--hero-text);
    color: #fff;
  }

  .graft-types-panel-col {
    display: none;
  }

  .graft-types-panel {
    padding: 1.25rem 0;
  }

  .graft-panel-title {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .graft-types-section {
    padding: 2.5rem 0;
  }

  .graft-types-title {
    font-size: 1.625rem;
  }

  .graft-types-intro {
    font-size: 0.875rem;
    margin-bottom: 1.75rem;
  }

  .graft-panel-images{
    max-width: 100%;
  }
}

/* ── Why Choose Dr. Rizk for Grafts Section ── */
.wc-grafts-section {
  background: #2b2b2b;
  color: #fff;
  overflow: hidden;
  position: relative;
}

.wc-grafts-image-wrapper {
  position: absolute;
  inset: 0;
  width: 42%;
  height: 100%;
  z-index: 1;
  top: 0;
  left: 0;
}

.wc-grafts-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.wc-grafts-content {
  padding: clamp(3rem, 6vw, 4.5rem) clamp(1.5rem, 3vw, 2rem);
}

.wc-grafts-title {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1.25rem;
  color: #fff;
  padding-bottom: 0;
  text-align: left;
}

.wc-grafts-intro {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #d4d4d4;
  margin-bottom: 1.25rem;
  padding-bottom: 0;
}

.wc-grafts-subtitle {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
  padding-bottom: 0;
}

.wc-grafts-text {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #d4d4d4;
  margin-bottom: 1.25rem;
  padding-bottom: 0;
}

.wc-grafts-text:last-child {
  margin-bottom: 0;
}

@media (max-width: 991.98px) {
  .wc-grafts-image-wrapper {
    position: unset;
    width: 100%;
    height: auto;
  }

  .wc-grafts-content {
    padding: 2.5rem 1.5rem;
  }

  .wc-grafts-title {
    font-size: 1.75rem;
  }

  .wc-grafts-intro {
    font-size: 0.875rem;
  }

  .wc-grafts-subtitle {
    font-size: 1.125rem;
  }

  .wc-grafts-text {
    font-size: 0.875rem;
  }
}

@media (max-width: 575.98px) {
  .wc-grafts-content {
    padding: 2rem 1rem;
  }

  .wc-grafts-title {
    font-size: 1.625rem;
  }
}

/* ── Unified Section Typography ── */
.what-is-title,
.symptoms-title,
.causes-title,
.ba-title,
.solutions-title,
.aboutdr-title,
.awards-title,
.process-title,
.further-reading-title,
.read-more-tips-title,
.book-consultation-title,
.related-procedure-title,
.written-by-dr-title,
.about-proc-title,
.meet-expert-heading,
.yourguide-title,
.rhino-intro-text-title,
.rhino-treated-title,
.rhino-tl-heading,
.rhino-heal-heading,
.rhino-beyond-heading,
.why-choose-heading,
.video-testimonials-heading,
.rhino-process-title,
.rhino-media-title,
.types-rhino-title,
.rhino-cost-title,
.graft-types-title,
.wc-grafts-title,
.candidate-title,
.versus-card-title,
.versus-risks-title,
.warning-title {
  font-size: 2rem;
}

.what-is-body,
.what-is-body p,
.what-is-body ul,
.what-is-body ul li,
.symptoms-intro,
.symptoms-text,
.causes-description,
.ba-disclaimer,
.solutions-intro,
.solutions-text,
.aboutdr-text,
.process-card-text,
.book-consultation-text,
.written-by-dr-text,
.warning-text,
.about-proc-description,
.about-proc-description p,
.meet-expert-desc,
.meet-expert-list li,
.why-choose-intro,
.why-choose-list li,
.rhino-intro-text-desc,
.rhino-treated-text,
.rhino-beyond-text,
.yourguide-intro,
.candidate-intro,
.rhino-cost-text,
.graft-types-intro,
.wc-grafts-intro,
.wc-grafts-text,
.types-rhino-intro,
.types-rhino-bottom-text,
.rhino-process-subtitle,
.rhino-tl-subtext {
  font-size: 1.125rem;
}

@media (max-width: 991.98px) {
  .what-is-title,
  .symptoms-title,
  .causes-title,
  .ba-title,
  .solutions-title,
  .aboutdr-title,
  .awards-title,
  .process-title,
  .further-reading-title,
  .read-more-tips-title,
  .book-consultation-title,
  .related-procedure-title,
  .written-by-dr-title,
  .about-proc-title,
  .meet-expert-heading,
  .yourguide-title,
  .rhino-intro-text-title,
  .rhino-treated-title,
  .rhino-tl-heading,
  .rhino-heal-heading,
  .rhino-beyond-heading,
  .why-choose-heading,
  .video-testimonials-heading,
  .rhino-process-title,
  .rhino-media-title,
  .types-rhino-title,
  .rhino-cost-title,
  .graft-types-title,
  .wc-grafts-title,
  .candidate-title,
  .versus-card-title,
  .versus-risks-title,
  .warning-title {
    font-size: 1.8rem;
  }

  .what-is-body,
  .what-is-body p,
  .what-is-body ul,
  .what-is-body ul li,
  .symptoms-intro,
  .symptoms-text,
  .causes-description,
  .ba-disclaimer,
  .solutions-intro,
  .solutions-text,
  .aboutdr-text,
  .process-card-text,
  .book-consultation-text,
  .written-by-dr-text,
  .warning-text,
  .about-proc-description,
  .about-proc-description p,
  .meet-expert-desc,
  .meet-expert-list li,
  .why-choose-intro,
  .why-choose-list li,
  .rhino-intro-text-desc,
  .rhino-treated-text,
  .rhino-beyond-text,
  .yourguide-intro,
  .candidate-intro,
  .rhino-cost-text,
  .graft-types-intro,
  .wc-grafts-intro,
  .wc-grafts-text,
  .types-rhino-intro,
  .types-rhino-bottom-text,
  .rhino-process-subtitle,
  .rhino-tl-subtext {
    font-size: 1rem;
  }
}