/* =========================================
   HELP CENTER PAGE (Independent)
   ========================================= */

.help-center-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
    font-family: 'Delight', sans-serif;
}

/* Hero Section */
.help-center-hero {
    text-align: center;
    margin-bottom: 60px;
}

.help-center-hero h1 {
    font-size: 42px;
    font-weight: 800;
    color: #111;
    margin-bottom: 15px;
}

.help-center-hero p {
    font-size: 18px;
    color: #666;
}

/* Category Sections */
.help-center-category {
    margin-bottom: 50px;
}

.help-center-cat-title {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    padding-left: 15px;
    border-left: 4px solid #7d8dff;
}

/* FAQ List */
.help-center-faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Individual FAQ Item */
.help-faq-item {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.help-faq-item.active {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-color: #7d8dff;
}

/* Clickable Header */
.help-faq-header {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.help-faq-question {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    color: #111827;
    padding-right: 15px;
}

/* Plus/Minus Icon */
/* The Icon (+ / -) */
.help-faq-icon {
    width: 36px;
    height: 36px;
    position: relative;
    flex-shrink: 0;
}

.help-faq-icon::before,
.help-faq-icon::after {
    content: '';
    position: absolute;
    background-color: #7d8dff;
    border-radius: 2px;
    transition: transform 0.3s ease;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Horizontal Line */
.help-faq-icon::before {
    width: 26px;
    height: 1px;
}

/* Vertical Line */
.help-faq-icon::after {
    width: 1px;
    height: 26px;
}

/* Rotate to minus when active */
.help-faq-item.active .help-faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.help-faq-item.active .help-faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

/* Answer Body - THE KEY PART */
.help-faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: #fff;
}

.help-faq-answer {
    padding: 0 25px 25px;
    color: #4B5563;
    font-size: 16px;
    line-height: 1.7;
    font-weight: 300;
    margin: 0;
}

/* Footer */
.help-center-footer {
    text-align: center;
    background: #f9fafb;
    padding: 40px;
    border-radius: 16px;
    margin-top: 40px;
}

.help-center-footer p {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.help-center-btn {
    display: inline-block;
    background: #25D366;
    color: white !important;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.help-center-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* Mobile */
@media (max-width: 768px) {
    .help-center-hero h1 {
        font-size: 32px;
    }
    
    .help-center-wrapper {
        padding: 40px 15px;
    }
    
    .help-faq-header {
        padding: 15px 20px;
    }
    
    .help-faq-question {
        font-size: 16px;
    }
    
    .help-faq-answer {
        padding: 0 20px 20px;
        font-size: 15px;
    }
}