.dm-service-detail {
	padding: 70px 0 60px;
	background: #f4fbff;
}

.dm-detail-panel {
	background: #ffffff;
	border-radius: 28px;
	box-shadow: 0 28px 65px rgba(7, 90, 88, 0.12);
}

.dm-detail-hero img {
	width: 100%;
	height: auto;
	object-fit: cover;
	display: block;
}

.dm-detail-hero h1 {
	font-size: clamp(2.5rem, 2.8vw, 3.4rem);
	margin: 26px 0 14px;
	color: #0b4c4a;
}

.dm-detail-intro {
	font-size: 1.05rem;
	line-height: 1.8;
	color: #264a53;
	margin-bottom: 10px;
}

.dm-detail-content {
	padding: 0 32px 36px;
}

.dm-detail-content h1{
	font-size: 35px;
    margin-top: 20px;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 40px;
    letter-spacing: 1px;
}

.dm-detail-content p,
.dm-detail-content li {
	font-size: 1rem;
	line-height: 1.85;
	color: #4f6f7f;
	letter-spacing: 1px;
	margin-bottom: 10px;
}

.dm-detail-content ul {
	margin: 10px 0 0 0;
	padding-left: 20px;
}

.dm-detail-content li {
	margin-bottom: 14px;
}

.dm-detail-highlight {
	margin: 10px 0 20px;
	padding: 28px 24px;
	border-radius: 20px;
	background: linear-gradient(180deg, rgba(69, 184, 226, 0.14) 0%, rgba(234, 246, 251, 0.95) 100%);
}

.dm-detail-highlight h2 {
	font-size: 1.35rem;
	color: #075a58;
	margin-bottom: 16px;
	letter-spacing: 1px;
}

.dm-detail-highlight p {
	margin: 0;
	color: #2f5d66;
}

.dm-service-aside {
	position: sticky;
	top: 95px;
}

.dm-aside-card,
.dm-aside-cta {
	background: #ffffff;
	border-radius: 24px;
	box-shadow: 0 20px 45px rgba(7, 90, 88, 0.08);
	padding: 28px;
	margin-bottom: 24px;
}

.dm-appointment-card h3 {
	margin-bottom: 22px;
}

.dm-form-field {
	margin-bottom: 15px;
}

.dm-form-field label {
	display: block;
	margin-bottom: 6px;
	color: #264a53;
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 1px;
}

.dm-form-field input,
.dm-form-field select,
.dm-form-field textarea {
	width: 100%;
	border: 1px solid #d6e6ec;
	border-radius: 8px;
	padding: 10px 12px;
	background: #ffffff;
	color: #264a53;
	font: inherit;
	letter-spacing: 1px;
	outline: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.dm-form-field textarea {
	resize: vertical;
}

.dm-form-field label span {
	font-weight: 400;
	color: #78909c;
}

.dm-file-help {
	display: block;
	margin-top: 5px;
	color: #78909c;
	font-size: 0.75rem;
}

.dm-prescription-preview {
	display: none;
	margin-top: 10px;
	padding: 8px;
	border: 1px solid #d6e6ec;
	border-radius: 8px;
	background: #f7fcfd;
	color: #264a53;
	font-size: 0.8rem;
}

.dm-prescription-preview.is-visible {
	display: block;
}

.dm-prescription-preview img {
	display: block;
	width: 100%;
	max-height: 150px;
	object-fit: contain;
	margin-bottom: 6px;
	border-radius: 5px;
}

.dm-form-field input:focus,
.dm-form-field select:focus,
.dm-form-field textarea:focus {
	border-color: #45b8e2;
	box-shadow: 0 0 0 3px rgba(69, 184, 226, 0.14);
}

.dm-field-error {
	display: none;
	margin-top: 5px;
	color: #c0392b;
	font-size: 0.78rem;
	letter-spacing: 1px;
	line-height: 1.35;
}

.dm-form-field.has-error .dm-field-error {
	display: block;
}

.dm-form-field.has-error input,
.dm-form-field.has-error select,
.dm-form-field.has-error textarea {
	border-color: #c0392b;
}

.dm-captcha-row {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 7px;
}

.dm-captcha-question {
	grid-column: 1 / -1;
	padding: 9px 12px;
	border-radius: 8px;
	background: #eef8fb;
	color: #075a58;
	font-weight: 700;
	letter-spacing: 1px;
	text-align: center;
}

.dm-captcha-row input {
	grid-column: 1;
}

.dm-captcha-refresh {
	grid-column: 2;
	grid-row: 2;
	border: 0;
	border-radius: 8px;
	padding: 0 13px;
	background: #075a58;
	color: #ffffff;
	font-size: 1.2rem;
	cursor: pointer;
}

.dm-appointment-submit {
	width: 100%;
	border: 0;
	border-radius: 8px;
	padding: 12px 16px;
	background: linear-gradient(92deg, #45b8e2 0%, #075a58 100%);
	color: #ffffff;
	font-weight: 500;
	letter-spacing: 1px;
	cursor: pointer;
}

.dm-aside-card h3 {
	font-size: 20px;
	font-weight: 600;
	color: #075a58;
	margin-bottom: 18px;
	letter-spacing: 1px;
}

.dm-service-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.dm-service-list li {
	margin-bottom: 10px;
}

.dm-service-list a {
	display: block;
	padding: 12px 18px;
	border-radius: 16px;
	color: #075a58;
	text-decoration: none;
	letter-spacing: 1px;
	font-weight: 500;
	transition: background 0.25s ease, color 0.25s ease;
}

.dm-service-list a:hover,
.dm-service-list a.active {
	background: #45b8e2;
	color: #ffffff;
}

.dm-aside-cta h4 {
	font-size: 1.2rem;
	font-weight: 800;
	margin-bottom: 14px;
	color: #052f52;
	letter-spacing: 1px;
}

.dm-aside-cta p {
	margin: 0 0 22px;
	color: #40596d;
	line-height: 1.8;
	letter-spacing: 1px;
}

.dm-aside-cta {
	position: relative;
	overflow: hidden;
	background: linear-gradient(180deg, #ffffff 0%, #eef6ff 100%);
	border: 1px solid rgba(69, 184, 226, 0.2);
}

.dm-aside-cta::before {
	content: "";
	position: absolute;
	top: -16px;
	right: -16px;
	width: 88px;
	height: 88px;
	background: rgba(69, 184, 226, 0.16);
	border-radius: 50%;
}

.dm-cta-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 26px;
	letter-spacing: 1px;
	border-radius: 999px;
	background: linear-gradient(92deg, #45b8e2 0%, #075a58 100%);
	color: #ffffff;
	font-weight: 600;
	text-decoration: none;
	box-shadow: 0 18px 32px rgba(7, 90, 88, 0.18);
	transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.dm-cta-note {
	display: block;
	margin-top: 14px;
	color: #075a58;
	font-size: 0.95rem;
	line-height: 1.7;
	letter-spacing: 1px;
}

.dm-cta-button:hover {
	transform: translateY(-3px);
	filter: brightness(1.05);
	box-shadow: 0 22px 42px rgba(7, 90, 88, 0.22);
}

.dm-faq-section {
	margin-top: 32px;
}

.dm-faq-section h2 {
	font-size: 1.45rem;
	color: #075a58;
	margin-bottom: 22px;
	letter-spacing: 1px;
}

.dm-faq-item {
	border-top: 1px solid #dceef6;
}

.dm-faq-item:first-child {
	border-top: none;
}

.dm-faq-question {
	width: 100%;
	background: transparent;
	border: none;
	outline: none;
	padding: 20px 0;
	font-size: 18px;
	font-weight: 600;
	color: #075a58;
	text-align: left;
	display: flex;
	letter-spacing: 1px;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
}

.dm-faq-icon i {
	font-size: 0.95rem;
	color: #45b8e2;
}

.dm-faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.35s ease;
	color: #4f6f7f;
	font-size: 0.98rem;
	line-height: 1.75;
	padding-bottom: 0;
}

.dm-faq-item.active .dm-faq-answer {
	padding-bottom: 18px;
}

@media (max-width: 991px) {
	.dm-service-aside {
		position: static;
		top: auto;
	}
}

@media (max-width: 767px) {
	.dm-detail-content {
		padding: 0 18px 24px;
	}

	.dm-aside-card,
	.dm-aside-cta {
		padding: 22px;
		margin-top: 30px;
	}

	.dm-detail-hero h1 {
		font-size: 2.2rem;
	}
}
