* {
	font-family: Inter, sans-serif;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	background-color: #FEF2F2;
}

main {
	display: flex;
	flex-direction: column;
}

/* Hero */
.hero {
	min-height: 380px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 70px 20px;
	background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
	position: relative;
	overflow: hidden;
}

.hero-inner {
	position: relative;
	text-align: center;
	color: #fff;
	max-width: 860px;
}

.hero-inner h1 {
	font-size: 36px;
	font-weight: 700;
	margin-bottom: 10px;
}

.hero-inner p {
	font-size: 13px;
	opacity: 0.9;
	margin-bottom: 16px;
}

.hero-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #DC2626;
	color: #fff;
	text-decoration: none;
	border-radius: 999px;
	padding: 10px 16px;
	font-size: 13px;
	font-weight: 600;
}

/* Sections */
.section {
	padding: 34px 20px;
}

.section-light {
	background: #fff;
}

.section-pink {
	background: #FEF2F2;
}

.section-title {
	text-align: center;
	color: #DC2626;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.2px;
	margin-bottom: 18px;
	position: relative;
}

.section-title::after {
	content: "";
	display: block;
	width: 44px;
	height: 3px;
	border-radius: 3px;
	background: #DC2626;
	margin: 10px auto 0;
}

/* Feature cards */
.features {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 18px;
	max-width: 980px;
	margin: 0 auto;
}

.feature-card {
	background: #FFF;
	border-radius: 10px;
	border: 1px solid rgba(220, 38, 38, 0.2);
	padding: 16px 14px;
	text-align: center;
}



.feature-card h3 {
	color: #DC2626;
	font-size: 13px;
	font-weight: 700;
	margin-bottom: 6px;
}

.feature-card p {
	color: #737373;
	font-size: 11px;
	line-height: 1.4;
}

/* About */
.about {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 24px;
	max-width: 980px;
	margin: 0 auto;
	align-items: center;
}

.about-image {
	background: #fff;
	border-radius: 10px;
	padding: 10px;
}

.image-placeholder {
	width: 100%;
	min-height: 260px;
	border-radius: 8px;
	background: #FEF2F2;
	border: 1px dashed rgba(220, 38, 38, 0.35);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #737373;
	font-size: 13px;
	font-weight: 600;
}


.about-text p {
	color: #737373;
	font-size: 12px;
	line-height: 1.6;
	margin-bottom: 10px;
}

.about-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #DC2626;
	color: #fff;
	text-decoration: none;
	border-radius: 999px;
	padding: 10px 16px;
	font-size: 13px;
	font-weight: 600;
}

/* Footer */
footer {
	background-color: #7B1515;
	color: #fff;
	padding: 14px 0 0 0;
}

.footer-content {
	display: flex;
	justify-content: center;
	gap: 60px;
	padding: 0 40px 12px;
	flex-wrap: wrap;
}

.footer-col h3 {
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1px;
	margin: 0 0 6px 0;
}

.footer-col p {
	font-size: 12px;
	font-weight: 400;
	margin: 0 0 3px 0;
	color: rgba(255, 255, 255, 0.85);
	display: flex;
	align-items: center;
	gap: 5px;
}

.footer-bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	text-align: center;
	padding: 8px;
}

.footer-bottom p {
	margin: 2px 0;
	font-size: 11px;
	color: rgba(255, 255, 255, 0.7);
}

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

	.about {
		grid-template-columns: 1fr;
	}

	.hero-inner h1 {
		font-size: 28px;
	}
}
