.prg-home-section-wrap .phc-wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	align-items: stretch;
	font-family: 'Poppins', system-ui, sans-serif;
}

.phc-left {
	flex: 1 1 400px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.phc-left h2.phc-title {
	margin: 0 0 20px;
}
.phc-left h2.phc-title i {
	color: var(--primary-color);
}

.phc-intro {
	font-size: 1rem;
	line-height: 1.6;
	color: #5a6b7b;
	margin: 0 0 30px;
}
.phc-intro a {
	color: var(--primary-color);
	text-decoration: underline;
}

.phc-steps-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--secondary-color);
	margin: 0 0 20px;
	display: flex;
	align-items: center;
	gap: 10px;
}
.phc-steps-title i {
	color: var(--primary-color);
}

ul.phc-steps {
	list-style: none;
	padding: 0;
	margin: 0;
}
ul.phc-steps li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 16px;
	font-size: 0.95rem;
	line-height: 1.5;
	color: #5a6b7b;
}
ul.phc-steps li i {
	color: var(--primary-color);
	font-size: 1.1rem;
	margin-top: 3px;
	width: 18px;
	text-align: center;
}
ul.phc-steps li strong {
	color: #2c3e50;
	font-weight: 600;
}

.phc-right {
	flex: 1 1 400px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.phc-card {
	background: linear-gradient(180deg, #fdfeff, #f6fafd);
	border: 1px solid #dbe4ec;
	border-radius: 12px;
	padding: 30px;
	width: 100%;
	max-width: 500px;
	box-shadow: 0 4px 20px rgba(16, 42, 67, 0.05);
	margin-bottom: 24px;
}

.phc-card h3 {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--secondary-color);
	margin: 0 0 10px;
}

.phc-card .phc-card-intro {
	font-size: 0.9rem;
	color: #7d92a5;
	margin: 0 0 24px;
}

.phc-field {
	margin-bottom: 18px;
}
.phc-field label {
	display: block;
	font-size: 0.85rem;
	font-weight: 700;
	color: #33485c;
	margin-bottom: 8px;
}
.phc-input-group {
	display: flex;
	gap: 10px;
}
.phc-input-group input,
.phc-input-group select {
	flex: 1;
	border: 1px solid #cfd8e3;
	border-radius: 6px;
	padding: 10px 14px;
	font-size: 0.95rem;
	color: #2c3e50;
	font-family: inherit;
	background: #fff;
	outline: none;
	transition: border-color 0.15s;
}
.phc-input-group input:focus,
.phc-input-group select:focus {
	border-color: #3498db;
}
.phc-input-group select.phc-unit-select {
	flex: 0 0 80px;
	cursor: pointer;
}

.phc-calc-btn {
	display: block;
	width: 100%;
	background: var(--primary-color);
	color: #fff;
	border: none;
	border-radius: 6px;
	padding: 14px;
	font-size: 1.05rem;
	font-weight: 700;
	cursor: pointer;
	transition: background-color 0.2s;
	font-family: inherit;
}
.phc-calc-btn:hover {
	background: var(--color-primary-dark, #0d968b);
}

.phc-link-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--primary-color);
	border: 1px solid var(--primary-color);
	border-radius: 30px;
	padding: 10px 24px;
	font-size: 0.95rem;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.2s;
}
.phc-link-btn:hover {
	background: var(--primary-color);
	color: #fff;
}
.phc-link-btn-solid {
	background: var(--primary-color);
	color: #fff;
}
.phc-link-btn-solid:hover {
	background: #117866;
	color: #fff;
}

.phc-results-box {
	margin-top: 20px;
	padding: 15px;
	background: #fff;
	border: 1px solid #dbe4ec;
	border-radius: 6px;
	box-shadow: 0 2px 10px rgba(16, 42, 67, 0.03);
}

.phc-results-box p {
	margin: 0 0 10px;
	font-size: 0.95rem;
	color: #2c3e50;
}
.phc-results-box p:last-child {
	margin-bottom: 0;
}
