/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Dec 15 2025 | 03:45:39 */
/* Section Title */
.accordion-section .section-title {
	font-family: 'Lustria', serif !important;
	font-size: 42px !important;
	line-height: 1.2 !important;
	color: #ffffff !important;
	text-align: center !important;
	margin-bottom: 60px !important;
	font-weight: 400 !important;
	display: block !important;
}

.accordion-section {
	background-color: #073b47;
	padding: 100px 20px 100px;
}


.accordion-section-title {
	font-family: 'Lustria', serif;
	font-size: 42px;
	line-height: 1;
	color: white;
	text-align: center;
	margin-bottom: 60px;
	max-width: 667px;
	margin-left: auto;
	margin-right: auto;
}

.accordion-container {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.accordion-item {
	background: white;
	border-radius: 16px;
	border: 1px solid rgba(226, 231, 233, 0.5);
	box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
	overflow: hidden;
	transition: all 0.3s ease;
}

.accordion-header {
	display: flex;
	align-items: center;
	padding: 40px;
	cursor: pointer;
	position: relative;
}

.accordion-icon {
	width: 64px;
	height: 64px;
	background: rgba(159, 143, 133, 0.1);
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.accordion-icon svg {
	width: 32px;
	height: 32px;
}

.accordion-title-wrapper {
	flex: 1;
	margin-left: 25px;
}

.accordion-title {
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	font-size: 18px;
	line-height: 32px;
	color: #2b363b;
	margin-bottom: 8px;
}

.accordion-header--more-text .accordion-price {
	color: rgba(43, 54, 59, 0.8);
	font-size: 16px;
}

.accordion-price {
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 18px;
	line-height: 28px;
	color: #9f8f85;
}

.accordion-price span {
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
}

.accordion-toggle {
	width: 30px;
	height: 30px;
	background: #073b47;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: transform 0.3s ease;
}

.accordion-item.active .accordion-toggle {
	transform: rotate(45deg);
}

.accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease;
}

.accordion-content-inner {
	padding: 0 40px 40px 130px;
}

.accordion-description {
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5;
	color: rgba(43, 54, 59, 0.8);
	margin-bottom: 20px;
}

.accordion-list {
	list-style: none;
	margin: 20px 0;
}

.accordion-list-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 12px;
	position: relative;
	padding-left: 36px;
}

.list-item-icon {
	position: absolute;
	left: 0;
	top: 2px;
	width: 24px;
	height: 24px;
	background: rgba(239, 175, 143, 0.2);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.list-item-icon svg {
	width: 12px;
	height: 12px;
}

.list-item-text {
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	color: rgba(43, 54, 59, 0.9);
}

.accordion-footer-text {
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5;
	color: rgba(43, 54, 59, 0.8);
	margin-top: 20px;
}

.contact-button {
	display: block;
	width: 240px;
	height: 60px;
	background: white;
	border: 1px solid #ffffff;
	border-radius: 10px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 14px;
	line-height: 14px;
	color: #073b47;
	margin: 60px auto 0;
	cursor: pointer;
	transition: all 0.3s ease;
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
}

.contact-button:hover {
	background: #073b47;
	color: white;
}

@media (max-width: 768px) {
	.accordion-section-title {
		font-size: 32px;
		margin-bottom: 40px;
	}

	.accordion-header {
		padding: 20px;
	}
	
	.accordion-header--more-text {
		flex-direction: column;
		justify-content: center;
		align-items: normal;
	}
	
	.accordion-header--more-text .accordion-title-wrapper {
		margin-left: 0;
	}

	.accordion-icon {
		width: 48px;
		height: 48px;
	}

	.accordion-icon svg {
		width: 24px;
		height: 24px;
	}

	.accordion-title {
		font-size: 16px;
		line-height: 28px;
	}

	.accordion-price {
		font-size: 16px;
		line-height: 24px;
	}
	
.accordion-header--more-text .accordion-price {
	color: rgba(43, 54, 59, 0.8);
	font-size: 14px;
}

	.accordion-content-inner {
		padding: 0 20px 20px 20px;
	}

	.accordion-title-wrapper {
		margin-left: 15px;
	}
}

