/* SECTION */
.h2v-register-section {
	padding: 0 20px 40px; /* remove top gap, keep bottom breathing room */
	background: transparent;
	border-top: 1px solid #e1e4e8;
}

.h2v-register-container {
	max-width: 1150px;
	margin: 0 auto;
	text-align: center;
}

/* TITLES */
.h2v-register-title {
	font-size: 36px; /* matches pricing section headers */
	font-weight: 700;
	color: #1d3557;
	margin-top: 0;
	margin-bottom: 14px;
}

.h2v-register-subtitle {
	font-size: 18px; /* matches pricing subtitle */
	color: #444;
	max-width: 720px;
	margin: 0 auto 22px;
	line-height: 1.5;
}

/* BUTTON ROW */
.h2v-button-row {
	margin: 14px 0 35px; /* consistent spacing above & below button */
	display: flex;
	justify-content: center;
}

/* NOTE */
.h2v-register-note {
	margin: 0 0 40px; /* visually separates CTA from cards */
	font-size: 15px;
	color: #666;
}

/* GRID */
.h2v-register-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 35px;
	margin-top: 0; /* spacing handled above */
	margin-bottom: 0;
}

/* CARD */
.h2v-register-card {
	background: #f7f9fb;
	border-radius: 14px;
	padding: 22px 28px;
	box-shadow: 0 4px 18px rgba(0,0,0,0.07);
	text-align: left;
	transition: all 0.25s ease;
}

.h2v-register-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 6px 28px rgba(0,0,0,0.12);
}

/* CARD TITLE */
.h2v-card-title {
	font-size: 22px; /* consistent with pricing card headers */
	font-weight: 700;
	color: #1d3557;
	margin-bottom: 14px;
}

/* LIST */
.h2v-register-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.h2v-register-list li {
	font-size: 16px;
	color: #333;
	padding: 8px 0;
	border-bottom: 1px solid #e8eaed;
	line-height: 1.45;
}

.h2v-register-list li:last-child {
	border-bottom: none;
}

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

/* Tablet and below */
@media (max-width: 768px) {
	.h2v-register-section {
		padding: 0 15px 30px;
	}

	.h2v-register-title {
		font-size: 28px;
		margin-bottom: 12px;
	}

	.h2v-register-subtitle {
		font-size: 16px;
		margin-bottom: 18px;
	}

	.h2v-button-row {
		margin: 12px 0 25px;
	}

	.h2v-register-note {
		font-size: 14px;
		margin-bottom: 30px;
	}

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

	.h2v-register-card {
		padding: 18px 20px;
	}

	.h2v-card-title {
		font-size: 20px;
	}

	.h2v-register-list li {
		font-size: 15px;
	}
}

/* Mobile phones */
@media (max-width: 600px) {
	.h2v-register-section {
		padding: 0 10px 25px;
	}

	.h2v-register-title {
		font-size: 24px;
		margin-bottom: 10px;
	}

	.h2v-register-subtitle {
		font-size: 15px;
		margin-bottom: 16px;
		line-height: 1.4;
	}

	.h2v-button-row {
		margin: 10px 0 20px;
		flex-direction: column;
		align-items: stretch;
	}

	.header-blue-btn {
		width: 100%; /* Full width on mobile */
		padding: 14px 20px;
		font-size: 16px;
	}

	.h2v-register-note {
		font-size: 13px;
		margin-bottom: 25px;
		line-height: 1.5;
	}

	.h2v-register-grid {
		gap: 20px;
	}

	.h2v-register-card {
		padding: 16px 18px;
		border-radius: 10px;
	}

	.h2v-card-title {
		font-size: 19px;
		margin-bottom: 12px;
	}

	.h2v-register-list li {
		font-size: 14px;
		padding: 7px 0;
	}
}

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

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

	.h2v-card-title {
		font-size: 18px;
	}

	.h2v-register-list li {
		font-size: 13px;
	}
}