/* Styling for Contact Page */
.contact-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 30px;
	height: 100%;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.contact-card:hover {
	transform: translateY(-2px);
	border-color: #cbd5e1;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.contact-card h4 {
	font-size: 15px;
	font-weight: 800;
	color: #1e293b;
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 2px solid #f1f5f9;
	position: relative;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.contact-card h4::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 45px;
	height: 2px;
	background: #0b4c68;
}

.contact-card .contact-title {
	font-size: 14px;
	font-weight: 700;
	color: #0f172a;
	margin-bottom: 18px;
	line-height: 1.5;
}

.contact-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.contact-list li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	font-size: 13.5px;
	line-height: 1.6;
	color: #475569;
	margin-bottom: 14px;
}

.contact-list li:last-child {
	margin-bottom: 0;
}

.contact-list li i {
	color: #0b4c68;
	font-size: 16px;
	margin-top: 3px;
	flex-shrink: 0;
}

.contact-list li strong {
	color: #1e293b;
}

.contact-list li a {
	color: #0b4c68;
	text-decoration: underline;
}

.contact-list li a:hover {
	color: #07374b;
}
