html, body {
	margin: 0;
	padding: 0;
	background: transparent;
	font-family: Montserrat, Arial, sans-serif;
}

/* =========================== */
/*        CONTACT SECTION       */
/* =========================== */

.h2v-contact-section {
	padding-top: 0;
	padding-bottom: 25px; /* keep bottom spacing if you want */
	border-top: none;     /* optional */
}

.h2v-contact-container {
	max-width: 1150px;
	margin: 0 auto;
	text-align: center;
	padding: 0 20px; /* Add horizontal padding for mobile */
}

.h2v-contact-title {
	font-size: 36px;
	font-weight: 700;
	color: #1d3557;
	margin-bottom: 10px;
}

.h2v-contact-subtitle {
	font-size: 18px;
	color: #444;
	margin-bottom: 50px;
	line-height: 1.4;
}

.h2v-contact-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 40px;
	align-items: start;
}

.h2v-contact-info {
	text-align: left;
	padding: 0 10px;
}

.h2v-contact-block {
	margin-bottom: 25px;
}

.h2v-contact-header {
	font-size: 20px;
	color: #1d3557;
	font-weight: 700;
	margin-bottom: 6px;
}

.h2v-contact-text {
	font-size: 16px;
	color: #333;
	line-height: 1.45;
}

.h2v-contact-text a {
	color: #457b9d;
	text-decoration: none;
	font-weight: 600;
}

.h2v-contact-text a:hover {
	text-decoration: underline;
}

/* FORM WRAPPER */
.h2v-contact-form-wrapper {
	background: white;
	padding: 35px 35px;
	border-radius: 14px;
	box-shadow: 0 4px 18px rgba(0,0,0,0.07);
	text-align: left;
}

/* FORM */
.h2v-contact-form {
	display: flex;
	flex-direction: column;
	gap: 18px;
}

/* FORM ROW */
.h2v-form-row {
	display: flex;
	align-items: center;
	gap: 14px;
}

.h2v-form-label {
	font-size: 15px;
	font-weight: 600;
	color: #1d3557;
	min-width: 70px;
	white-space: nowrap;
}

.h2v-form-label.centered {
	text-align: center;
	width: 100%;
	margin-bottom: -6px;
}

.h2v-form-input,
.h2v-form-textarea {
	flex: 1;
	padding: 10px 14px;
	border: 1px solid #d0d4d8;
	border-radius: 8px;
	font-size: 16px;
	color: #333;
	outline: none;
	font-family: inherit;
	box-sizing: border-box;
}

.h2v-form-input:focus,
.h2v-form-textarea:focus {
	border-color: #457b9d;
	box-shadow: 0 0 0 2px rgba(69,123,157,0.15);
}

.h2v-form-textarea {
	min-height: 80px;
	resize: vertical;
}

/* BUTTON */
.h2v-contact-btn {
	background: #457b9d;
	color: white;
	padding: 14px 26px;
	border-radius: 8px;
	font-size: 17px;
	font-weight: 600;
	text-decoration: none;
	border: none;
	cursor: pointer;
	transition: background 0.25s ease;
	margin-top: 10px;
}

.h2v-contact-btn:hover {
	background: #1d3557;
}

/* =========================== */
/*      RESPONSIVE STYLES       */
/* =========================== */

/* Tablet and below - force single column */
@media (max-width: 768px) {
	.h2v-contact-container {
		padding: 0 15px;
	}

	.h2v-contact-title {
		font-size: 28px;
	}

	.h2v-contact-subtitle {
		font-size: 16px;
		margin-bottom: 35px;
	}

	.h2v-contact-grid {
		grid-template-columns: 1fr; /* Force single column */
		gap: 30px;
	}

	.h2v-contact-info {
		padding: 0;
		text-align: center; /* Center on mobile */
	}

	.h2v-contact-block {
		margin-bottom: 20px;
	}

	.h2v-contact-form-wrapper {
		padding: 25px 20px;
	}
}

/* Mobile phones - stack form labels */
@media (max-width: 600px) {
	.h2v-contact-container {
		padding: 0 10px;
	}

	.h2v-contact-title {
		font-size: 24px;
		margin-bottom: 8px;
	}

	.h2v-contact-subtitle {
		font-size: 15px;
		margin-bottom: 30px;
	}

	.h2v-contact-header {
		font-size: 18px;
	}

	.h2v-contact-text {
		font-size: 15px;
	}

	.h2v-contact-form-wrapper {
		padding: 20px 15px;
		border-radius: 10px;
	}

	.h2v-form-row {
		flex-direction: column;
		align-items: stretch;
		gap: 8px;
	}

	.h2v-form-label {
		min-width: unset;
		text-align: left;
	}

	.h2v-form-input,
	.h2v-form-textarea {
		width: 100%;
		font-size: 16px; /* Prevents iOS zoom */
	}

	.h2v-form-textarea {
		min-height: 100px;
	}

	.h2v-contact-btn {
		width: 100%;
		padding: 12px 20px;
		font-size: 16px;
	}
}

/* Extra small phones */
@media (max-width: 375px) {
	.h2v-contact-title {
		font-size: 22px;
	}

	.h2v-contact-subtitle {
		font-size: 14px;
	}

	.h2v-contact-form-wrapper {
		padding: 15px 12px;
	}
}