.contact_page_container {
	margin-bottom: 60px;
}

.contact_page_wrapper {
	max-width: 1100px;
	width: 95vw;
	margin: 0 auto;
}

.contact_page_heading_img img {
	width: 100%;
	height: 300px;
	object-fit: cover;
	border-radius: 5px;
	filter: brightness(0.8);
}

.contact_page_heading_text {
	margin-bottom: 30px;
}

.contact_page_heading_text p {
	font-size: 30px;
}

.contact_page_flex_wrapper {
	max-width: 1100px;
	width: 95vw;
	margin: 0 auto;
}

.contact_page_heading_flex_content {
	display: flex;
	justify-content: space-between;
	gap: 20px;
}

.contact_page_flex01 {
	width: 60%;
	background-color: rgb(248, 248, 248);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
	padding:10px;
	box-sizing:border-box;
	border-radius:5px;
}

.contact_page_flex02 {
	width: 40%;
}
.wpcf7 {
	width: 100%;
}
.wpcf7-form {
	width: 100%;
}
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form select,
.wpcf7-form textarea {
	width: 100%;
	box-sizing: border-box;
	padding: 12px;
	margin-bottom: 20px;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-size: 16px;
}

.wpcf7-form textarea {
	min-height: 150px;
	resize: vertical;
}

.wpcf7-submit {
	width: 100%;
	padding: 14px;
	background-color: #0073aa;
	color: #fff;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	font-size: 16px;
	transition: background-color 0.3s ease;
}

.wpcf7-submit:hover {
	background-color: #005f8d;
}
@media (max-width: 1024px) {
	.contact_page_flex01,
	.contact_page_flex02 {
		width: 100%;
	}

	.contact_page_heading_flex_content {
		flex-direction: column;
	}
}
@media (max-width: 768px) {
	.contact_page_wrapper,
	.contact_page_flex_wrapper {
		width: 90vw;
	}

	.contact_page_heading_text p {
		font-size: 24px;
	}

	.contact_page_heading_img img {
		height: 200px;
	}
}
