:root {
    --accent: #f97316;
    --accent-hover: #ea580c;
    --bg-main: #f8fafc;
    --text-dark: #1e293b;
    --text-grey: #64748b;
    --card-bg: #ffffff;
    --border-color: #e2e8f0;
    --header-bg: #2c3e50;
}

* { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0; 
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

input, textarea {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: var(--bg-main);
    color: var(--text-dark);
    padding: 0;
    line-height: 1.6;
}

.help-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Header */
.help-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 80px 20px;
    background: var(--header-bg);
    color: white;
    border-radius: 0;
    box-shadow: none;
    border: none;
}
.logo-area {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}
.logo-icon-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}
.help-header h1 {
    font-size: 2.5rem;
    color: white;
    margin: 0;
    letter-spacing: -0.02em;
    font-weight: 800;
}
.help-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.15rem;
    max-width: 500px;
    margin: 0 auto;
}

/* FAQ List */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item:hover {
    border-color: #cbd5e1;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}
.faq-item.active {
    border-color: var(--accent);
    box-shadow: 0 10px 25px -5px rgba(249, 115, 22, 0.15);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    line-height: 1.4;
}
.faq-question span:first-child {
    padding-right: 20px;
}
.faq-question .icon-state {
    color: #94a3b8;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s;
    background: #f1f5f9;
    border-radius: 50%;
    padding: 4px;
    font-size: 24px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item.active .icon-state {
    transform: rotate(180deg);
    color: white;
    background: var(--accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff;
}

.faq-answer-content {
    padding: 0 24px 24px;
    color: var(--text-grey);
    font-size: 1rem;
    line-height: 1.7;
}
.faq-answer p { margin-bottom: 12px; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer ul, .faq-answer ol {
    margin-left: 20px;
    margin-bottom: 12px;
    padding-left: 10px;
}
.faq-answer li { 
    margin-bottom: 8px; 
    padding-left: 5px;
}
.faq-answer code {
    background: #f1f5f9;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
    color: var(--accent);
    font-size: 0.9em;
}

/* Footer */
.footer-actions {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}
.footer-actions p {
    margin-bottom: 20px;
    color: var(--text-grey);
    font-size: 1.1rem;
}
.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: white;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.2s;
    box-shadow: 0 4px 6px -1px rgba(249, 115, 22, 0.3);
}
.contact-btn:hover { 
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(249, 115, 22, 0.4);
}
