body {
	font-family: Arial, sans-serif;
	background-color: #f0f4f8;
}
.hero {
	background: linear-gradient(90deg, #0066cc, #003399);
	color: white;
	padding: 30px 10px;
	text-align: center;
}
.navbar {
	background-color: #003399;
}
.navbar-brand {
	color: white;
	font-weight: bold;
}
.navbar-nav .nav-link {
	color: white;
}
.feature-icon {
	font-size: 2.5rem;
	color: #0066cc;
}
footer {
	background-color: #003399;
	color: white;
}
footer a {
	color: #66ccff;
	text-decoration: none;
}

.image-hover-effect img {
	transition: transform 0.3s ease;
}

.image-hover-effect img:hover {
	transform: scale(1.5);
}

.container .lead {
	font-size: 20px;
}

.version-header {
	font-size: 24px;
	font-weight: bold;
	color: #333;
	margin-bottom: 15px;
	padding: 10px;
	background-color: #f0f0f0;
	border-radius: 10px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.versionHistory {
	max-height: 300px;
	border-radius: 15px;
	border: 2px solid #ddd;
	background: #f9f9f9;
	padding: 20px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.versionHistory:hover {
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
	transform: translateY(-2px);
}

.versionHistory strong { }
.versionHistory .versionHistoryDay { }

.scrollable-content {
	max-height: 230px;
	overflow-y: auto;
	padding-right: 10px;
}

.scrollable-content::-webkit-scrollbar {
	width: 8px;
}

.scrollable-content::-webkit-scrollbar-thumb {
	background: #888;
	border-radius: 10px;
}

.scrollable-content::-webkit-scrollbar-thumb:hover {
	background: #555;
}

.cta {
	background-color: #f8f9fa;
	padding: 50px 0;
	text-align: center;
}

.cta h2 {
	font-size: 32px;
	font-weight: bold;
	margin-bottom: 15px;
}

.cta .lead {
	font-size: 20px;
	color: #6c757d;
	margin-bottom: 30px;
}

.cta .btn {
	border-radius: 5px;
	padding: 10px 30px;
	font-size: 18px;
}

.cta .btn:hover {
	background-color: #007bff;
	color: #fff;
}

.contact-form {
	background-color: #fff;
	padding: 30px;
	border-radius: 8px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	margin-top: 30px;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.contact-form h3 {
	font-size: 28px;
	margin-bottom: 20px;
	text-align: center;
}

.contact-form .form-label {
	font-size: 20px;
	font-weight: 500;
}

.contact-form .form-control {
	border-radius: 8px;
	padding: 12px;
	font-size: 20px;
	margin-bottom: 20px;
}

.contact-form .btn-primary {
	border-color: #007bff;
	font-size: 18px;
	padding: 10px 20px;
	border-radius: 15px;
}

.contact-form .btn-primary:hover {
}

.card {
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
	transform: scale(1.05);
	box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}

.recommendation ul li {
	font-size: 18px;
}

.features p {
	font-size: 18px;
}