/* Eyebrow Threading Facts Page Styles */

/* Override default margin-top-bottom */
.mtb {
	margin-top: 10px !important;
	margin-bottom: 10px !important;
}

/* Threading Facts List */
.threading-facts {
	counter-reset: fact-counter;
	list-style: none;
	padding-left: 0;
	margin: 30px 0;
}

.threading-facts li {
	counter-increment: fact-counter;
	position: relative;
	padding: 10px 15px 10px 70px;
	margin-bottom: 15px;
	background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
	border-left: 4px solid #e91e63;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.threading-facts li:hover {
	box-shadow: 0 4px 12px rgba(233, 30, 99, 0.15);
	border-left-color: #c2185b;
}

.threading-facts li::before {
	content: counter(fact-counter);
	position: absolute;
	left: 10px;
	top: 50%;
	transform: translateY(-50%);
	width: 45px;
	height: 45px;
	background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
	color: white;
	font-size: 20px;
	font-weight: bold;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 3px 10px rgba(233, 30, 99, 0.3);
}

.threading-facts li strong {
	display: block;
	color: #c2185b;
	font-size: 18px;
	margin-bottom: 10px;
	font-weight: 600;
}

.threading-facts li p {
	margin: 0;
	color: #555;
	line-height: 1.7;
	font-size: 15px;
}

/* Section Styling */
.content-section {
	background: #ffffff;
	padding: 10px;
	margin: 10px 0;
	border-radius: 10px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.content-section h2 {
	color: #c2185b;
	font-size: 26px;
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 3px solid #e91e63;
	display: inline-block;
}

.content-section h3 {
	color: #e91e63;
	font-size: 22px;
	margin-bottom: 15px;
}

.content-section h4 {
	color: #c2185b;
	font-size: 20px;
	margin-top: 25px;
	margin-bottom: 15px;
}

.content-section ul {
	list-style: none;
	padding-left: 0;
}

.content-section ul li {
	padding: 10px 0 10px 30px;
	position: relative;
	line-height: 1.6;
	color: #555;
}

.content-section ul li::before {
	content: "✓";
	position: absolute;
	left: 0;
	color: #e91e63;
	font-weight: bold;
	font-size: 18px;
}

.content-section ol {
	padding-left: 20px;
	counter-reset: step-counter;
	list-style: none;
}

.content-section ol li {
	counter-increment: step-counter;
	padding: 12px 0 12px 35px;
	position: relative;
	line-height: 1.6;
	color: #555;
}

.content-section ol li::before {
	content: counter(step-counter);
	position: absolute;
	left: 0;
	width: 25px;
	height: 25px;
	background: #e91e63;
	color: white;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13px;
	font-weight: bold;
}

/* Comparison Box */
.comparison-box {
	background: linear-gradient(135deg, #fff5f8 0%, #ffffff 100%);
	padding: 12px;
	margin: 10px 0;
	border-left: 4px solid #e91e63;
	border-radius: 8px;
}

.comparison-box strong {
	color: #c2185b;
	font-size: 17px;
}

.comparison-box p {
	margin: 8px 0 0 0;
	color: #555;
	line-height: 1.6;
}

/* CTA Buttons */
.cta-buttons {
	margin-top: 30px;
	text-align: center;
}

.cta-buttons .btn {
	margin: 10px;
}

/* Responsive Hero Image */
#responsiveHeroAroma {
	background: url(../img/essential-oils2_sm.jpg) no-repeat center top !important;
	background-size: cover !important;
	margin-top: -1px;
	width: 100%;
	min-height: 350px;
}

@media (min-width: 576px) {
	#responsiveHeroAroma {
		background-image: url(../img/essential-oils2.jpg) !important;
		margin-top: 0;
	}
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
	.threading-facts li {
		padding: 10px 10px 10px 60px;
	}

	.threading-facts li::before {
		width: 40px;
		height: 40px;
		font-size: 18px;
		left: 10px;
	}

	.threading-facts li strong {
		font-size: 16px;
	}

	.threading-facts li p {
		font-size: 14px;
	}

	.content-section {
		padding: 12px 10px;
	}

	.content-section h2 {
		font-size: 22px;
	}

	.content-section h3 {
		font-size: 20px;
	}
}
