body {
	margin: 0;
	font-family: Arial, sans-serif;
}

/* Wrapper for consistent outer padding and background styling */
.wrapper {
	width: 100%;
	padding: 0 15px;
	/* Adjust side padding as needed */
	background-color: #f8f9fa;
	/* Light gray background, optional */
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 20px;
	background-color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
	.container {
		padding: 15px;
	}
}

@media (max-width: 480px) {
	.container {
		padding: 10px;
	}
}

* {
	color: white;
}

.hero-section {
	text-align: center;
	padding: 5rem 14rem;

}

.demo-btn {
	background-color: transparent;
	color: white;
	padding: 0.3rem 0.5rem;
	border: 1px solid white;
	border-radius: 19px;
	font-size: 0.9rem;
	cursor: pointer;
	margin-top: 7rem;
}

.hero-section h1 {

	margin: 2rem 0;
	font-size: 56px;
	font-weight: bold;
	line-height: 1;

}

.hero-section .subtitle {
	margin-bottom: 2rem;
	font-size: 18px;
	padding: 0 3rem;
	text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {


	.hero-section h1 {
		font-size: 2rem;
	}

	.hero-section .subtitle {
		font-size: 1rem;
	}

	.demo-btn {
		padding: 0.6rem 1.5rem;
		font-size: 0.9rem;
	}


}

@media (max-width: 480px) {
	.hero-section h1 {
		font-size: 1.5rem;
	}

	.hero-section .subtitle {
		font-size: 0.9rem;
	}

	.demo-btn {
		font-size: 0.8rem;
		padding: 0.5rem 1.2rem;
	}
}

.button-container {
	margin-top: 1.5rem;
	/* Adjust as needed */
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	/* Spacing between buttons */
	justify-content: center;
	/* Center alignment */
	padding: 1rem 4rem;
}

.custom-button {
	display: flex;
	align-items: center;
	padding: 0.6rem 1rem;
	font-size: 0.875rem;
	font-weight: 600;
	background-color: rgba(0, 128, 255, 0.3);
	/* Light accent color */
	color: #f8f9fa;
	/* Light text color */
	border-radius: 9999px;
	/* Fully rounded */
	border: none;
	cursor: pointer;
	transition: background-color 0.3s, color 0.3s;
}

.custom-button:hover {
	background-color: #0080ff;
	/* Accent color */
	color: #e0f7fa;
	/* Hover text color */
}

.icon {
	margin-right: 0.5rem;
	flex-shrink: 0;
	fill: currentColor;
}

@media (max-width: 768px) {

	.hero-section {

		padding: 0 0 9rem;
	}

	.button-container {
		padding: 0;
	}
}