body {
	font-family: 'Montserrat', sans-serif;
	background-color: #FAF7F2;
	color: #4A4A4A;
	line-height: 1.6;
}

.img-width {
	max-width: 15%;
}

.width-97_5 {
	max-width: 97.5%;
}

.width-96_3 {
	max-width: 96.3%;
}

.title-font {
	font-family: 'Playfair Display', serif;
}

.bg-mauve {
	background-color: #9F727E;
}

.bg-brun {
	/*background-color: #2F1B0B;*/
	/*background-color: #3c2213;*/
	background-color: #3b2415;
}

.text-mauve {
	color: #9F727E;
}

.bg-gold {
	background-color: #C9A66B;
}

.bg-gold:hover {
	background-color: #E08C7C;
}

.bg-terra {
	background-color: #E08C7C;
}

.text-gold {
	color: #9F727E;
}

.bg-soft-white {
	background-color: #FAF7F2;
}

.hero-section {
	background: linear-gradient(rgba(47, 27, 11, 0.8), rgba(47, 27, 11, 0.6)), url('/Assets/photo-hero.jpg');
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
}

.benefit-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px rgba(110, 74, 142, 0.15);
}

.testimonial-card {
	background: linear-gradient(to bottom right, #FAF7F2, #F0E6FF);
}

.general-card {
	background: linear-gradient(to bottom right, #FAF7F2, #F0E6FF);
}

.element-icon {
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	margin: 0 auto 20px;
}

.rounded-lg {
	border-radius: 12px;
}

.rounded-full {
	border-radius: 9999px;
}

.transition {
	transition: all 0.3s ease;
}

.section-padding {
	padding: 80px 0;
}

.section-mini-padding {
	padding: 45px 0;
}

.faq-item {
	border-bottom: 1px solid rgba(110, 74, 142, 0.1);
}

.faq-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}

.faq-content.active {
	max-height: 500px;
}

body {
	font-family: 'Helvetica Neue', sans-serif;
	background-color: #f9f9f9;
	padding: 2rem;
	color: #333;
}

.faq-container {
	max-width: 800px;
	margin: 0 auto;
}

.faq-item {
	background: #fff;
	border-radius: 8px;
	margin-bottom: 1rem;
	border: 1px solid #ddd;
	overflow: hidden;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.faq-question {
	cursor: pointer;
	padding: 1rem 1.5rem;
	font-weight: bold;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 1.1rem;
}

.faq-answer {
	padding: 0 1.5rem 1rem 1.5rem;
	display: none;
	font-size: 1rem;
	line-height: 1.6;
}

.faq-toggle {
	font-size: 1.5rem;
	line-height: 1;
	transition: transform 0.3s;
}

.faq-item.open .faq-answer {
	display: block;
}

.faq-item.open .faq-toggle {
	transform: rotate(45deg);
}

.ul-padding-left-2 {
	list-style-type: disc;
	padding-left: 2rem;
}

