.angie-nav-wrapper-d4b29c88 {
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	position: relative;
	overflow: hidden;
	padding: 20px 0;
}

.angie-nav-title-container-d4b29c88 {
	flex: 0 0 30%;
	padding-right: 20px;
	z-index: 2;
}

.angie-nav-title-d4b29c88 {
	margin: 0;
	color: #333;
}

.angie-nav-circle-container-d4b29c88 {
	flex: 1;
	display: flex;
	justify-content: flex-end;
	position: relative;
}

.angie-nav-circle-d4b29c88 {
	background-color: #f0f0f0;
	border-radius: 200px 0 0 200px;
	padding: 40px 20px 40px 60px;
	min-width: 50%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	/* Push outside container to make a true half circle effect on the right edge */
	margin-right: -20px; 
}

.angie-nav-links-d4b29c88 {
	display: flex;
	flex-direction: column;
	gap: 15px;
	position: relative;
	z-index: 2;
}

.angie-nav-item-d4b29c88 {
	display: flex;
	align-items: center;
	position: relative;
}

.angie-nav-line-d4b29c88 {
	height: 2px;
	background-color: #ccc;
	width: 40px;
	margin-right: 15px;
	transition: width 0.3s ease;
}

.angie-nav-item-d4b29c88:hover .angie-nav-line-d4b29c88 {
	width: 60px;
	background-color: #666;
}

.angie-nav-link-d4b29c88 {
	text-decoration: none;
	color: #333;
	font-weight: 500;
	transition: color 0.3s ease;
	display: block;
}

.angie-nav-link-d4b29c88:hover {
	color: #000;
}

/* Responsive */
@media (max-width: 768px) {
	.angie-nav-wrapper-d4b29c88 {
		flex-direction: column;
		align-items: flex-start;
	}
	
	.angie-nav-title-container-d4b29c88 {
		flex: 1;
		width: 100%;
		margin-bottom: 20px;
	}
	
	.angie-nav-circle-container-d4b29c88 {
		width: 100%;
		justify-content: center;
	}
	
	.angie-nav-circle-d4b29c88 {
		border-radius: 20px;
		margin-right: 0;
		padding: 30px;
		width: 100%;
	}
}