:root {
    --primary: #30f4e0;
    --primary-dark: #d8a91b;
    --accent: #e8b923;
    --black: #1a1a1a;
    --light: #f8f8f8;
    --gray: #888;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* ================= FAQ CONTENT STYLES ================= */
.faq-container {
    max-width: 1000px;
    margin: 120px auto 80px;
    padding: 0 30px;
    background: linear-gradient(to bottom, rgba(18, 18, 18, 0.95), rgba(26, 26, 26, 0.9));
    border-radius: 10px;
    box-shadow: var(--shadow);
}

/* FAQ Header */
.faq-header {
    text-align: center;
    margin-bottom: 70px;
    padding: 20px 0;
}

.faq-title {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 700;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    position: relative;
}

.faq-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), transparent);
    margin: 10px auto;
    border-radius: 2px;
}

.faq-subtitle {
    color: var(--light);
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    opacity: 0.9;
}

/* FAQ Section */
.faq-section {
    margin-bottom: 60px;
}

.section-title {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 30px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(232, 185, 35, 0.3);
    text-transform: uppercase;
    font-weight: 600;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: var(--primary-dark);
    transition: width 0.3s ease;
}

.faq-section:hover .section-title::after {
    width: 100px;
}

/* FAQ Item */
.faq-item {
    background: rgba(40, 40, 40, 0.7);
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
    border: 1px solid rgba(232, 185, 35, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.faq-question {
    padding: 22px 25px;
    cursor: pointer;
    font-size: 1.25rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to right, rgba(30, 30, 30, 0.6), rgba(40, 40, 40, 0.7));
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(to right, rgba(40, 40, 40, 0.7), rgba(50, 50, 50, 0.8));
}

.faq-question::after {
    content: '+';
    font-size: 1.6rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    content: '-';
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--light);
}

.faq-item.active .faq-answer {
    padding: 25px;
    max-height: 600px;
}

/* ================= COMMENTS SECTION ================= */
.comments-section {
    margin-top: 80px;
    padding: 40px;
    background: rgba(30, 30, 30, 0.7);
    border-radius: 10px;
    border: 1px solid rgba(232, 185, 35, 0.2);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.comments-section:hover {
    transform: translateY(-5px);
}

.comment-form textarea {
    width: 100%;
    padding: 18px;
    margin-bottom: 20px;
    background: rgba(40, 40, 40, 0.9);
    border: 1px solid var(--gray);
    color: var(--light);
    border-radius: 6px;
    min-height: 140px;
    resize: vertical;
    font-size: 1.1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.comment-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 8px rgba(232, 185, 35, 0.4);
}

.comment-form button {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--black);
    border: none;
    padding: 14px 30px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.comment-form button:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(232, 185, 35, 0.4);
}

.comment-list {
    margin-top: 40px;
}

.comment {
    background: rgba(40, 40, 40, 0.8);
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--primary);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.comment:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.comment-author {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.comment-date {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 12px;
    opacity: 0.8;
}

.comment p {
    line-height: 1.8;
    font-size: 1rem;
}

/* Plz Prompt Styling */
.plz {
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    font-size: 1.1rem;
    color: var(--light);
    margin-top: 20px;
    transition: all 0.3s ease;
}

.plz a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.plz a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.plz:hover {
    background: rgba(50, 50, 50, 0.8);
    box-shadow: var(--shadow);
}

/* ================= RESPONSIVE STYLES ================= */
@media (max-width: 768px) {
    .faq-container {
        margin: 100px auto 60px;
        padding: 0 20px;
    }

    .faq-title {
        font-size: 2.2rem;
    }

    .faq-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .faq-question {
        font-size: 1.15rem;
        padding: 18px;
    }

    .faq-answer {
        font-size: 0.95rem;
    }

    .comments-section {
        padding: 30px;
    }

    .comment-form textarea {
        min-height: 120px;
        font-size: 1rem;
    }

    .comment-form button {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .plz {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .faq-container {
        margin: 80px auto 40px;
        padding: 0 15px;
    }

    .faq-title {
        font-size: 1.9rem;
    }

    .faq-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .faq-question {
        font-size: 1.05rem;
        padding: 15px;
    }

    .faq-answer {
        font-size: 0.9rem;
    }

    .comments-section {
        padding: 25px;
    }

    .comment {
        padding: 20px;
    }

    .comment-author {
        font-size: 1rem;
    }

    .comment-date {
        font-size: 0.85rem;
    }

    .plz {
        font-size: 0.95rem;
        padding: 15px;
    }
}