.faq-section {
	padding: 20px 5vw;
	background: rgba(248, 244, 230, 1);
}

.faq-section h3 {
	font-family: Playfair Display;
	font-size: 2.5rem;
	font-weight: normal;
	text-align: center;
	letter-spacing: 0.03em;
	margin: 0;
	text-transform: uppercase;
}
.faq-section h3 span, .faq-end p {
  display: block;
  font-size: 1.1rem;
  font-family: Inter;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.collapsible-container {
	display: flex;
	flex-direction: column;
    align-items: center;
	width: 100%;
	padding: 24px 10%;
	margin: 0 auto;
}

.collapsible-container h3 {
	font-family: Playfair Display;
    margin: 0 auto 40px;
    position: relative;
    left: 0;
}

.collapsible-header {
	position: relative;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	width: 100%;
	background-color: rgba(248, 244, 230, 1);
	color: rgba(51, 48, 47, 1);
	cursor: pointer;
	padding: 15px;
	border: 2px solid rgba(168, 169, 173, 1);
	font-family: Cormorant SC;
	text-align: left;
	font-size: 1.2rem;
	letter-spacing: 0.4px;
	font-weight: 900;
	border-radius: 5px;
	box-shadow: 0 3px 14px rgba(0, 0, 0, 0.2);
	transition: background-color 0.3s ease;
	z-index: 2;
}

.collapsible-header::before {
  content: '';
  background: url('../../../images/dot.svg') center/cover no-repeat;
  width: 0.75rem;
  height: 0.75rem;
  color: #A8A9AD;
  margin-right: 12px;
}

.collapsible-content {
	position: relative;
	width: 96%;
	margin: 0 auto;
	background-color: rgba(251, 248, 242, 1);
	font-family: Inter;
	font-size: 1rem;
	color: #555;
	border: 2px solid rgba(168, 169, 173, 1);
	border-radius: 0 0 8px 8px;
	height: 0;
	/*overflow: hidden;*/
	opacity: 0;
	padding: 0 15px;
	will-change: height, opacity, padding;
	transition: height 0.5s ease-in-out, opacity 0.5s ease-in-out, padding 0.5s ease-in-out;
	z-index: 1;
}

.collapsible-arrow {
    display: flex;
	align-items: center;
	margin-left: auto;
	padding: 0 0.5rem 0 0.5rem;
	fill: none;
    stroke: rgba(89, 89, 89, 1);
    stroke-linecap: square;
    stroke-width: 8px;
    height: 1rem;
	width: 2rem;
    vertical-align: middle;
	transform: rotate(90deg);
	transition: transform 0.5s ease-in-out;
}

.collapsible {
	width: 100%;
	padding: 12px 0;
}

.collapsible.active .collapsible-header .collapsible-arrow {
	transform: rotate(270deg);
}

.collapsible-header:hover .collapsible-arrow {
	transform: rotate(180deg);
}

.collapsible-content .corner {
  position: absolute;
  width: 3rem;
  height: 3rem;
  background-image: url('/5xcwB544nBnyQQ4yQHGqWnfFPa1d8jir/images/corner.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 2;
}

.bottom-left {
  bottom: -0.6rem;
  left: -0.6rem;
  transform: rotate(270deg);
}

.bottom-right {
  bottom: -0.6rem;
  right: -0.6rem;
  transform: rotate(180deg);
}

#see-more-faq, .faq-contact-button {
    display: block;
    margin: 1rem auto 0;
    padding: 10px 20px;
    border: 3px solid rgba(51, 48, 47, 1);
    background-color: transparent;
    color: rgba(51, 48, 47, 1);
    cursor: pointer;
    font-family: Inter;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
	overflow: hidden;
    transition: background-color 0.3s ease;
}

#see-more-faq:hover, .faq-contact-button:hover {
    background-color: rgba(51, 48, 47, 1);
	color: rgba(229, 228, 226, 1);
}

/* ============== MEDIA QUERIES ============== */
/* Mobile Approach */
@media (hover: none) and (pointer: coarse) {
.faq-section {
	padding: 20px 5vw;
}

.void-block {
	display: block;
}

.faq-section h3 {
	font-size: clamp(1.8rem, 10vw, 3rem);
}

.faq-section h3 span, 
.faq-end p {
	font-size: clamp(1.1rem, 5vw, 1.6rem);
}

.collapsible-container {
	padding: 24px 0 0;
}
}
/* Tablet Approach */
@media (min-width: 641px) and (hover: none) and (pointer: coarse) {

}
/* Desktop Approach */
@media (min-width: 1024px) and (pointer: fine) {
.void-block {
	display: none;
}
	
}