.faq-page {
    padding: 40px 0 0;
}
body h1.title  {
    font-size: 28px;
    line-height: 34px;
    color: #17181A;
    font-weight: 600;
}
body h2.title {
	font-size: 20px;
    line-height: 26px;
	font-weight: 700;
	color: #17181A;
}
.action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}
.action-buttons .btn {
    margin: 0;
}
.btn.btn-light {
    background-color: #F2F7EE;
    border-color: #F2F7EE;
    color: #2AA466;
}
.btn.btn-light:hover {
    background-color: #2AA466;
    border-color: #2AA466;
    color: #fff;
}
.faq-accordion details {
    width: 100%;
    margin-bottom: 10px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #f3f3f3;
}
.faq-accordion details:last-child, .ctn-info p:last-child {
    margin-bottom: 0;
}
/**/
details {
	cursor: pointer;
	margin-inline: auto;
	width: 75%;
	
	&::details-content {
		height: 0;
  	interpolate-size: allow-keywords;
		opacity: 0;
		overflow: hidden;
		transition: height 0.5s ease-in-out,
					content-visibility 0.5s ease-in-out,
					opacity 0.5s ease-in-out,
					scale 0.5s ease-in-out;
		transition-behavior: allow-discrete;
	}
	&[open] > summary {
		color: #ffffff;
	}
	&[open] > summary:after {
		transform: rotate(45deg);
	}
	&[open]::details-content {
		height: auto;
		opacity: 1;
	}
}
summary {
	background-color: black;
	border-top: 1px solid white;
	color: white;
	list-style: none;
	padding: 1rem;
	position: relative;
	transition: color 0.5s ease-in-out;
	
	&:after {
		border-radius: 50%;
		content: '+';
		color: #636363;
		font-size: 1.75rem;
		height: 1.5rem;
		line-height: 1.5rem;
		position: absolute;
		right: 10px;
		text-align: center;
		transition: background-color 0.5s ease-in-out, transform 0.5s ease-in-out;
		width: 1.5rem;
	}
}
.ctn-info {
	background-color: #fff;
	padding: 1rem;
}
.faq-accordion details summary {
    padding: 12px 16px;
    background-color: #f3f3f3;
    font-size: 18px;
    color: #000;
}
body .container {
    max-width: 1400px;
}
.faq-content>div {
    margin-top: 32px;
}
.faq-content h2.title {
    margin-bottom: 24px;
}
.ctn-info a {
    text-decoration: underline;
}