@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
	box-sizing: border-box;
	font-family: "Open Sans";
    letter-spacing: 0.05em; 
}

html {
	overflow-x: hidden;
}
ul li {
	list-style: none;
}
body {
	display: block;
	background-color: #fefbf0;
	margin: 0;
	padding: 0;
	overflow-x: hidden;
}

strong {
    color: #1b435d;
}

.wrapper {
	display: block;
	width: 100%;
	margin: 0 auto;
}

header {
	background: #fff;
	margin-bottom: 0px;
}

header .top {
	display: flex;
	align-items: center;
	background: #ffffff;
	padding: 5px;
}

header .top .logo {
	display: block;
	width: 100%;
	max-width: 50px;
	margin-left: 40px;
	padding-right: 10px;
}

.logo {
    display: block;
    width: 170px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
	}

.treatment h3 {
    color: #1b435d;
    font-size: 40px;
    text-align: center;
    line-height: 3.5rem;
    font-family: "Poppins", serif;
    position: relative;
    padding-bottom: 20px;
    @media screen and (max-width: 600px) {
		font-size: 30px;
        line-height: 2.5rem;
	}
}

  h3:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: #1b435d;
    transition: width 0.5s ease-out;
    animation: drawUnderline 3s forwards;
  }

  @keyframes drawUnderline {
    from { width: 0; left: 50%; }
    to { width: 300px; left: calc(50% - 150px); }
  }
.titlebanner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    text-align: center;
}

.titlebanner img {
    height: 50px;
    margin-right: 10px;
}

.titlebanner h2 {
    margin: 0;
}

.treattitle {
    color: #1b435d;
    text-transform: uppercase;
    font-size: 25px;
    font-weight: 200;
    text-align: center;
    padding: 10px 0px;
}

.content {
	display: block;
	padding: 0px;
	place-content: center;
	@media screen and (max-width: 800px) {
		width: 100%;
		max-width: 6000px;

	}
}

.content p {
    font-family: "Playfair", serif;
    text-transform: uppercase;
    margin-left: auto;
    margin-right: auto;
    font-size: 15px !important;
    @media (max-width: 600px) { 
    font-size: 15px !important;
	}
}

.title {
	font-style: normal;
	font-weight: 500;
	font-size: 22px;
	line-height: 47px;
	color: #000000;
	letter-spacing: -0.04em;
}

.subh {
	font-family: "Poppins", serif;
	font-style: normal;
	font-weight: bold;
	font-size: 35px;
	line-height: 47px;
	color: #1b435d;
	margin-bottom: 25px;
	margin-top: 25px;
	letter-spacing: -0.04em;
	text-align: center;
	text-decoration: underline;
	letter-spacing: 0;
}

.subtext {
	line-height: 35px;
    margin: 0px;
	letter-spacing: -0.04em;
}

a {
	cursor: pointer;
	color: #fffcf0;
	text-decoration: underline;
}

@media screen and (max-width: 600px) {
	header {
		margin-bottom: 0;
	}
	header .top {
		padding:5px;
		min-height: auto;
		max-height: 75px;

	}
	header .top .logo {
		max-width: 50px;
		margin-left: 5px;
		padding-right: 10px;
	}
	.content {
		padding: 15px;
	}
	
	p {
        font-family: "Playfair", serif;
		font-size: 20px;
		line-height: 30px;
		letter-spacing: -0.02em;
	}
	h1 {
		font-weight: 800;
		font-size: 28px;
		line-height: 45px;
		letter-spacing: -0.02em;
		padding-left: 15px;
	}
}

@media screen and (max-width: 500px) {
	.button {
		font-size: 24px;
		line-height: 30px;
	}
}

@media screen and (max-width: 400px) {
	.button {
		font-size: 24px;
		line-height: 30px;
	}
}

/* checkbox list */
.checkmark-container {
    width: 400px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 40px;
}

/* Two-column layout for treatment section */
.treatment-two-column {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.treatment-text-column {
    flex: 1;
}

.treatment-checkmark-column {
    flex: 1;
    margin-top: 0;
}

.treatment-checkmark-column .checkmark-container {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    padding-top: 0;
    margin-top: 0;
}

.treatment-toggle-column {
    flex: 1;
    margin-top: 0;
}

.treatment-toggle-column .toggle {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
}

.treatment-text-column h3 {
    text-align: center;
    margin-top: 0;
    padding-top: 0;
    margin-bottom: 20px;
}

.treatment-text-column h3:after {
    left: calc(50% - 150px);
}

.treatment-checkmark-column .checkmark-item:first-child {
    margin-top: 0;
    padding-top: 0;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .treatment-two-column {
        flex-direction: column;
        gap: 20px;
    }
    
    .treatment-text-column h3 {
        text-align: center;
    }
    
    .treatment-text-column h3:after {
        left: calc(50% - 150px);
    }

    .treatment-toggle-column .toggle {
        width: 100%;
    }
}

.checkmark-item {
    font-family: "Playfair", serif;
	text-align: left;
	line-height: 50px;
	font-size: 20px;
}
/* Spacing between the checkmark and the text */
.checkmark-item span {
    margin-left: 10px; 	
}
/* TOP MOBILE CTA */
.mobile-cta {
    display: none;
}

/* Media query for tablets and phones */
@media (max-width: 1024px) {
    .mobile-cta {
        display: block;
    }
}
/* call button */
.herobutton {
    background-color: transparent;
    border: 2px solid #1b435d;
    border-radius: 10px;
    color: #1b435d;
    display: inline-block;
    font-family: 'Poppins', serif;
    font-size: 18px;
    text-align: center;
    text-decoration: none;
    margin: 5px;
    font-weight: bold;
    padding: 10px 15px;
    @media (max-width: 768px) {
        font-size: 16px;
        padding: 8px 12px;
    }
}

.herobutton:hover {
    background-color: #1b435d;
    color: #fffcf0;
}

/* Header button container positioning */
.heropop {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    @media (max-width: 768px) {
        top: 10px;
        right: 10px;
        gap: 5px;
    }
}

/* Who Calls button styling */
.popup2 .openPopup {
    font-family: 'Poppins', serif;
    display: inline-flex;
    align-items: center;
    background-color: transparent;
    border: none;
    border-radius: 10px;
    color: #1b435d;
    font-weight: bold;
    font-size: 18px;
    padding: 10px 15px;
    margin: 5px;
    cursor: pointer;
    text-transform: none;
    @media (max-width: 768px) {
        font-size: 16px;
        padding: 8px 12px;
    }
}

.popup2 .openPopup:hover {
    background-color: #1b435d;
    color: #fffcf0;
}

.popup2 .openPopup:hover .button-icon {
    content: url('images/more-info-white.png');
}

.button {
    background-color: transparent;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    border: 2px solid #fff;
    color: #fffcf0;
    width: 90%;
    cursor: pointer;
    display: block;
    font-family: 'Poppins', serif;
    font-size: 30px;
    text-align: center;
    text-decoration: none;
    width: 100%;
    max-width: 400px;
    margin: 15px auto;
    font-weight: bold;
    line-height: 54px;
    padding: 20px 15px;
}

.button:hover {
    background-color: #1b435d;
        color: #fffcf0;
    border: 2px solid #1b435d;
}

.footer {
    background-color: #1b435d;
    text-align:center;
    padding: 30px;
}
.footer p,li,h3{
    color: #fffcf0;
    font-size: 10px;
    line-height: 18px;
    padding: 0px;
}

ol {
	padding: 10px;
	text-align:left;
}

.contentsplit {
    height: 10px;
    background-color: #1b435d;
    margin: 10px 0px;
}

.hero-image {
	background-image: linear-gradient(rgba(255, 250, 239, 0.01), rgba(255, 250, 239, 0.01)), url("./images/hero.png");
    background-color: #fffaef;
	padding: 60px 0px 0px 0px;
    height: 900px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
	@media (max-width: 600px) { 
        height: 250px; 
    }
}

.hero-text {
    text-align: center;
    color: #1b435d;
    padding: 0px 0px 50px 0px;
    font-size: 45px;
    margin: auto;
    font-family: "Poppins", serif;
    line-height: 5rem;
	@media (max-width: 600px) { 
    display: none;
	}
}

.hero-container {
    width: 700px;
    margin: 0 auto;
}

.hero-container h2 {
    text-align: center;
    color: #1b435d;
    padding: 0px;
    font-size: 25px;
    margin: auto;
    font-family: "Poppins", serif;
    line-height: 5rem;
	@media (max-width: 600px) { 
    display: none;
	}
}

/* CALL TO ACTION */
.inhero-image {
    background-image: url('images/cta-background.png');
    background-color: #1b435d;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 20px 0px;
}

.inhero-text {
  text-align: center;
  color: #fffcf0;
  width: 100%;
}

.inhero-text h2, p{
    padding: 10px;
}

.inhero-text h1 {
	font-size: 25px;
	line-height: 25px;
	color: #fffcf0;
    font-weight: 600;
    padding: 20px;
    text-transform: uppercase;
}
.inhero-text .image-container {
	display: flex;
	justify-content: center;
	align-items: center;
    margin-left: auto;
    margin-right: auto;
	gap: 10px;
    width: 250px;
	flex-wrap: wrap;
	@media (max-width: 600px) {
			flex-direction: column; 
	}
}

/* clnicical tabs */
.tab-spacing {
	margin: 0px;
		@media screen and (max-width: 500px) {
			margin: 5px
	}
}

.tab-container {
	display: flex;
	text-align: center;
	@media screen and (max-width: 500px) {
		flex-direction: column;
		padding: 0;
	}
}

/* gallary */
.gallery {
    width: 100%;
    height: 500px;
    margin: auto;
    overflow: hidden;
    position: relative;
    display: flex;
}
 
.gallery-track {
    display: flex;
    animation: scroll-left 400s linear infinite;
    width: max-content;
}

.gallery img {
    object-fit: cover;
    flex-shrink: 0;
}

/* Keyframes for scrolling animation */
@keyframes scroll-left {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

/* toggle menu  */
.toggle {
    text-align: left;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
}

.tab-title {
    color: #1b435d;
    font-weight: 700;
    line-height: 1.5;
    margin: 0;
    padding: 30px 0px;
    border-bottom: 1px solid #1b435d;
    cursor: pointer;
    outline: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tab-title.active {
    background-color: #fffbef;
}

.tab-title h4 {
    margin: 0;
    font-size: 1.2em;
    line-height: 1;
}

.tab-title:hover {
    background-color: #e6dfc8;
    cursor: pointer;
}

.icon-closed,
.icon-open {
    display: inline-block;
    width: 1em;
    font-size: 1.2em;
    line-height: 1;
    color: #1b435d;
    vertical-align: middle;
}

.icon-open {
    display: none;
    color: #1b435d;
}

.tab-content {
    padding: 15px;
    border-bottom: 1px solid #d4d4d4;
    display: none;
}

.tab-content p {
    font-family: "Playfair", serif;
    padding: 20px;
    color: #535151;
    background-color: #fffbef;
    letter-spacing: 0;
}

@media (max-width:767px) {
    .toggle .tab-title {
        padding: 12px
    }

    .toggle .tab-content {
        padding: 12px 10px
    }
}

/* targeting ids to override classes */
#text-spacing  {
	text-transform: uppercase;
}

#column {
		flex-direction: column;
}

#no-underline {
	text-decoration: none;
}

/*Pop up*/
.call-button {
    display: block;
    color: #fffcf0;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    padding: 10px 10px 10px 10px;
    width: 300px;
    margin-left: auto;
}

.call-button:hover, .call-button:focus {
    background: linear-gradient(to bottom, #ae9fb1 0%, #ae9fb1 100%);
    color: #fffcf0;
    -webkit-animation: glowing 1500ms infinite;
    -moz-animation: glowing 1500ms infinite;
    -o-animation: glowing 1500ms infinite;
    animation: glowing 1500ms infinite;
}

.ctanumber {
    padding-top: 10px;
    color: #fffcf0;
    font-size: 34px;
    text-align: center;
}

.helplineinfo {
    font-family: "Playfair", serif;
    margin-left: auto;
    padding-top: 30px;
    padding-right: 40px;
    display: flex;
    border: none;
    border-radius: 10px;
    background-color: transparent;
    color: #fffcf0;
    font-weight: 600;
    cursor: pointer;
}

.helpline {
    display: none;
}

@media (max-width: 1024px) {
    .helpline {
        display: block;
    }
}

.desktop {
    display: block;
}

@media (max-width: 1024px) {
    .desktop {
        display: none;
    }
}
.popup2 button {
    color: #1b435d;
    text-transform: uppercase;
}

.button-content {
  display: flex;
  align-items: center;
}

.button-icon {
  width: 20px !important;
  height: 20px !important;
    margin-right: 5px;
}

.openPopup {
    font-family: "Playfair", serif;
    display: flex;
    text-align: center;
    padding: 10px;
    margin-left: auto;
    margin-right: auto;
    border: none;
    border-radius: 10px;
    background-color: transparent;
    color: #fffcf0;
    font-weight: bold;
    cursor: pointer;
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none; /* Hidden by default */
    justify-content: center;
    align-items: center;
    z-index: 1 !important;
}

.popup-overlay.special-padding { 
    padding-top: 30px;
}

.popup-content {
    position: relative;
    color: black;
    background-color: white;
    padding: 20px;
    border-radius: 5px;
    width: 800px;
    text-align: center;
}

.closePopup {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 10px;
    background: transparent;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #1b435d;
    font-weight: bold;
}

.closePopup:hover {
    color: #ff0000;
}

.popup-content h3 {
    color: #1b435d;
    text-transform: uppercase ;
    font-size: 20px !important;
    padding-top: 40px !important;
    padding-bottom: 10px !important;
    font-family: "Poppins", serif;
}

.popup-content p {
    padding: 20px !important;
    font-size: 18px !important;
    font-weight: 500 !important;
}

.popup-content a {
    color: #396c8d;
}

button {
cursor: pointer;
}


.ctahero {
    background-color: #1b435d;
}

.treatment {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 40px;
    padding-top: 60px;
}

.popup-content p {
    font-size: 18px;
}

.treatment p {
    font-family: "Playfair", serif;
    font-size: 22px;
    line-height: 2rem;
}

.treatment img {
    width: 400px;
    margin-left: auto;
    margin-right: auto;
    padding: 40px 0px 0px 0px;
}

/*Google Review*/
.mobile-reviews {
    display: none;
    padding: 0;
    margin: 0;
}

.reviews-section {
    background-color: #fffbef;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 40px;
    padding-top: 60px;
}

.dynamic-reviews {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 60%;
    flex-shrink: 0;
    padding: 20px;
    border: 2px solid #1b435d;
    background: #fffbef;
}

.review-card {
    background: white;
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border: 1px solid #e1e1e1;
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.review-profile-image {
    margin-right: 12px;
    flex-shrink: 0;
}

.review-google-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #4285f4;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 24px;
    margin-right: 12px;
    flex-shrink: 0;
}

.review-author {
    flex-grow: 1;
}

.review-author-name {
    font-weight: 600;
    color: #333;
    font-size: 16px;
    line-height: 1.2;
}

.review-count {
    color: #666;
    font-size: 14px;
    margin-top: 2px;
}

.review-rating-date {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.review-rating {
    display: flex;
    align-items: center;
}

.review-star {
    color: #ffc107;
    font-size: 18px;
    margin-right: 2px;
}

.review-date {
    color: #666;
    font-size: 14px;
}

.review-text {
    color: #333;
    font-size: 14px;
    line-height: 1.4;
}

.googlereviews {
    background-color: #fffbef;
    margin: 0px;
    display: block;
    text-align: center;
    padding: 0px;
}

.googlelogo {
    width: 35%;
    text-align: left;
    padding: 0px 0px 0px 0px;
    flex-shrink: 0;
}

.googlereviews img {
    margin: 0;
    display: block;
    width: 100%;
}

.googlelogo h1 {
    color: #1b435d;
    font-family: "Poppins", serif;
    padding:0px;
    text-align: left;
}

.googlelogo h4 {
    text-transform: uppercase;
    font-weight: 400;
    color: #1b435d;
    text-align: left;
}

.googlereviews {
    background: #fffbef;
    display: block;
    padding: 0px;
    width: 60%;
    flex-shrink: 0;
    margin: 0px;
    border: 2px solid #1b435d;
}

.googlelogo img {
    width: 300px;
    display: block;
    margin-left: 0;
    margin-right: auto;
}

.reviewimg {
    padding-top: 60px;
}

.reviewimg img {
    width: 100%;
}

.treatment-type {
    background-image: linear-gradient(rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0.01)), url("./images/footer.png");
    background-size: cover;
    background-position: center;
    padding: 20px;
    background-color: #b76028;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    margin: 0 auto;
    text-align: center;
    padding: 0px;
    /* Responsive behavior */
    @media (max-width: 600px) { 
        grid-template-columns: repeat(1, 1fr);
        gap: 5px;
    }
}

.content-grid p {
    padding: 10px;
    color: #fffcf0;
    font-weight: 800;
    text-transform: uppercase;
    /* Responsive behavior */
    @media (max-width: 600px) { 
        padding: 5px 0px;
        margin: 0px;
    }
}

 .docimg {
    display: block;
    margin: 0 auto;
  }

/* Responsive styles for medium screens (tablets) */
@media (max-width: 1150px) {
.table-container {
    grid-template-columns: repeat(1, 1fr);
    padding: 40px; 
}

.heropop {
    visibility: hidden;
}

.hero-image {
    height: auto;
    padding: 20px;
    margin: 0px;
}
    
.treattitle {
    padding: 0px;
    font-size: 20px;
}
    
.hero-text{
    padding: 0px;
}
    
    
.heroleft{
    padding: 0px;
}
    
.herosplit {
    padding: 40px;
    margin: 0px;
}
    
.split {
    display: block;
    margin: 0px;
    padding: 0px;
}
    
.left, .right {
    width: 60%;
    padding: 0px;
    margin-left: auto;
    margin-right: auto; 
}
    
.content {
    padding: 0px;
    margin: 0px;
}
    
.content p {
    width: 600px;
}
    
.toggle {
    width: 80%;
}
    
.toggle-item {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}
    
.checkmark-container {
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 40px;
    @media (max-width: 600px) { 
        width:100%;
	}
}
    
.docimg {
    border-radius: 60px;
    padding: 40px;
    display: block;
    width: 300px;
    margin-left: auto;
    margin-right: auto;
}
    
.googlelogo {
    width: 50%; 
    margin-left: auto;
    margin-right: auto;
}

/* Mobile styles for reviews */
@media (max-width: 1024px) {
    .reviews-section {
        flex-direction: column;
        width: 90%;
        padding: 40px 20px;
    }
    
    .googlelogo {
        width: 100%;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .googlelogo h1 {
        font-size: 35px;
        padding-top: 20px;
        text-align: center;
    }
    
    .googlelogo h4 {
        text-align: center;
    }
    
    .googlelogo img {
        width: 100%;
        max-width: 300px;
    }
    
    .dynamic-reviews {
        width: 100%;
        gap: 15px;
        padding: 15px;
    }
    
    .review-card {
        padding: 12px;
    }
    
    .review-profile-image {
        width: 50px !important;
        height: 50px !important;
    }
    
    .review-google-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .review-author-name {
        font-size: 15px;
    }
    
    .review-star {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .reviews-section {
        width: 95%;
        padding: 30px 15px;
    }
    
    .dynamic-reviews {
        padding: 10px;
        gap: 12px;
    }
    
    .review-card {
        padding: 10px;
    }
    
         .review-text {
         font-size: 13px;
     }
 }
    
.treatment {
    padding: 20px;
    margin-left: auto;
    margin-right: auto;
    width: 80%;
}
    
.seenin{
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0px 0px 40px 0px;
}
    
.seencontainer {
    width: 100%; 
    text-align: center;
    padding: 0px;
    margin: 0px;
}
}

/* Responsive styles for small screens (phones) */
@media (max-width: 480px) {
    .table-container {
        grid-template-columns: 1fr; 
        padding: 20px;
        gap: 0px;
}
    
    
.popup-content {
    position: relative;
    padding: 20px;
    border-radius: 5px;
    width: 800px;
}

.popup-content h3 {
    font-size: 15px !important;
    padding-top: 40px !important;
    padding-bottom: 10px !important;
}

.popup-content p {
    padding: 5px !important;
    font-size: 12px !important;
    font-weight: 500 !important;
    line-height: 180%;
} 
    
.heroleft{
    width: 100%;
    display: block;
}
    
.herosplit{
    display: block;
    padding: 20px;
}
    
.heroleft h1{
    font-size: 40px;
    text-align: center;
}
    
.heroleft h2{
    font-size: 25px;
    text-align: center;
}
    
.ctahero {
    display: block;
    width: 100%;
}
    
.treatment {
    width: 100%;
}
    
.seenin {
    color:white;
    text-transform: uppercase;
    padding: 8px ;
    width: 100%;
}
    
.seencontainer{
    margin-left: auto;
    width: 100%;
}

.seenin h1 {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    font-size: 25px;
    font-weight: 300;
    padding: 0px 0px 20px 0px;
}
    
.seenin img{
    padding: 0px;
    height: 34px;
}
    
.heropop {
    visibility: hidden;
    display: none;
}
    
.split {
    display: block;
    width: 100%;
    padding:30px;
}
    
.left, .right {
    width: 100%;
}
    
.left h1 {
    font-size: 35px
}
    
.googlelogo {
    width: 200px;
    margin-left: auto;
    margin-right: auto;
}

/* Old mobile-reviews styles removed - now using dynamic reviews */

.treattitle h2 {
    font-size: 18px;
    padding: 20px 0px 0px 0px;
}
    
.treattitle h2 {
    font-size: 16px;
    padding-left: 20px;
}
    
.checkmark-item {
    padding-bottom: 15px;
    line-height: 25px;
    font-size: 17px;
}
    
.checkmark-container {
    padding: 20px;
}
    
.docimg {
    border-radius: 20px;
    padding: 0px;
    width: 100%;
}
    
.inhero-image {
    height: auto;
    padding: 20px;
}
    
.inhero-trust{
    height: 600px;
}
    
.inhero-text{
    padding: 0px;
}
    
.hero-text h1{
    font-size: 40px
}
    
.content p {
    width: 300px;
}
    
.toggle {
    width: 80%;
}

.toggle-item {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
    
.toggle-item h4 {
    line-height: 30px;
}
    
.content {
    padding: 10px 10px 10px 10px;
    }
    
.hero-image {
    height: 225px;
    }
    
.subh {
	font-size: 28px;
	line-height: 47px;
}

}

/* Two-column layout for clinical specialties section */
.treatment-two-column-specialties {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.specialties-left-column {
  flex: 1;
  min-width: 300px;
}

.specialties-right-column {
  flex: 1;
  min-width: 300px;
}

.specialties-left-column .docimg {
  width: 100%;
  max-width: 400px;
  height: auto;
  margin-bottom: 20px;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .treatment-two-column-specialties {
    flex-direction: column;
    gap: 20px;
  }
  
  .specialties-left-column,
  .specialties-right-column {
    min-width: auto;
  }
  
  .specialties-left-column .docimg {
    max-width: 250px;
  }
}