/* =============================================
 * SmallVerse - Help Center Styles
 * Version: 1.0.0
 * Last Updated: 04/06/2025
 * ============================================= */

 .help-container {
    display: flex;
    margin-top: 40px;
    gap: 15px;
    padding: 0 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.help-sidebar {
    width: 270px;
    background-color: #ffffff;
    border-radius: 5px;
    border: 1px solid #cfcfcf;
    overflow: hidden;
}

.help-header {
    background-color: #1e304d;
    height: 40px;
    border-radius: 5px 5px 0 0;
    display: flex;
    align-items: center;
    padding: 0 15px;
    color: white;
    font-weight: bold;
    font-size: 16px;
}

.help-tabs {
    display: flex;
    flex-direction: column;
    padding: 10px 0;
}

.help-tab {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    cursor: pointer;
    transition: all 0.2s;
    gap: 10px;
    border-left: 3px solid transparent;
}

.help-tab i {
    width: 20px;
    text-align: center;
    color: #1e304d;
}

.help-tab span {
    font-size: 14px;
    color: #1e304d;
}

.help-tab:hover {
    background-color: #f5f5f5;
}

.help-tab.active {
    background-color: #f0f4fa;
    border-left: 3px solid #1e304d;
    font-weight: bold;
}

.help-content {
    flex: 1;
    background-color: #ffffff;
    border-radius: 5px;
    border: 1px solid #cfcfcf;
    overflow: hidden;
}

.help-section {
    display: none;
    padding: 20px;
}

.help-section.active {
    display: block;
}

.content-header {
    border-bottom: 1px solid #d3d3d3;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.content-header h2 {
    color: #1e304d;
    font-size: 22px;
    margin-bottom: 5px;
}

.last-updated {
    font-size: 12px;
    color: #7c7c7c;
}

.content-body h3 {
    color: #1e304d;
    font-size: 18px;
    margin: 20px 0 10px 0;
}

.content-body p {
    margin-bottom: 15px;
    line-height: 1.5;
    color: #333;
}

.content-body ul {
    margin-bottom: 15px;
    padding-left: 20px;
}

.content-body li {
    margin-bottom: 8px;
    color: #333;
}

.faq-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h3 {
    color: #1e304d;
    font-size: 16px;
    margin-bottom: 10px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.contact-method i {
    color: #1e304d;
    width: 20px;
    text-align: center;
}

.contact-form {
    margin-top: 30px;
    max-width: 600px;
}

.contact-form h3 {
    color: #1e304d;
    font-size: 18px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #1e304d;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #cfcfcf;
    border-radius: 4px;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    background-color: #1e304d;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.2s;
}

.submit-btn:hover {
    background-color: #2c3f63;
}

@media (max-width: 768px) {
    .help-container {
        flex-direction: column;
    }
    
    .help-sidebar {
        width: 100%;
    }
    
    .help-tabs {
        flex-direction: row;
        overflow-x: auto;
        padding: 10px;
    }
    
    .help-tab {
        border-left: none;
        border-bottom: 3px solid transparent;
        white-space: nowrap;
    }
    
    .help-tab.active {
        border-left: none;
        border-bottom: 3px solid #1e304d;
    }
}