.page-header {
	text-align: center;
	padding: 2rem 0 0 0;
	border-bottom: 1px solid #eee;
	margin-bottom: 3rem;
}

.page-header h1 {
	font-size: 2.5rem;
	color: var(--secondary-color);
	margin-bottom: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
}

.page-subtitle {
	font-size: 1.25rem;
	color: var(--text-light);
	margin: 0;
}

.contact-form-section h2 {
	color: var(--secondary-color);
	margin-bottom: 2rem;
	border-bottom: 2px solid var(--primary-color);
	padding-bottom: 0.5rem;
}

.contact-form {
	background: white;
	padding: 2rem;
	border-radius: 12px;
	box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.contact-info-section {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.info-card {
	background: var(--surface);
	padding: 1.5rem;
	border-radius: 12px;
	border-left: 4px solid var(--primary-color);
}

.info-card h3 {
	color: var(--secondary-color);
	margin-bottom: 1.5rem;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.contact-methods {
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
}

.contact-method {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
}

.contact-method i {
	color: var(--primary-color);
	font-size: 1.25rem;
	margin-top: 0.25rem;
	min-width: 20px;
}

.contact-method strong {
	color: var(--secondary-color);
	display: block;
	margin-bottom: 0.25rem;
}

.contact-method p {
	margin: 0;
	color: var(--text-light);
}

.social-links-inline {
	display: flex;
	gap: 1rem;
	margin-top: 1.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid #eee;
}

.social-link {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	padding: 0.75rem 1rem;
	background: white;
	border-radius: 8px;
	text-decoration: none;
	color: var(--text-dark);
	transition: all 0.3s;
	border: 1px solid #e9ecef;
	flex: 1;
	justify-content: center;
}

.social-link:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.social-link.facebook:hover {
	color: #1877f2;
	border-color: #1877f2;
}

.social-link.instagram:hover {
	color: #e4405f;
	border-color: #e4405f;
}

@media (max-width: 768px) {
	.page-header h1 {
		font-size: 2rem;
		flex-direction: column;
		gap: 0.5rem;
	}

	.contact-form {
		padding: 1.5rem;
	}

	.social-links-inline {
		flex-direction: column;
	}
}
