@charset "utf-8";
/* CSS Document */
/* Desktop */
.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-header p {
    max-width: 700px;
    margin: 15px auto 0;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #d8d8d8;
	transform: translateY(0);
    transition: background-color .2s ease, transform .2s ease;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 22px 10px;
    position: relative;
}

.faq-question::after {
    content: "⌄";
    position: absolute;
    right: 10px;
    font-size: 1.4rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0 10px;
    line-height: 1.7;
    transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.35s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
    padding: 0 10px 20px;
}

.faq-item {
    border-bottom: 1px solid #d8d8d8;
    transition: background-color 0.2s ease;
}

.faq-item:hover {
    background-color: rgba(255,255,255,.03);
	transform: translateY(-2px);
}

.faq-content-section {
    max-width: 900px;
    margin: 50px auto;
    text-align: center;
}

.faq-content-section p {
    max-width: 800px;
    margin: 15px auto;
}