/* Contact Us Section Styles */
.contact-us-section {
	background: white;
	min-height: 100vh;
	display: flex;
	align-items: center;
	margin-bottom: 0;
	padding-bottom: 0;
	overflow-x: hidden;
}

.contact-us-title {
	font-size: 48px;
	font-weight: 400;
	color: #d9ab77;
	margin-bottom: 20px;
	font-style: italic;
	letter-spacing: 2px;
}

.contact-us-description {
	font-size: 16px;
	color: #666;
	margin-bottom: 40px;
	line-height: 1.6;
}

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.contact-item {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.contact-item-header {
	display: flex;
	align-items: center;
	gap: 12px;
	font-weight: 600;
	color: #333;
	font-size: 16px;
}

.contact-icon {
	width: 20px;
	height: 20px;
	filter: grayscale(100%);
	opacity: 0.7;
}

.contact-details {
	color: #666;
	font-size: 14px;
	line-height: 1.5;
	margin-left: 32px;
}

.contact-item a {
	color: #d9ab77;
	text-decoration: none;
	transition: color 0.3s ease;
}

.contact-item a:hover {
	color: #333;
}

/* Responsive image handling */
.contact-image {
	width: 727px;
	height: 785px;
	max-width: 727px;
	object-fit: cover;
	margin-left: 0;
}

/* Responsive layout for small screens */
@media (max-width: 768px) {
	.contact-us-title {
		font-size: 36px;
	}

	/* Stack content vertically on smaller screens */
	.contact-us-section .row {
		flex-direction: column;
		align-items: center;
	}

	/* Maintain aspect ratio of image */
	.contact-image {
		max-width: 100%; /* Ensure image does not exceed container width */
		height: auto; /* Auto adjust height to maintain aspect ratio */
		width: 100%; /* Take full width of the container */
		aspect-ratio: 727 / 785; /* Maintain original aspect ratio of the image */
	}

	.contact-info {
		align-items: center;
	}

	/* Adjust the contact item text for smaller screens */
	.contact-item-header {
		font-size: 14px;
	}

	.contact-details {
		font-size: 12px;
	}
}
