.angie-hero-container {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	width: 100%;
}

.angie-hero-eyebrow {
	font-family: 'Instrument Sans', sans-serif;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	display: block;
	margin-bottom: 10px;
}

.angie-hero-title {
	font-family: 'Fraunces', serif;
	font-size: 44px;
	font-weight: 700;
	line-height: 1.1;
	margin: 0 0 16px 0;
}

.angie-hero-desc {
	font-family: 'Instrument Sans', sans-serif;
	font-size: 15px;
	line-height: 1.6;
	margin-bottom: 32px;
}

.angie-hero-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.angie-hero-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 24px;
	font-family: 'Instrument Sans', sans-serif;
	font-size: 13px;
	font-weight: 600;
	border-radius: 2px;
	text-decoration: none;
	transition: all 0.3s ease;
	border: 1px solid transparent;
}

.angie-btn-primary {
	background-color: #12a08e;
	color: #ffffff;
	border-color: #12a08e;
}

.angie-btn-primary:hover {
	opacity: 0.9;
}

.angie-btn-secondary {
	background-color: transparent;
	color: #ffffff;
	border-color: rgba(255, 255, 255, 0.4);
}

.angie-btn-secondary:hover {
	background-color: rgba(255, 255, 255, 0.1);
	border-color: #ffffff;
}

.angie-btn-icon {
	margin-left: 8px;
	display: flex;
	align-items: center;
}

/* Tablet adjustments */
@media (max-width: 1024px) {
	.angie-hero-title {
		font-size: 38px;
	}
	
	.angie-hero-desc {
		font-size: 14px;
	}
}

/* Mobile adjustments */
@media (max-width: 767px) {
	.angie-hero-title {
		font-size: 32px;
	}
	
	.angie-hero-buttons {
		flex-direction: column;
		width: 100%;
	}
	
	.angie-hero-btn {
		width: 100%;
	}
}
