/* ========================================
   CONTACT US PAGE STYLES
   ======================================== */
/* Styles for Contact Us page matching reference design */

/* Reset article wrapper to not interfere */
.page-template .page-content {
	margin: 0 !important;
	padding: 0 !important;
}

/* Base container for contact us page - reset any conflicting styles */
.page-template .page-content .contact-us-content,
body.page-template .page-content .contact-us-content,
.page-content .contact-us-content,
.contact-us-content {
	width: 100% !important;
	max-width: min(90%, 1200px) !important;
	margin: 0 auto !important;
	padding: clamp(40px, 5vw, 80px) clamp(20px, 4vw, 60px) !important;
	box-sizing: border-box;
	font-family: "Nunito", sans-serif;
	background-color: #ffffff;
	color: #000000;
}

/* Light blue box container for each section - creates the frame effect */
.contact-us-content .contact-section-box {
	background-color: #C7EDFF !important;
	border-radius: 75px !important;
	padding: clamp(28px, 3.5vw, 40px) 0 !important;
	margin: 0 0 clamp(32px, 5vw, 48px) 0 !important;
	box-sizing: border-box;
	width: 100% !important;
	overflow: hidden;
}

.contact-us-content .contact-section-box:last-child {
	margin-bottom: 0 !important;
}

/* White content area inside the light blue box - inset with rounded corners */
.contact-us-content .contact-section-box .contact-section-content {
	background-color: #ffffff !important;
	border-radius: 0 !important;
	padding: clamp(36px, 4.5vw, 56px) clamp(28px, 3.5vw, 44px) !important;
	margin: 0 !important;
	box-sizing: border-box;
	width: 100% !important;
}

/* Section Headings (h2) - left-aligned, large, bold */
.contact-us-content .contact-section-content h2,
.contact-us-content .contact-section-heading {
	font-family: "Nunito", sans-serif !important;
	font-size: clamp(28px, 3.5vw, 40px) !important;
	font-weight: 700 !important;
	color: #000000 !important;
	text-align: left !important;
	margin: 0 0 clamp(28px, 3.5vw, 40px) 0 !important;
	padding: 0 !important;
	line-height: 1.2 !important;
	letter-spacing: 0;
	text-transform: none;
}

/* Paragraphs - left-aligned, regular weight */
.contact-us-content .contact-section-content p {
	font-family: "Nunito", sans-serif !important;
	font-size: clamp(16px, 2vw, 18px) !important;
	font-weight: 400 !important;
	color: #000000 !important;
	text-align: left !important;
	margin: 0 0 clamp(18px, 2.2vw, 24px) 0 !important;
	padding: 0 !important;
	line-height: 1.7 !important;
	letter-spacing: 0;
}

.contact-us-content p:last-child {
	margin-bottom: 0;
}

/* Bold text within paragraphs (like "We're here to help you make emotions unforgettable.") */
.contact-us-content .contact-section-content p strong,
.contact-us-content .contact-section-content p b {
	font-weight: 700 !important;
	font-size: clamp(17px, 2.2vw, 20px) !important;
}

/* Contact details styling - ensure icons and text align properly */
.contact-us-content .contact-details p {
	margin-bottom: clamp(12px, 1.5vw, 16px) !important;
}

.contact-us-content .contact-details p:last-child {
	margin-bottom: 0 !important;
}

/* Links in contact details */
.contact-us-content a {
	color: #000000 !important;
	text-decoration: none !important;
}

.contact-us-content a:hover {
	text-decoration: underline !important;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
	.page-template .page-content .contact-us-content,
	body.page-template .page-content .contact-us-content,
	.page-content .contact-us-content,
	.contact-us-content {
		padding: clamp(32px, 5vw, 48px) clamp(16px, 4vw, 24px) !important;
	}

	.contact-us-content .contact-section-box {
		padding: clamp(24px, 3.5vw, 32px) 0 !important;
		margin-bottom: clamp(24px, 4vw, 36px) !important;
		border-radius: 75px !important;
	}

	.contact-us-content .contact-section-box .contact-section-content {
		padding: clamp(28px, 4.5vw, 40px) clamp(24px, 3.5vw, 36px) !important;
	}

	.contact-us-content .contact-section-content h2,
	.contact-us-content .contact-section-heading {
		font-size: clamp(24px, 5vw, 32px) !important;
		margin-bottom: clamp(24px, 3.5vw, 32px) !important;
	}

	.contact-us-content .contact-section-content p {
		font-size: clamp(15px, 4vw, 17px) !important;
		line-height: 1.6 !important;
		margin-bottom: clamp(16px, 2.2vw, 20px) !important;
	}

	.contact-us-content .contact-section-content p strong,
	.contact-us-content .contact-section-content p b {
		font-size: clamp(16px, 4.2vw, 19px) !important;
	}
}

