.am-hero-section {
	position: relative;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	overflow: hidden;
	padding: 40px 20px;
	box-sizing: border-box;
}

.am-hero-overlay {
	position: absolute;
	inset: 0;
}

.am-hero-content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	max-width: 800px;
	width: 100%;
}

.am-hero-content.am-align-left {
	text-align: left;
	margin-right: auto;
}

.am-hero-content.am-align-center {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

.am-hero-content.am-align-right {
	text-align: right;
	margin-left: auto;
}

.am-hero-title {
	margin: 0 0 15px;
	line-height: 1.2;
}

.am-hero-subtitle {
	line-height: 1.5;
	margin: 0 0 20px;
}

.am-hero-buttons {
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
}

.am-hero-content.am-align-center .am-hero-buttons {
	justify-content: center;
}

.am-hero-content.am-align-right .am-hero-buttons {
	justify-content: flex-end;
}

.am-hero-button {
	display: inline-block;
	padding: 14px 32px;
	border-radius: 30px;
	border: 1px solid currentColor;
	text-decoration: none;
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.am-hero-button:hover {
	opacity: 0.8;
	transform: translateY(-2px);
}

@media (max-width: 767px) {
	.am-hero-section {
		padding: 25px 16px;
	}
}
