.hero-5411-container {
	display: flex;
	flex-direction: column;
	padding: 60px 20px;
	width: 100%;
}

.hero-5411-headline {
	margin-bottom: 20px;
}

.hero-5411-subheadline {
	margin-bottom: 30px;
}

.hero-5411-buttons {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

.hero-5411-btn {
	display: inline-block;
	padding: 15px 30px;
	text-decoration: none;
	font-weight: 600;
	transition: all 0.3s ease;
	cursor: pointer;
	border: 2px solid transparent;
}

/* Matching Default styles for both buttons */
.hero-5411-btn-1,
.hero-5411-btn-2 {
	background-color: #FF5757 !important; /* Primary global color */
	color: #ffffff !important;
}

.hero-5411-btn-1:hover,
.hero-5411-btn-2:hover {
	opacity: 0.9;
}

@media (max-width: 767px) {
	.hero-5411-buttons {
		flex-direction: column;
	}
	
	.hero-5411-btn {
		width: 100%;
		text-align: center;
	}
}