.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;
		transform-origin: center center;
	}
}
.ctn-info {
	background-color: #fff;
	padding: 1rem;
}
.faq-accordion details summary {
    padding: 12px 16px;
    background-color: #f3f3f3;
    font-size: 18px;
    color: #17181A;
    padding-right: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
body .container {
    max-width: 1400px;
}
.faq-content>div {
    margin-top: 32px;
}
.faq-content h2.title {
    margin-bottom: 24px;
}
.ctn-info a {
    text-decoration: underline;
}

@media (max-width: 1023px) {
	body h1.title {
		font-size: 24px;
		line-height: 30px;
	}
}
@media (max-width: 767px)  {
	.faq-page {
		padding: 32px 0 0;
	}
	body h2.title {
		font-size: 18px;
		line-height: 24px;
	}
	.faq-accordion details summary {
		font-size: 16px;
	}
	.ctn-info * {
		font-size: 15px;
	}
	.faq-content h2.title {
		margin-bottom: 20px;
	}
}