.contact-section {
	padding: 60px 0;
	background-color: #f9f9f9;
}

.contact-row {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
}

.form-container {
	width: 100%;
	margin: 0;
	padding: 30px;
	background-color: white;
	border-radius: 10px;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
	box-sizing: border-box;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.form-container h2 {
	text-align: center;
	margin-bottom: 25px;
	color: #333;
	font-size: 2em;
}

.form-container label {
	display: block;
	margin-top: 15px;
	font-weight: 600;
	color: #555;
	font-size: 0.95em;
}

.form-container input,
.form-container textarea {
	width: 100%;
	padding: 12px;
	margin-top: 8px;
	border: 1px solid #ddd;
	border-radius: 5px;
	box-sizing: border-box;
	font-size: 1em;
	transition: border-color 0.3s ease;
}

.form-container input:focus,
.form-container textarea:focus {
	outline: none;
	border-color: #d60000;
	box-shadow: 0 0 5px rgba(214, 0, 0, 0.2);
}

.form-container .g-recaptcha {
	margin-top: 20px;
	display: flex;
	justify-content: center;
}

.form-container .btn_red {
	margin-top: 25px;
	width: 100%;
	padding: 14px;
	background-color: #d60000;
	color: white;
	border: none;
	border-radius: 5px;
	font-size: 1.1em;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.3s ease, transform 0.2s ease;
}

.form-container .btn_red:hover {
	background-color: #a40000;
	transform: translateY(-2px);
}

.form-msg {
	margin-top: 20px;
	text-align: center;
	font-weight: bold;
	color: green;
	font-size: 1.1em;
}

.info-column {
	display: flex;
	align-items: center;
}

.info-block {
	width: 100%;
	background-color: #ffffff;
	color: #333;
	padding: 30px;
	border-radius: 10px;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
	box-sizing: border-box;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.info-block h2 {
	text-align: center;
	margin-bottom: 25px;
	font-size: 2em;
	color: #111;
}

.info-description {
	line-height: 1.7;
	margin-bottom: 25px;
	font-size: 1.1em;
	color: #444;
}

.info-hr {
	border: 0;
	height: 1px;
	background-color: #ddd;
	margin: 25px 0;
}

.contact-details .contact-item {
	margin-bottom: 20px;
	font-size: 1.1em;
	line-height: 1.6;
}

.contact-details .contact-item:last-child {
	margin-bottom: 0;
}

.contact-details .contact-item strong {
	display: block;
	margin-bottom: 5px;
	font-weight: 700;
	font-size: 1.05em;
	color: #000;
}

.contact-details .contact-item i {
	margin-right: 10px;
	font-size: 1.3em;
	color: #d60000;
	vertical-align: middle;
}

.contact-details .contact-item a {
	color: #333;
	text-decoration: none;
	font-weight: 500;
	transition: color 0.3s ease;
}

.contact-details .contact-item a:hover {
	color: #a40000;
}

/* Responsive */
@media (max-width: 767px) {
	.contact-row {
		flex-direction: column;
	}

	.form-column,
	.info-column {
		width: 100%;
	}

	.form-container,
	.info-block {
		margin: 0;
		padding: 25px;
	}

	.contact-section {
		padding: 40px 0;
	}

	.form-container h2,
	.info-block h2 {
		font-size: 1.8em;
	}
}
