#faq-section {
    width: 60%;
    margin: 80px auto;
}

.faq-title {
    text-align: center;
    color: white;
    font-size: 38px;
    margin-bottom: 40px;
}

.faq-item {
    background: #111;
    margin-bottom: 18px;
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s ease;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 22px 26px;
    background: #161616;
    color: #fff;
    font-size: 20px;
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question i {
    color: #66aaff;
    transition: 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #121212;
    padding: 0 26px;
    color: #ccc;
    font-size: 16px;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 16px 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #121212;
    color: #ccc;
    font-size: 16px;

    padding: 0 26px;
    opacity: 0;
    transition: 
        max-height 0.35s ease,
        opacity 0.25s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-contact {
    width: 60%;
    margin: 40px auto 0 auto;
    padding: 18px 28px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 30px;
    text-align: center;
    background: rgba(20,20,20,0.5);
    backdrop-filter: blur(6px);
    transition: 0.3s ease;
}

.faq-contact p {
    color: white;
    font-size: 17px;
}

.faq-contact a {
    color: #4da3ff;
    text-decoration: none;
    font-weight: 500;
}

.faq-contact:hover {
    border-color: rgba(255,255,255,0.25);
    transform: scale(1.02);
}

.faq-contact a:hover {
    color: #77baff;
}