.services-page {
	background:#fff;
	color:#1a1a1a;
}

.services-page * {
	box-sizing:border-box;
}

.services-page h1,
.services-page h2,
.services-page h3 {
	color:#000;
	font-family:"Outfit","Open Sans",Arial,sans-serif;
}

/* HERO */

.services-hero {
	padding:72px 20px;
	background:linear-gradient(135deg,#fdfbfb 0%,#ebedee 100%);
	text-align:center;
}

.services-hero-inner {
	max-width:980px;
	margin:0 auto;
}

.services-hero h1 {
	font-size:44px;
	font-weight:700;
	line-height:1.2;
	margin:0 0 18px;
}

.services-hero p {
	font-size:20px;
	line-height:1.6;
	max-width:820px;
	margin:0 auto;
}

/* MAIN */

.services-main {
	padding:85px 20px;
}

.services-section-inner {
	max-width:1140px;
	margin:0 auto;
}

.services-main h2 {
	text-align:center;
	font-size:34px;
	font-weight:700;
	margin:0 0 70px;
}

/* CARTES */

.services-grid {
	display:grid;
	grid-template-columns:repeat(3,1fr);
	gap:70px 28px;
}

.services-card {
	position:relative;
	display:block;
	background:#ffffff;
	border:1px solid #e9ecef;
	border-radius:14px;
	padding:58px 20px 24px;
	min-height:245px;
	text-align:center;
	text-decoration:none !important;
	color:#1a1a1a !important;
	box-shadow:0 4px 12px rgba(0,0,0,0.04);
	transition:all 0.25s ease;
}

.services-card:hover {
	transform:translateY(-4px);
	box-shadow:0 8px 20px rgba(0,0,0,0.08);
	border-color:#ed615a;
	color:#1a1a1a !important;
}

.services-icon {
	position:absolute;
	top:-38px;
	left:50%;
	transform:translateX(-50%);
	width:78px;
	height:78px;
	background:#ed615a;
	border-radius:50%;
	display:flex;
	align-items:center;
	justify-content:center;
	box-shadow:0 6px 14px rgba(237,97,90,0.25);
}

.services-icon img {
	max-width:78px;
	max-height:78px;
	display:block;
}

.services-card h3 {
	font-size:22px;
	line-height:1.25;
	margin:0 0 12px;
	font-weight:700;
}

.services-card p {
	color:#555;
	font-size:15px;
	line-height:1.55;
	margin:0 0 14px;
}

.services-card span {
	color:#ed615a;
	font-size:14px;
	font-weight:700;
}

/* CTA */

.services-cta {
	padding:80px 20px;
	text-align:center;
	background:#f8f9fa;
}

.services-cta h2 {
	margin:0 0 15px;
	font-size:38px;
	font-weight:700;
}

.services-cta p {
	max-width:740px;
	margin:0 auto 30px;
	font-size:18px;
	line-height:1.7;
	color:#555;
}

.services-cta-buttons {
	display:flex;
	justify-content:center;
	gap:12px;
	flex-wrap:wrap;
}

.services-btn {
	display:inline-block;
	padding:12px 26px;
	border-radius:8px;
	background:#ed615a;
	color:#fff !important;
	border:1px solid #ed615a;
	font-weight:700;
	text-decoration:none !important;
	transition:all 0.2s ease;
}

.services-btn:hover {
	background:#d44d47;
	border-color:#d44d47;
	color:#fff !important;
}

.services-btn-outline {
	background:#ffffff;
	color:#ed615a !important;
}

.services-btn-outline:hover {
	background:#ed615a;
	color:#fff !important;
}

/* RESPONSIVE */

@media (max-width:991px) {
	.services-hero h1 {
		font-size:36px;
	}

	.services-grid {
		grid-template-columns:repeat(2,1fr);
	}

	.services-main h2,
	.services-cta h2 {
		font-size:30px;
	}
}

@media (max-width:600px) {
	.services-grid {
		grid-template-columns:1fr;
	}

	.services-main {
		padding:70px 20px;
	}
}