@import '../components/header/header.css';
@import '../components/container/base.css';
@import '../components/footer/footer.css';
@import '../components/modal/modal.css';

body {
	background-color: #ffffff;
	margin: 0;
	padding: 0;
}

.page_content {
	padding-top: 71px;
	padding-bottom: 100px;
	background-color: #ffffff;
	width: 100%;
}

.contacts_section {
	padding-top: 80px;
	text-align: center;
}

.contacts_title {
	font-size: 32px;
	font-weight: 700;
	color: #e87a79;
	text-transform: uppercase;
	margin: 0 0 40px 0;
	letter-spacing: 1px;
}

.contacts_image_wrapper {
	width: 100%;
	max-width: 100%;
	margin: 0 auto 50px auto;
	box-sizing: border-box;
}

.contacts_img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}

.contacts_cta_wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
}

.cta_btn {
	display: inline-block;
	background: #e87a79;
	color: #ffffff;
	text-decoration: none;
	padding: 18px 60px;
	border-radius: 35px;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.8px;
	transition:
		transform 0.3s ease,
		background-color 0.3s ease;
}

.cta_btn:hover {
	background: #d45251;
	transform: translateY(-2px);
}

@media (max-width: 768px) {
	.contacts_section {
		padding-top: 60px;
	}

	.contacts_title {
		font-size: 26px;
		margin-bottom: 30px;
	}

	.contacts_image_wrapper {
		margin-bottom: 40px;
	}

	.contacts_cta_wrapper {
		padding: 0 15px;
	}

	.cta_btn {
		padding: 16px 40px;
		font-size: 13px;
	}
}
