.osiedle-hero-wrapper {
	background-color: #f7f9fa;
	border-radius: 4px;
	overflow: hidden;
	font-family: 'Montserrat', sans-serif;
	/* Assuming font */
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	max-width: 500px;
	/* Or responsive */
	margin: 0 auto;
}

.osiedle-hero-header {
	background-color: #145d31;
	color: #fff;
	display: flex;
	justify-content: space-between;
	padding: 12px 20px;
	font-weight: 600;
	font-size: 14px;
}

.osiedle-hero-image img {
	width: 100%;
	height: auto;
	display: block;
}

.osiedle-hero-content {
	padding: 24px;
	background-color: #f7f9fa;
	/* Ensure bg color */
}

.hero-title {
	color: #145d31;
	font-size: 24px;
	margin: 0 0 5px 0;
	font-weight: 700;
}

.hero-subtitle {
	color: #555;
	font-size: 16px;
	margin-bottom: 25px;
}

.hero-subtitle .highlight {
	color: #145d31;
	font-weight: 700;
}

.hero-features {
	list-style: none;
	padding: 0;
	margin: 0 0 25px 0;
}

.hero-features li {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
	color: #334e68;
	/* Dark blue/grayish text */
}

.hero-features .icon {
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
}

.hero-features .icon svg {
	width: 32px;
	height: 32px;
	stroke: #333;
	/* Dark outline */
	stroke-width: 1.5;
}

.hero-features .text {
	font-size: 16px;
	color: #3e4c59;
}

.hero-button {
	display: inline-block;
	background-color: #145d31;
	color: #fff;
	padding: 12px 24px;
	text-decoration: none;
	border-radius: 4px;
	font-weight: 600;
	transition: background-color 0.2s;
}

.hero-button:hover {
	background-color: #0e4222;
}