.newsletter {
	padding: 50px 20px;
	background-color: #005A9E;
	color: #ffffff;
	border-radius: 8px;
	margin: 60px 20px;
}

.newsletter-wrapper {
	display: grid;
	grid-template-columns: 1fr 1.4fr;
	gap: 60px;
	align-items: center;
}

.newsletter-text h2 {
	font-size: 38px;
	margin-bottom: 18px;
	font-weight: 700;
	line-height: 1.2;
}

.newsletter-text p {
	font-size: 16px;
	line-height: 1.6;
	opacity: 0.95;
}

.newsletter-form-container {
	display: flex;
	justify-content: flex-end;
}

.newsletter-form {
	width: 100%;
	max-width: 650px;
}

.form-inline {
	display: flex;
	gap: 15px;
	margin-bottom: 12px;
}

.newsletter-form input[type="email"] {
	flex: 1;
	padding: 16px 22px;
	border: 1.5px solid rgba(255, 255, 255, 0.5);
	border-radius: 6px;
	font-size: 15px;
	background-color: transparent;
	color: white;
	transition: all 0.3s ease;
}

.newsletter-form input[type="email"]::placeholder {
	color: rgba(255, 255, 255, 0.65);
}

.newsletter-form input[type="email"]:focus {
	outline: none;
	border-color: rgba(255, 255, 255, 0.9);
	background-color: rgba(255, 255, 255, 0.05);
}

.btn-newsletter {
	background-color: white;
	color: #0B5FA5;
	border: none;
	padding: 16px 36px;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.5px;
	cursor: pointer;
	transition: all 0.3s ease;
	white-space: nowrap;
}

.btn-newsletter:hover {
	background-color: #f5f5f5;
	transform: translateY(-2px);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.newsletter-checkbox {
	display: flex;
	align-items: center;
	gap: 10px;
	padding-left: 2px;
}

.newsletter-checkbox input[type="checkbox"] {
	width: 16px;
	height: 16px;
	cursor: pointer;
	accent-color: white;
	flex-shrink: 0;
}

.newsletter-checkbox label {
	font-size: 14px;
	color: white;
	cursor: pointer;
	line-height: 1.4;
}

.newsletter-checkbox a {
	color: white;
	text-decoration: underline;
	transition: opacity 0.3s ease;
}

.newsletter-checkbox a:hover {
	opacity: 0.8;
}

@media (max-width: 1024px) {
	.newsletter-wrapper {
		gap: 40px;
		grid-template-columns: 1fr 1.2fr;
	}
}

@media (max-width: 768px) {
	.newsletter {
		padding: 40px 0;
	}
	
	.newsletter-wrapper {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	
	.newsletter-text h2 {
		font-size: 28px;
	}
	
	.newsletter-form-container {
		justify-content: flex-start;
	}
	
	.form-inline {
		flex-direction: column;
		gap: 12px;
	}
	
	.btn-newsletter {
		width: 100%;
		padding: 16px;
	}
}

