.tmc-newsletter-wrapper {
	background-color: #f9f9f9;
	padding: 60px 20px;
	margin-top: 40px;
	border-top: 1px solid #eee;
	font-family: 'Roboto', sans-serif;
}

.tmc-newsletter-container {
	max-width: 800px;
	margin: 0 auto;
}

.tmc-newsletter-header {
	text-align: center;
	margin-bottom: 40px;
}

.tmc-newsletter-title {
	font-family: 'Roboto', sans-serif;
	font-weight: 600;
	color: #6EC1E4; /* Primary Color */
	font-size: 32px;
	margin-bottom: 10px;
}

.tmc-newsletter-subtitle {
	font-family: 'Roboto Slab', serif;
	font-size: 18px;
	color: #54595F; /* Secondary Color */
}

.tmc-newsletter-content {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	justify-content: center;
}

.tmc-newsletter-form-placeholder,
.tmc-newsletter-info {
	flex: 1;
	min-width: 300px;
}

.tmc-mock-form {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.tmc-mock-form input[type="email"] {
	padding: 12px;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-size: 16px;
}

.tmc-mock-form button {
	background-color: #E2725B; /* Terracotta Custom Color */
	color: white;
	border: none;
	padding: 12px 24px;
	font-size: 16px;
	font-weight: 500;
	border-radius: 4px;
	cursor: pointer;
	transition: background-color 0.3s;
}

.tmc-mock-form button:hover {
	background-color: #c95e48;
}

.tmc-info-title {
	font-weight: 600;
	margin-bottom: 15px;
	color: #333;
}

.tmc-info-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.tmc-info-list li {
	position: relative;
	padding-left: 25px;
	margin-bottom: 10px;
	color: #7A7A7A; /* Text Color */
	line-height: 1.5;
}

.tmc-info-list li:before {
	content: '•';
	color: #61CE70; /* Accent Color */
	font-weight: bold;
	position: absolute;
	left: 0;
}

@media (max-width: 768px) {
	.tmc-newsletter-content {
		flex-direction: column;
	}
}
