/* styles.css */

body{
	scroll-behavior: smooth;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 20px 20px 0px;
}
#page{
	position: relative;
	overflow: hidden;
}
#page:before{
    content: "";
    position: absolute;
    top: 500px;
    right: -40px;
    background: url(/wp-content/uploads/2025/01/page-bkg.svg) center top / 100% no-repeat;
    z-index: -1;
    width: 600px;
    height: 1850px;
}

#page > div.page-wrapper.services > div > div{
	padding-left: 0px;
    margin-left: 0px;
}

/* 	Title of the page */
#page > div.page-wrapper.services > div > div > h2 {
    font-size: 34px;
    font-weight: bold;
    color: #1D2755;
}

.section {
    margin-bottom: 60px;
}

.section h2 {
    font-size: 22px;
    color: #2D2E2E;
    border-bottom: 1px solid #ddd;
    padding-bottom: 8px;
    margin-bottom: 15px;
}

.treatments {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-left: 20px;
}

.treatments a {
    font-size: 18px;
    color: #2474DC;
    text-decoration: none;
    display: inline-block;
    padding: 5px 8px;
    border-radius: 4px;
    position: relative;
    transition: background-color 0.2s ease;
    margin-right: 10px;
}

.treatments a::before {
    content: "";
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 13px;
    height: 13px;
    background: url('data:image/svg+xml,<svg width="15" height="14" viewBox="0 0 15 14" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 13.5L7 7L0.999999 0.5" stroke="%23C8C8C8"/><path d="M8 13.5L14 7L8 0.5" stroke="%23C8C8C8"/></svg>');
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: 100%;
}

.treatments a:hover {
    color: #1D2755;
}

@media (max-width: 800px){
	.treatments {
		display:block;
	    margin-left: 20px;
	}
	
	/* 	Title of the page */
	#page > div.page-wrapper.services > div > div > h2{
		font-size:24px;
	}
	
	.container{
		width: inherit !important;
		padding: 0px !important;
	}
	
	#spinal > h2{
		margin-top:60px;
	}
	
	.section h2 {
    	font-size: 20px;
	}
	#page:before{
		display:none;
	}
}





