html,
body {
	max-width: 100%;
	overflow-x: hidden;
}

:root {
	--drrl-primary: #1e3b7c;
	--drrl-accent: #00a850;
	--drrl-dark: #10264f;
	--drrl-light: #f4f8ff;
	--drrl-white: #ffffff;
	--drrl-text: #4f5f7a;
	--drrl-heading: #163060;
	--drrl-border: rgba(30, 59, 124, 0.12);
	--drrl-shadow: 0 22px 60px rgba(16, 38, 79, 0.14);
}

body {
	font-family: "Manrope", sans-serif;
	color: var(--drrl-text);
	background-color: #f9fbff;
	line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6,
.brand-text {
	font-family: "Marcellus", serif;
	color: var(--drrl-heading);
	letter-spacing: 0.01em;
}

a {
	color: var(--drrl-primary);
	text-decoration: none;
}

a:hover {
	color: var(--drrl-accent);
}

.section-space {
	padding: 90px 0;
}

.btn {
	border-radius: 999px;
	padding: 0.95rem 1.6rem;
	font-weight: 700;
}

.btn-brand {
	background: linear-gradient(135deg, var(--drrl-primary), #284e9c);
	border: 0;
	color: var(--drrl-white);
	box-shadow: 0 16px 32px rgba(30, 59, 124, 0.28);
}

.btn-brand:hover {
	color: var(--drrl-white);
	background: linear-gradient(135deg, #183164, #21458b);
}

.btn-outline-light {
	border-width: 2px;
}

.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1030;
}

.topbar {
	background: var(--drrl-primary);
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.95rem;
	max-height: 80px;
	overflow: hidden;
	transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
}

.site-header.header-scrolled .topbar {
	max-height: 0;
	opacity: 0;
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}

.topbar a,
.topbar-hours {
	color: rgba(255, 255, 255, 0.92);
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
}

.navbar {
	position: relative;
	padding: 1rem 0;
	background: rgba(255, 255, 255, 0.78);
	backdrop-filter: blur(16px);
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
	transition: all 0.3s ease;
}

.navbar.is-sticky {
	padding: 0.75rem 0;
	background: rgba(255, 255, 255, 0.96);
	box-shadow: 0 14px 30px rgba(16, 38, 79, 0.08);
	border-color: var(--drrl-border);
}

.site-main {
	padding-top: var(--header-offset, 140px);
}

.navbar-brand img {
	max-height: 62px;
	width: auto;
}

.brand-text {
	font-size: 1.65rem;
}

.navbar-toggler {
	border: 0;
	padding: 0.4rem 0.55rem;
}

.navbar-toggler:focus {
	box-shadow: none;
}

.navbar-nav .nav-link {
	color: var(--drrl-heading);
	font-weight: 700;
	padding: 0.85rem 1rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .current-menu-item > .nav-link,
.navbar-nav .current_page_item > .nav-link {
	color: var(--drrl-accent);
}

.navbar-nav .dropdown-menu {
	margin-top: 0.75rem;
	border: 1px solid var(--drrl-border);
	border-radius: 18px;
	padding: 0.85rem;
	min-width: 280px;
	box-shadow: 0 22px 60px rgba(16, 38, 79, 0.12);
}

.navbar-nav .dropdown-item {
	padding: 0.7rem 0.9rem;
	border-radius: 12px;
	font-weight: 700;
	color: var(--drrl-heading);
	white-space: normal;
}

.navbar-nav .dropdown-item:hover,
.navbar-nav .dropdown-item:focus {
	background: rgba(0, 168, 80, 0.08);
	color: var(--drrl-accent);
}

@media (min-width: 1200px) {
	.navbar-nav .menu-item-has-children {
		position: relative;
		padding-bottom: 12px;
		margin-bottom: -12px;
	}

	.navbar-nav .menu-item-has-children > .dropdown-menu {
		top: 100%;
		left: 0;
		margin-top: 0;
	}

	.navbar-nav .menu-item-has-children:hover > .dropdown-menu,
	.navbar-nav .menu-item-has-children:focus-within > .dropdown-menu {
		display: block;
	}

	.navbar-nav .menu-item-has-children:hover > .nav-link,
	.navbar-nav .menu-item-has-children:focus-within > .nav-link {
		color: var(--drrl-accent);
	}
}

.hero-section {
	position: relative;
	overflow: hidden;
}

.hero-slide {
	position: relative;
	min-height: 100vh;
	display: flex;
	align-items: center;
	background:
		radial-gradient(circle at top left, rgba(0, 168, 80, 0.16), transparent 35%),
		linear-gradient(135deg, rgba(14, 38, 82, 0.98), rgba(30, 59, 124, 0.84));
	background-size: cover;
	background-position: center;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(90deg, rgba(9, 24, 51, 0.82) 0%, rgba(9, 24, 51, 0.55) 45%, rgba(9, 24, 51, 0.18) 100%),
		radial-gradient(circle at bottom right, rgba(0, 168, 80, 0.3), transparent 25%);
}

.hero-card {
	position: relative;
	z-index: 1;
	padding: 38px;
	border-radius: 28px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(2px);
	box-shadow: var(--drrl-shadow);
}

.hero-eyebrow {
	display: inline-block;
	margin-bottom: 1rem;
	padding: 0.55rem 1rem;
	border-radius: 999px;
	background: rgba(0, 168, 80, 0.14);
	color: #9df5c2;
	font-size: 0.9rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.hero-card h1 {
	font-size: clamp(1.8rem, 2.6vw, 2.6rem);
	line-height: 1.06;
	color: var(--drrl-white);
	margin-bottom: 1.25rem;
}

.hero-card p {
	max-width: 640px;
	font-size: 1.05rem;
	color: rgba(255, 255, 255, 0.86);
	margin-bottom: 1.75rem;
}

.carousel-indicators {
	margin-bottom: 2rem;
}

.carousel-indicators [data-bs-target] {
	width: 12px;
	height: 12px;
	border-radius: 50%;
}

.carousel-control-prev,
.carousel-control-next {
	width: 8%;
}

.home-intro {
	background: linear-gradient(180deg, #f9fbff 0%, #eef5ff 100%);
}

.about-highlight {
	position: relative;
	background:
		radial-gradient(circle at top left, rgba(0, 168, 80, 0.08), transparent 28%),
		linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.section-kicker {
	display: inline-block;
	margin-bottom: 1rem;
	padding: 0.55rem 0.95rem;
	border-radius: 999px;
	background: rgba(0, 168, 80, 0.1);
	color: var(--drrl-accent);
	font-size: 0.85rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.section-kicker-light {
	background: rgba(255, 255, 255, 0.1);
	color: #c7f6dc;
}

.section-heading-light {
	color: var(--drrl-white);
}

.section-intro h2 {
	font-size: clamp(2rem, 3vw, 3.2rem);
	margin-bottom: 1.1rem;
}

.section-intro p {
	font-size: 1.05rem;
	color: var(--drrl-text);
	margin-bottom: 1rem;
}

.about-visual {
	position: relative;
}

.about-visual img,
.about-visual-placeholder {
	width: 100%;
	min-height: 560px;
	border-radius: 34px;
	box-shadow: var(--drrl-shadow);
}

.about-visual img {
	object-fit: cover;
}

.about-visual-placeholder {
	position: relative;
	overflow: hidden;
	padding: 34px;
	background:
		radial-gradient(circle at top right, rgba(0, 168, 80, 0.2), transparent 26%),
		linear-gradient(145deg, #18356d 0%, #0f254c 100%);
	border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-visual-placeholder::before {
	content: "";
	position: absolute;
	inset: auto -80px -120px auto;
	width: 260px;
	height: 260px;
	border-radius: 50%;
	background: rgba(0, 168, 80, 0.12);
	filter: blur(8px);
}

.visual-badge {
	display: inline-flex;
	flex-direction: column;
	gap: 0.35rem;
	padding: 1rem 1.15rem;
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.12);
	color: var(--drrl-white);
	backdrop-filter: blur(2px);
}

.visual-badge span {
	font-size: 0.85rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: #9df5c2;
}

.visual-badge strong {
	font-size: 1.45rem;
	font-family: "Marcellus", serif;
	font-weight: 400;
}

.visual-card {
	position: absolute;
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	max-width: 320px;
	padding: 1.2rem 1.25rem;
	border-radius: 24px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.12);
	color: var(--drrl-white);
	backdrop-filter: blur(2px);
}

.visual-card i {
	font-size: 1.4rem;
	color: #9df5c2;
}

.visual-card strong {
	display: block;
	font-size: 1rem;
	margin-bottom: 0.35rem;
}

.visual-card span {
	display: block;
	font-size: 0.92rem;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.82);
}

.visual-card-primary {
	left: 34px;
	bottom: 36px;
}

.visual-card-accent {
	right: 30px;
	top: 140px;
}

.home-intro .wp-block-heading,
.home-intro h2 {
	font-size: clamp(2rem, 3vw, 3rem);
	margin-bottom: 1rem;
}

.section-lead {
	max-width: 760px;
	margin: 0 auto;
	font-size: 1.05rem;
	color: var(--drrl-text);
}

.why-choose-section {
	position: relative;
	background:
		radial-gradient(circle at top right, rgba(30, 59, 124, 0.08), transparent 22%),
		radial-gradient(circle at bottom left, rgba(0, 168, 80, 0.08), transparent 28%),
		linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.why-choose-visual img,
.why-choose-placeholder {
	width: 100%;
	min-height: 500px;
	border-radius: 30px;
	box-shadow: var(--drrl-shadow);
}

.why-choose-visual img {
	object-fit: cover;
}

.why-choose-placeholder {
	position: relative;
	overflow: hidden;
	padding: 32px;
	background:
		linear-gradient(160deg, rgba(30, 59, 124, 0.92), rgba(15, 37, 76, 0.96)),
		radial-gradient(circle at top left, rgba(0, 168, 80, 0.18), transparent 22%);
}

.why-choose-placeholder::before {
	content: "";
	position: absolute;
	right: -80px;
	bottom: -90px;
	width: 260px;
	height: 260px;
	border-radius: 50%;
	background: rgba(0, 168, 80, 0.18);
	filter: blur(6px);
}

.why-choose-placeholder-badge,
.why-choose-placeholder-card {
	position: relative;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem 1.15rem;
	border-radius: 22px;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.12);
	color: var(--drrl-white);
	backdrop-filter: blur(2px);
}

.why-choose-placeholder-badge {
	font-weight: 700;
}

.why-choose-placeholder-badge i {
	color: #9df5c2;
	font-size: 1.35rem;
}

.why-choose-placeholder-card {
	position: absolute;
	left: 32px;
	right: 32px;
	bottom: 32px;
	justify-content: center;
	text-align: center;
}

.why-choose-accordion .accordion-item {
	border: 1px solid rgba(30, 59, 124, 0.14);
	border-radius: 20px;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.82);
	box-shadow: 0 14px 32px rgba(16, 38, 79, 0.06);
}

.why-choose-accordion .accordion-item + .accordion-item {
	margin-top: 16px;
}

.why-choose-accordion .accordion-button {
	gap: 1rem;
	padding: 1.2rem 1.35rem;
	font-weight: 800;
	font-size: 1.05rem;
	color: var(--drrl-heading);
	background: rgba(255, 255, 255, 0.88);
	box-shadow: none;
}

.why-choose-accordion .accordion-button:not(.collapsed) {
	color: var(--drrl-primary);
	background: rgba(30, 59, 124, 0.04);
}

.why-choose-accordion .accordion-button::after {
	background-size: 1rem;
}

.accordion-icon {
	flex: 0 0 48px;
	width: 48px;
	height: 48px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 14px;
	background: rgba(30, 59, 124, 0.08);
	color: var(--drrl-primary);
	font-size: 1.25rem;
}

.why-choose-accordion .accordion-body {
	padding: 0 1.35rem 1.3rem 5.35rem;
	color: var(--drrl-text);
	font-size: 0.98rem;
}

.stats-section {
	position: relative;
	background:
		radial-gradient(circle at top right, rgba(0, 168, 80, 0.2), transparent 22%),
		linear-gradient(145deg, #17346b 0%, #10264f 100%);
	overflow: hidden;
}

.stats-section::before {
	content: "";
	position: absolute;
	inset: auto auto -110px -110px;
	width: 280px;
	height: 280px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.04);
}

.stat-card {
	position: relative;
	height: 100%;
	padding: 2rem 1.5rem;
	border-radius: 26px;
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 20px 44px rgba(8, 19, 42, 0.18);
	backdrop-filter: blur(2px);
}

.stat-number-wrap {
	display: flex;
	align-items: baseline;
	gap: 0.15rem;
	margin-bottom: 1rem;
	color: var(--drrl-white);
}

.stat-prefix,
.stat-suffix,
.stat-number {
	font-family: "Marcellus", serif;
	line-height: 1;
}

.stat-number {
	font-size: clamp(2.6rem, 4vw, 3.8rem);
}

.stat-prefix,
.stat-suffix {
	font-size: 1.5rem;
	color: #9df5c2;
}

.stat-label {
	margin: 0;
	font-size: 1.05rem;
	color: rgba(255, 255, 255, 0.82);
}

.treatments-section {
	background:
		radial-gradient(circle at top left, rgba(30, 59, 124, 0.07), transparent 24%),
		linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
}

.treatment-card {
	display: block;
	height: 100%;
	border-radius: 28px;
	overflow: hidden;
	background: var(--drrl-white);
	border: 1px solid rgba(30, 59, 124, 0.1);
	box-shadow: 0 20px 46px rgba(16, 38, 79, 0.08);
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.treatment-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 28px 54px rgba(16, 38, 79, 0.12);
}

.treatment-card-media {
	position: relative;
	height: 260px;
	overflow: hidden;
	background: linear-gradient(145deg, rgba(30, 59, 124, 0.12), rgba(0, 168, 80, 0.1));
}

.treatment-card-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.treatment-card:hover .treatment-card-media img {
	transform: scale(1.04);
}

.treatment-card-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background:
		radial-gradient(circle at top right, rgba(0, 168, 80, 0.18), transparent 24%),
		linear-gradient(145deg, #17356e, #10264f);
	color: rgba(255, 255, 255, 0.92);
	font-size: 3rem;
}

.treatment-card-body {
	padding: 1.45rem 1.45rem 1.6rem;
}

.treatment-card-body h3 {
	margin-bottom: 0.85rem;
	font-size: 1.5rem;
	line-height: 1.25;
}

.treatment-link {
	display: inline-flex;
	align-items: center;
	gap: 0.2rem;
	font-size: 0.95rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: var(--drrl-accent);
}

.videos-section {
	background:
		radial-gradient(circle at top right, rgba(0, 168, 80, 0.08), transparent 24%),
		linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}

.video-card {
	height: 100%;
	padding: 12px;
	border-radius: 28px;
	background: var(--drrl-white);
	border: 1px solid rgba(30, 59, 124, 0.1);
	box-shadow: 0 20px 46px rgba(16, 38, 79, 0.08);
}

.video-frame {
	overflow: hidden;
	border-radius: 20px;
	background: linear-gradient(145deg, rgba(30, 59, 124, 0.12), rgba(0, 168, 80, 0.1));
}

.video-frame iframe {
	width: 100%;
	height: 100%;
	border: 0;
}

.reviews-section {
	background:
		radial-gradient(circle at top left, rgba(30, 59, 124, 0.06), transparent 24%),
		linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.google-review-summary {
	max-width: 520px;
	padding: 2rem 1.5rem;
	border-radius: 30px;
	background: #ffffff;
	border: 1px solid rgba(30, 59, 124, 0.1);
	box-shadow: 0 20px 46px rgba(16, 38, 79, 0.08);
	text-align: center;
}

.google-brand {
	margin-bottom: 0.7rem;
	font-size: 1.9rem;
	font-weight: 800;
	letter-spacing: -0.02em;
}

.g-blue {
	color: #4285f4;
}

.g-red {
	color: #ea4335;
}

.g-yellow {
	color: #fbbc05;
}

.g-green {
	color: #34a853;
}

.google-rating-title {
	font-size: 2rem;
	font-weight: 800;
	color: var(--drrl-heading);
	letter-spacing: 0.04em;
}

.google-stars {
	display: flex;
	justify-content: center;
	gap: 0.35rem;
	margin: 0.8rem 0;
	color: #fbbc05;
}

.google-rating-summary {
	font-size: 1rem;
	color: var(--drrl-text);
}

.review-card {
	height: 100%;
	padding: 1.6rem;
	border-radius: 28px;
	background: #ffffff;
	border: 1px solid rgba(30, 59, 124, 0.1);
	box-shadow: 0 20px 46px rgba(16, 38, 79, 0.08);
}

.review-card-top {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom: 1rem;
}

.review-avatar {
	width: 54px;
	height: 54px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: linear-gradient(145deg, var(--drrl-primary), #2b549f);
	color: var(--drrl-white);
	font-weight: 800;
	font-size: 1.2rem;
}

.review-card h3 {
	margin-bottom: 0.2rem;
	font-size: 1.35rem;
}

.review-card-top p {
	margin: 0;
	font-size: 0.92rem;
	color: var(--drrl-text);
}

.review-stars {
	justify-content: flex-start;
	margin: 0 0 1rem;
}

.review-text {
	margin: 0;
	font-size: 1rem;
	color: var(--drrl-text);
}

.floating-actions {
	position: fixed;
	right: 18px;
	bottom: 18px;
	z-index: 1045;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.floating-action {
	width: 56px;
	height: 56px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	color: var(--drrl-white);
	font-size: 1.3rem;
	box-shadow: 0 18px 36px rgba(16, 38, 79, 0.2);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-action:hover {
	color: var(--drrl-white);
	transform: translateY(-3px);
	box-shadow: 0 22px 42px rgba(16, 38, 79, 0.26);
}

.floating-action-call {
	background: var(--drrl-primary);
}

.floating-action-whatsapp {
	background: #25d366;
}

.floating-action-appointment {
	background: var(--drrl-accent);
}

.inner-page-banner {
	padding: 100px 0 60px;
	background: linear-gradient(135deg, rgba(30, 59, 124, 0.08), rgba(0, 168, 80, 0.08));
}

.inner-page-banner h1 {
	font-size: clamp(2.2rem, 4vw, 3.8rem);
}

.site-footer {
	padding: 80px 0 20px;
	background:
		radial-gradient(circle at top left, rgba(0, 168, 80, 0.14), transparent 30%),
		linear-gradient(160deg, #0f244c 0%, #17366e 100%);
	color: rgba(255, 255, 255, 0.78);
}

.site-footer h3,
.site-footer h4 {
	color: var(--drrl-white);
	margin-bottom: 1.2rem;
}

.site-footer h4 {
	position: relative;
	padding-bottom: 0.9rem;
	font-family: "Manrope", sans-serif;
	font-size: 1.35rem;
	font-weight: 800;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

.site-footer h4::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 60px;
	height: 3px;
	background: var(--drrl-primary);
	border-radius: 999px;
}

.footer-menu li + li {
	margin-top: 0.7rem;
}

.footer-menu a {
	color: rgba(255, 255, 255, 0.8);
	font-size: 1.2rem;
	font-weight: 500;
}

.footer-contact li {
	display: flex;
	gap: 0.85rem;
	margin-bottom: 1rem;
}

.footer-contact i {
	color: var(--drrl-accent);
	font-size: 1.15rem;
	line-height: 1.8;
}

.footer-contact span {
	font-size: 1.1rem;
	color: rgba(255, 255, 255, 0.88);
}

.footer-bottom {
	margin-top: 42px;
	padding-top: 20px;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 1199.98px) {
	.navbar-collapse {
		margin-top: 1rem;
		padding: 1rem;
		border-radius: 24px;
		background: var(--drrl-white);
		box-shadow: 0 18px 40px rgba(16, 38, 79, 0.08);
	}

	.header-cta .btn {
		width: 100%;
	}

	.navbar-nav .dropdown-menu {
		box-shadow: none;
		border: 0;
		padding: 0 0 0.25rem 1rem;
		min-width: 100%;
	}

}

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

	.hero-slide {
		min-height: 84vh;
	}

	.hero-card {
		padding: 28px;
	}

	.hero-card h1 {
		font-size: clamp(2.3rem, 8vw, 3.5rem);
	}

	.about-visual img,
	.about-visual-placeholder {
		min-height: 460px;
	}

	.why-choose-visual img,
	.why-choose-placeholder {
		min-height: 430px;
	}

	.stat-card {
		padding: 1.7rem 1.25rem;
	}

	.treatment-card-media {
		height: 230px;
	}

	.visual-card-accent {
		top: auto;
		right: 24px;
		bottom: 150px;
	}
}

@media (max-width: 767.98px) {
	.navbar {
		padding: 0.8rem 0;
	}

	.hero-slide {
		min-height: 76vh;
	}

	.hero-card {
		padding: 24px 20px;
		border-radius: 20px;
	}

	.about-visual-placeholder {
		min-height: 420px;
		padding: 24px;
		border-radius: 24px;
	}

	.why-choose-placeholder {
		min-height: 360px;
		padding: 24px;
		border-radius: 24px;
	}

	.why-choose-placeholder-card {
		left: 24px;
		right: 24px;
		bottom: 24px;
	}

	.why-choose-accordion .accordion-button {
		padding: 1rem;
		font-size: 0.95rem;
	}

	.why-choose-accordion .accordion-body {
		padding: 0 1rem 1rem 1rem;
	}

	.stat-number {
		font-size: 2.5rem;
	}

	.treatment-card-body {
		padding: 1.2rem;
	}

	.treatment-card-body h3 {
		font-size: 1.28rem;
	}

	.floating-actions {
		right: 14px;
		bottom: 14px;
		gap: 10px;
	}

	.floating-action {
		width: 50px;
		height: 50px;
		font-size: 1.15rem;
	}

	.visual-card {
		position: relative;
		left: auto;
		right: auto;
		top: auto;
		bottom: auto;
		max-width: 100%;
		margin-top: 18px;
	}

	.carousel-control-prev,
	.carousel-control-next {
		display: none;
	}
}
