
	
	
	.container {
		max-width: 1200px;
		margin: 0 auto;
		padding: 20px;
	}
	
	
	
	
	.hero-section {
		background: white;
		border-radius: 20px;
		padding: 40px;
		margin-bottom: 30px;
		box-shadow: 0 20px 40px rgba(0,0,0,0.1);
		text-align: unset !important;
		position: relative;
		overflow: hidden;
	}
	
	
	
	.hero-title {
		font-size: 3em;
		color: #18162b;
		margin-bottom: 10px;
		text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
	}
	
	.hero-subtitle {
		font-size: 1.5em;
		color: #E3B077;
		margin-bottom: 20px;
		font-weight: bold;
	}
	
	.main-content {
		background: white;
		border-radius: 20px;
		padding: 40px;
		margin-bottom: 30px;
		
	}
	
	.treatment-grid {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
		gap: 30px;
		margin-bottom: 40px;
	}
	
	.treatment-card {
		background: linear-gradient(135deg, #E3B077 0%, #ffddb6 100%);
		color: #18162b !important;
		padding: 30px;
		border-radius: 15px;
		box-shadow: 0 15px 30px rgba(0,0,0,0.2);
		transition: transform 0.3s ease, box-shadow 0.3s ease;
	}
	.treatment-card p {
		color: #18162b !important;
	}
	ul {
		margin: 0px;
		padding: 10px;
	}
	ul li {
		color: #18162b;
		list-style: none;
	}
	.treatment-card:hover {
		transform: translateY(-10px);
		box-shadow: 0 25px 50px rgba(0,0,0,0.3);
	}
	
	.treatment-card h3 {
		font-size: 1.5em;
		margin-bottom: 15px;
		
		color: #18162b;
	}
	
	.device-section {
		color: white !important;
		border-radius: 15px;
		margin: 80px 0;
	}
	.device-section h2 {
		color: #18162b;
	}
	.device-section h3 {
		color: #18162b;
	}
	.device-section p {
		color: #E3B077 !important;
	}
	.device-card {
		background: rgba(255,255,255,0.1);
		backdrop-filter: blur(10px);
		padding: 25px;
		border-radius: 10px;
		margin-bottom: 20px;
		border: 1px solid rgba(255,255,255,0.2);
	}
	
	.doctor-info {
		background: linear-gradient(135deg, #E3B077 0%, #b78750 100%);
		color: white;
		padding: 40px;
		border-radius: 20px;
		margin-top: 30px;
		
	}
	
	.btn {
		display: inline-block;
		padding: 15px 30px;
		
		color: white;
		text-decoration: none;
		border-radius: 25px;
		font-weight: bold;
		transition: all 0.3s ease;
		margin-top: 20px;
	}
	
	.btn:hover {
		transform: translateY(-3px);
		box-shadow: 0 10px 20px rgba(0,0,0,0.2);
	}
	
	.ar-text {
		font-size: 1.2em;
		color: #E3B077;
		font-weight: bold;
		margin: 10px 0;
	}
	
	@media (max-width: 768px) {
		.container {
			padding: 10px;
		}
		
		.hero-title {
			font-size: 2em;
		}
		
		.main-content, .hero-section {
			padding: 20px;
		}
	}
