.contact-container {
	padding: 120px 0 60px;
	background-color: #f8f9fa;
	margin-top: 0;
}

.contact-heading {
	font-size: 2.5rem;
	color: #012970;
	font-weight: 700;
	margin-bottom: 1.5rem;
	text-align: center;
}

.contact-subheading {
	font-size: 1.2rem;
	color: #444;
	text-align: center;
	margin-bottom: 3rem;
}

.contact-info-box {
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
	padding: 30px;
	margin-bottom: 30px;
}

.contact-info-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 2rem;
}

.contact-info-item:last-child {
	margin-bottom: 0;
}

.contact-info-icon {
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background-color: #f0f3ff;
	margin-right: 20px;
	flex-shrink: 0;
}

.contact-info-icon.blue {
	color: #4154f1;
}

.contact-info-icon.green {
	color: #0dc268;
}

.contact-info-content h3 {
	font-size: 1.2rem;
	font-weight: 600;
	color: #012970;
	margin-bottom: 5px;
}

.contact-info-content p {
	color: #444;
	margin-bottom: 0;
	font-size: 1rem;
}

.contact-form {
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
	padding: 30px;
}

.contact-form h3 {
	font-size: 1.5rem;
	color: #012970;
	font-weight: 600;
	margin-bottom: 1.5rem;
}

.form-control {
	height: 50px;
	border-radius: 8px;
	border: 1px solid #e0e0e0;
	padding: 10px 15px;
	font-size: 1rem;
	margin-bottom: 1rem;
}

.form-control:focus {
	border-color: #4154f1;
	box-shadow: 0 0 0 0.2rem rgba(65, 84, 241, 0.25);
}

textarea.form-control {
	height: auto;
	min-height: 150px;
}

.submit-btn {
	background-color: #4154f1;
	color: #fff;
	border: none;
	border-radius: 8px;
	padding: 12px 30px;
	font-size: 1rem;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
}

.submit-btn:hover {
	background-color: #3546d4;
	transform: translateY(-2px);
}

.g-recaptcha {
	margin-bottom: 1.5rem;
}

.sent-message, .error-message {
	padding: 15px;
	border-radius: 8px;
	margin-bottom: 20px;
}

.sent-message {
	background-color: #e8f6e8;
	color: #0dc268;
	border: 1px solid #c3e6cb;
}

.error-message {
	background-color: #f8d7da;
	color: #dc3545;
	border: 1px solid #f5c6cb;
} 