/* Wrapper */
.angie-measure-wrapper {
	width: 100%;
	margin: 0 auto;
	box-sizing: border-box;
}

.angie-measure-container {
	max-width: 1100px;
	margin: 0 auto;
	width: 100%;
}

/* Heading */
.angie-measure-heading {
	text-align: center;
	padding: 0;
	margin: 0 0 50px 0;
	line-height: 1.3;
}

/* Content Layout */
.angie-measure-content {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}

.angie-measure-col-left {
	flex: 1;
	padding-right: 40px;
	min-width: 300px;
}

.angie-measure-col-right {
	flex: 1;
	display: flex;
	justify-content: center;
	min-width: 300px;
}

/* Steps */
.angie-measure-step {
	display: flex;
	align-items: flex-start;
	margin-bottom: 25px;
}

.angie-measure-step:last-child {
	margin-bottom: 0;
}

.angie-step-icon {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	margin-right: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
}

.angie-step-text {
	padding-top: 5px; /* Align with icon center */
}

/* Image */
.angie-measure-img-wrap {
	display: block;
	max-width: 100%;
	text-align: center;
}

.angie-measure-img-wrap img {
	max-width: 100%;
	height: auto;
	border-radius: 8px; /* Optional slight rounding */
}

/* Responsive */
@media (max-width: 767px) {
	.angie-measure-content {
		flex-direction: column-reverse; /* Image on top usually better on mobile, or keep standard */
	}

	.angie-measure-col-left {
		padding-right: 0;
		margin-top: 40px;
		width: 100%;
	}

	.angie-measure-col-right {
		width: 100%;
	}
	
	.angie-measure-heading {
		font-size: 28px !important;
		margin-bottom: 30px !important;
	}
}
