* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	font-family: 'Helvetica Neue', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
	padding: 20px;
	background-color: #f5f5f5;
	justify-content: center;
	align-items: center;
	margin-top: 2%;
	margin-bottom: 2%;
	margin-left: 5%;
	margin-right: 5%;
	text-align: center;
	color: #333;
}

.logo-container {
	display: flex;
	gap: 20px;
	align-items: flex-start;
}

.logo {
	width: 80px;
	height: 80px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: white;
	font-weight: bold;
}

.company-name {
	font-size: 28px;
	font-weight: 100;
	color: #747474;
	padding-top: 7px;
	line-height: 1;
}

h1 {
	text-align: center;
	margin-top: 50px;
	margin-bottom: 20px;
	color: #333;
}

h2 {
	text-align: center;
	margin-bottom: 20px;
	/* color: #593d66; */
	color: #547bf7;
}

h3 {
	text-align: center;
	margin-top: 100px;
	margin-bottom: 20px;
	color: #593d66;
}

.footer {
	text-align: center;
	font-size: x-small;
	font-style: italic;
	margin-bottom: 10px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 100px;
}

/* fancy items */

.item-container {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	justify-content: center;
}

ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: contents;
}

.item {
	background-color: white;
	border-radius: 15px;
	overflow: hidden;
	width: 220px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hitem {
	display: flex;
	width: 690px;
}

.hitem img.item-image {
	width: 150px;
}

.hitem .item-content {
	text-align: left;
}

.item:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.item-image {
	width: 100%;
	height: 150px;
	object-fit: cover;
}

.item-content {
	padding: 15px;
}

.item-title {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 5px;
	color: #333;
}

.item-subtitle {
	font-size: 14px;
	color: #666;
}

/* Responsive design */
@media (max-width: 800px) {
	.item-container {
		gap: 15px;
	}

	.item {
		width: calc(50% - 15px);
	}

	.hitem {
		width: 100%;
	}
}

@media (max-width: 600px) {
	.item {
		width: 100%;
	}

	.item-image {
		height: 250px;
	}
}