* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: aktiv-grotesk, sans-serif;
	background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
	min-height: 100vh;
	padding: 20px;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	background: white;
	border-radius: 20px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
	overflow: hidden;
}

.top-logo-container {
	margin: 40px;
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
	justify-items: center;
	align-items: center;
}

.cheese-logo {
	width: 250px;
}

.gift-baskets-logo {
	width: 250px;
}

.business-section {
	padding: 40px;
}

.business-section:first-child {
	border-bottom: 2px solid #f0f0f0;
}

.content-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 30px;
	justify-items: center;
	align-items: center;
}

.image-container {
	border-radius: 15px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.image-container img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

/* .text-content {
	padding: 20px;
} */

.text-content h2 {
	font-family: fields, sans-serif;
	font-weight: 600;
	font-size: 2.5rem;
	color: #c43527;
	margin-bottom: 20px;
}

.text-content h3 {
	font-weight: 600;
	font-size: 1.8rem;
	color: #43683d;
	margin-bottom: 20px;
}

.text-content p {
	font-size: 1.2rem;
	color: #4e3d30;
	line-height: 1.6;
	margin-bottom: 10px;
}

.cta-button {
	margin-top: 20px;
	display: inline-block;
	padding: 15px 40px;
	background: #43683d;
	color: white;
	text-decoration: none;
	border-radius: 50px;
	font-weight: 600;
	font-size: 1.2rem;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.cta-button:hover {
	transform: translateY(-3px);
	box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.cheese-button {
	background: #c43527;
	box-shadow: 0 4px 15px rgba(196, 53, 39, 0.4);
}

.cheese-button:hover {
	box-shadow: 0 6px 20px rgba(196, 53, 39, 0.6);
}

.basket-button {
	background: #43683d;
	box-shadow: 0 4px 15px rgba(67, 104, 61, 0.4);
}

.basket-button:hover {
	box-shadow: 0 6px 20px rgba(67, 104, 61, 0.6);
}

@media (min-width: 768px) {
	.top-logo-container {
		grid-template-columns: 1fr 1fr;
	}
}

@media (min-width: 1100px) {
	.top-logo-container {
		grid-template-columns: 1fr 1fr;
	}

	.business-section {
		padding: 40px 20px;
	}

	.content-grid {
		margin: 0 40px;
		grid-template-columns: 1fr 1fr;
		gap: 50px;
	}
}
