.home-subscribe-container {
	margin-top: 10px;
	padding-left: 100px;
	padding-right: 100px;
	background: #f5ebe6;
	color: #3a2e2a;
}

.home-subscribe-section {
	margin: auto;
	padding: 60px 0px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 40px;
	background: #f5ebe6;
	color: #3a2e2a;
}

/* LEFT */
.home-subscribe-stats {
	flex: 1;
}

.home-subscribe-stats small {
	letter-spacing: 2px;
	color: #b4978a;
	font-weight: 600;
}

.home-subscribe-stats-row {
	display: flex;
	gap: 40px;
	margin-top: 20px;
	align-items: center;
}

.home-subscribe-stat {
	text-align: center;
}

.home-subscribe-stat h2 {
	margin: 0;
	font-size: 42px;
	color: #a67c6b;
}

.home-subscribe-stat p {
	margin: 5px 0 0;
	font-size: 14px;
	color: #7a6a63;
}

.home-subscribe-divider {
	width: 1px;
	height: 60px;
	background: #d8c7bf;
}

/* RIGHT */
.home-subscribe-newsletter {
	flex: 1;
}

.home-subscribe-newsletter h2 {
	margin: 0;
	font-size: 28px;
	font-weight: 700;
}

.home-subscribe-newsletter p {
	margin: 15px 0 25px;
	color: #7a6a63;
	line-height: 1.6;
}

.home-subscribe-form {
	display: flex;
	gap: 10px;
	margin-bottom: 15px;
}

.home-subscribe-form input {
	flex: 1;
	padding: 14px;
	border-radius: 8px;
	border: 1px solid #ddd;
	font-size: 14px;
}

.home-subscribe-form button {
	padding: 14px 20px;
	border: none;
	border-radius: 8px;
	background: #a67c6b;
	color: white;
	font-weight: 600;
	cursor: pointer;
}

.home-subscribe-form button:hover {
	background: #8e6656;
}

.home-subscribe-actions {
	display: flex;
	gap: 10px;
}

.home-subscribe-actions button {
	padding: 10px 16px;
	border-radius: 8px;
	border: 1px solid #d8c7bf;
	background: transparent;
	cursor: pointer;
	color: #5c4a43;
}

.home-subscribe-actions button:hover {
	background: #eee;
}

/* Responsive */
@media (max-width: 768px) {
	.home-subscribe-section {
		flex-direction: column;
		text-align: center;
	}

	.home-subscribe-stats-row {
		justify-content: center;
	}

	.home-subscribe-form {
		flex-direction: column;
	}
	
	.home-subscribe-stat h2 {
		font-size: 22px;
	}

	.home-subscribe-stat p {
		font-size: 14px;
	}
	
	.home-subscribe-newsletter h2 {
		font-size: 22px;
	}
}