.dbm-accordion-wrapper {
	border-bottom: 1px solid #eaeaea;
	margin-bottom: 0;
	background: transparent;
}


.dbm-accordion-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	padding: 30px 0;
	transition: opacity 0.3s ease;
}

.dbm-accordion-header:hover {
	opacity: 0.8;
}

.dbm-accordion-title {
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 14px;
	line-height: 14px;
	letter-spacing: 2px;
	color: #1b2a4a;
	text-transform: uppercase;
	margin: 0;
	padding: 0;
}

.dbm-accordion-icon {
	color: #1a2a40;
	font-size: 20px;
	font-weight: 400;
	line-height: 1;
}

.dbm-accordion-icon span {
	display: inline-block;
}

.dbm-accordion-content.dbm-wysiwyg-content p{
	font-family: 'Montserrat', sans-serif;
}

.dbm-icon-plus {
	font-size: 30px!important;
}

.dbm-accordion-content {
	padding-bottom: 30px;
}

.dbm-properties-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 0 40px;
}

.dbm-property-item {
	padding: 24px 0;
	border-bottom: 1px solid #eaeaea;
}

/* Remove bottom border from the last row of items if they align perfectly. 
   Using a simpler approach since grid rows might vary. */
.dbm-property-name {
	font-weight: 700;
	color: #1b2a4a;
	margin: 0 0 8px 0;
	padding: 0;
    
    font-family: 'Montserrat', sans-serif !important;
    font-size: 14px !important;


}

.dbm-property-value {
	margin: 0;
	line-height: 1.5;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 13px;
    font-weight: 400;
    color: #555;
}

/* Responsive */
@media (max-width: 992px) {
	.dbm-properties-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 576px) {
	.dbm-properties-grid {
		grid-template-columns: 1fr;
		gap: 0;
	}
}

/* WYSIWYG content area (Other Information) */
.dbm-wysiwyg-content {
	padding-bottom: 30px;
	font-size: 15px;
	color: #1a2a40;
	line-height: 1.7;
}

.dbm-wysiwyg-content p {
	margin: 0 0 12px 0;
}

.dbm-wysiwyg-content ul,
.dbm-wysiwyg-content ol {
	padding-left: 20px;
	margin: 0 0 12px 0;
}

.dbm-wysiwyg-content li {
	margin-bottom: 6px;
}

.dbm-wysiwyg-content a {
	color: #2980b9;
	text-decoration: none;
}

.dbm-wysiwyg-content a:hover {
	text-decoration: underline;
}