.help-container {
    padding: 20px;
    background-color: #f8f9fa;
    min-height: 100%;
}

.help-container .page-header {
    margin-top: 0;
    font-weight: 600;
    color: #333;
    border-bottom: 2px solid #ddd;
    padding-bottom: 10px;
}

.help-sections {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.help-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.help-card:hover {
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.1);
}

.help-card h3 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #007bff;
    font-size: 1.4rem;
    font-weight: 600;
}

.help-content p {
    line-height: 1.6;
    color: #555;
    margin-bottom: 12px;
}

.help-content strong {
    color: #333;
    font-weight: 600;
}

.help-content ul {
    padding-left: 20px;
    margin-top: 10px;
}

.help-content li {
    margin-bottom: 8px;
    color: #555;
    line-height: 1.5;
}