.angie-wtw-container {
	width: 100%;
}

.angie-wtw-inner {
	max-width: 1200px;
	margin: 0 auto;
}

/* Header */
.angie-wtw-header {
	text-align: center;
	margin-bottom: 60px;
}

.angie-wtw-title {
	font-size: 36px;
	font-weight: 600;
	margin-bottom: 20px;
	line-height: 1.2;
}

.angie-wtw-desc {
	font-size: 18px;
	line-height: 1.5;
	opacity: 0.9;
}

/* Features Grid */
.angie-features-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
	margin-bottom: 60px;
}

.angie-feature-item {
	display: flex;
	gap: 20px;
	align-items: flex-start;
}

.angie-feature-icon {
	flex-shrink: 0;
	font-size: 24px;
	margin-top: 4px;
}

.angie-feature-icon svg {
	width: 24px;
	height: 24px;
}

.angie-feature-title {
	font-size: 20px;
	font-weight: 600;
	margin-bottom: 10px;
}

.angie-feature-desc {
	font-size: 16px;
	line-height: 1.5;
	opacity: 0.9;
}

/* Case Studies Box */
.angie-cs-box {
	border-radius: 12px;
	padding: 40px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.angie-cs-title {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 24px;
	border-bottom: 1px solid rgba(0,0,0,0.1); /* Subtle divider */
	padding-bottom: 15px;
}

.angie-cs-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.angie-cs-item {
	position: relative;
	padding-left: 20px;
	margin-bottom: 15px;
	font-size: 16px;
	line-height: 1.6;
}

.angie-cs-item::before {
	content: '•';
	position: absolute;
	left: 0;
	top: 0;
	color: inherit;
	font-weight: bold;
}

.angie-cs-item:last-child {
	margin-bottom: 0;
}

.angie-cs-item strong {
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 3px;
}

/* Responsive */
@media (max-width: 768px) {
	.angie-features-grid {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.angie-wtw-title {
		font-size: 28px;
	}

	.angie-cs-box {
		padding: 30px;
	}
}
