.angie-service-container {
	padding: 80px 20px;
	color: #fff;
	width: 100%; /* Default full width */
	box-sizing: border-box;
}

.angie-main-title {
	text-align: center;
	font-size: 36px;
	font-weight: 700;
	color: #ffffff; /* Default white */
	margin-bottom: 50px;
	text-transform: uppercase;
}

.angie-service-row {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	max-width: 100%; /* Ensure row takes full container width */
	margin: 0 auto;
	width: 100%;
}

.angie-service-item {
	flex: 1;
	min-width: 300px;
	padding: 0 40px;
	position: relative;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
}

/* Vertical Divider Logic */
.angie-service-item:not(:last-child)::after {
	content: '';
	position: absolute;
	right: 0;
	top: 0;
	height: 100%;
	width: 1px;
	background-color: rgba(255, 255, 255, 0.1);
}

.angie-service-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 10px;
}

.angie-service-number {
	font-size: 60px;
	font-weight: 700;
	line-height: 1;
}

.angie-service-icon {
	font-size: 32px;
	color: #fff; /* Icon is white/outline in image */
	border: 1px solid rgba(255,255,255,0.3);
	padding: 8px;
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
}
.angie-service-icon svg {
	fill: #fff;
	width: 24px;
	height: 24px;
}
.angie-service-icon i {
	color: #fff;
}

.angie-service-divider {
	height: 4px;
	width: 60px;
	margin-bottom: 30px;
}

.angie-service-title {
	font-size: 28px;
	font-weight: 700;
	color: #fff;
	margin: 0 0 20px 0;
	text-transform: uppercase;
	line-height: 1.2;
}

.angie-service-desc {
	font-size: 15px;
	line-height: 1.6;
	color: #cccccc;
	margin-bottom: 30px;
	flex-grow: 1;
}

.angie-service-link, .angie-service-link-static {
	display: inline-flex;
	font-size: 24px;
	color: #fff;
	transition: transform 0.3s ease;
	margin-top: auto;
	cursor: pointer;
}

.angie-service-link:hover {
	transform: translateX(10px);
	color: inherit;
}

/* Responsive */
@media (max-width: 991px) {
	.angie-service-row {
		flex-direction: column;
	}
	.angie-service-item {
		padding: 40px 0;
		border-right: none !important;
	}
	.angie-service-item:not(:last-child)::after {
		display: none; /* Remove vertical divider on mobile */
	}
	.angie-service-item:not(:last-child) {
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
	}
}
